coding_circle contains the examples, my approaches and solutions to the little riddles from the YouTube Coding Circle.
For further context, please visit the native Web GmbH Youtube channel.
So far, the following exercises have been covered ⏳(TODO), ✔️(DONE):
Status | Topic | Description | Subjective difficulty |
---|---|---|---|
✔️ | Higher Order Functions | implement the CAR and CDR functions | ⭐️⭐️ |
✔️ | All But One | list the products of all numbers except the ith digit | ⭐️ |
✔️ | Money laundering | find out whether a single-linked list contains a loop | ⭐️ |
✔️ | Warp Speed Sorting | sort a large number of postal codes as quickly as possible | ⭐️⭐️ |
✔️ | Tic-Tac-Toe | determine a tic-tac-toe winner | ⭐️ |
✔️ | Continuous Max | calculate the maximum value of a sliding window over a slice of integers | ⭐️⭐️⭐️ |
✔️ | Remove k-th last element | removing the k-th last element from a single-linked list | ⭐️⭐️ |
✔️ | Autocomplete | implementing an autocomplete feature using a trie | ⭐️⭐️ |
✔️ | Running Median | calculate the running median of a list | ⭐️ |