Skip to content

Commit

Permalink
docs: Add README index section
Browse files Browse the repository at this point in the history
  • Loading branch information
oboukli committed Mar 22, 2024
1 parent d9af634 commit f0ab7ab
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,32 @@ and ideas leveraged by this project:
- EditorConfig
- Markdown

## Index

| Problem | Standard | Source |
| --- | --- | --- |
| Bubble sort | C++20 | `src/sorting/bubble_sort.cpp` |
| Contains duplicate | C++20 | `src/contains_duplicate.cpp` |
| Factorial | C++23 | `src/factorial.cpp` |
| Fibonacci | C++20 | `src/fibonacci.cpp` |
| Fibonacci sequence | C++20 | `src/fibonacci_sequence.cpp` |
| First missing positive | C++20 | `src/first_missing_positive.cpp` |
| Fizz buzz | C++17 | `src/fizzbuzz.cpp` |
| Greatest common divisor | C++17 | `src/gcd.cpp` |
| Insertion sort | C++20 | `src/sorting/insertion_sort.cpp` |
| Least recently used (LRU) cache | C++20 | `src/lru_cache.cpp` |
| Move zeroes | C++20 | `src/move_zeroes.cpp` |
| Multiples of 3 or 5 | C++17 | `src/project_euler/p0001_multiples_of_3_or_5.cpp` |
| Number of Ships in a Rectangle | C++20 | `src/sonar.cpp` |
| Palindrome | C++17 | `src/palindrome.cpp` |
| Palindrome (in C) | C90 | `src/palindrome.c` |
| Palindromic number | C++20 | `src/palindromic_number.cpp` |
| Product except self | C++20 | `src/product_except_self.cpp` |
| Quicksort | C++20 | `src/sorting/quicksort.cpp` |
| Sub array sums | C++20 | `src/sub_array_sums.cpp` |
| Trie | C++20 | `src/trie.cpp` |
| Two sum | C++20 | `src/two_sum.cpp` |

## Disclaimer

The provided attempted solutions are not guaranteed to be correct, safe,
Expand Down

0 comments on commit f0ab7ab

Please sign in to comment.