Experimenting with Lisp dialects while trying to gain a personal knowledge about the language, by reading books, documentations, following courses and just trying to understand how Lisp works under the hood. My little personal compendium of snippets of code and probably even some notes. I hope this repo will get pretty huge in the near future.
In Lisp we Trust.
bin-search
(Binary Search)climbing-stairs
(Staircase Problem)cointoss
(Coin toss)factorial
(Factorial function)fibonacci
(Fibonacci)fizzbuzz
(Fizzbuzz Game)insertion_sort
⎯ (Insertion Sort)lcg
(Linear Congruential Generator from Rosetta Code)lettervaluesum
(Convert alphabet letters to a numerical value each and compute the total sum of a given string.)matrix_multiplication
(Simple matrix multiplication)open_addressing_ht
(Open Addressing Hash Table)orc_battle
(Orc Battle CLI game from "Land of Lisp")palindrome-number
(Palindrome Number)quicksort
(Quicksort)quiz-russian-vocabulary
(Anki-like quiz of russian vocabs)rock-paper-scissors
(Pretty self-explainatory. Multi-player to be implemented in a future update)roman_to_int
(Implementation of a famous LeetCode Challenge that involves roman numbers.)simple_random_sentence
(Super simple code that prints a """random""" sentence in english.)tictactoe
(Tic-Tac-Toe, Neil Munro tutorial)towerhanoi
(Implementation of the Tower of Hanoi Puzzle in Clojure.)webserversample
(Hunchentoot Library Sample.)