Go to file
2023-02-25 12:36:45 +11:00
.gitignore ignore LibreOffice lock files 2023-02-23 19:27:12 +11:00
1_longest_substring_with_k_distinct_characters_test_cases.csv Read test cases from file and test 2023-02-23 19:28:02 +11:00
1_longest_substring_with_k_distinct_characters.cpp fix: do not find substring with length 1 and print test case after updating result 2023-02-25 12:36:45 +11:00
CMakeLists.txt
lib_random.h random number generator to aid in generating random test cases 2023-02-24 14:19:12 +11:00
LICENSE
README.md

20 Coding Patterns by DesignGurus.org

20 DSA Coding Patterns from https://levelup.gitconnected.com/dont-just-leetcode-follow-the-coding-patterns-instead-4beb6a197fdb

Coding Patterns:

  1. Sliding Window
  2. Islands (Matrix Traversal)
  3. Two Pointers
  4. Fast & Slow Pointers
  5. Merge Intervals
  6. Cyclic Sort
  7. In-place Reversal of a LinkedList
  8. Tree Breadth-First Search
  9. Tree Depth First Search
  10. Two Heaps
  11. Subsets
  12. Modified Binary Search
  13. Bitwise XOR
  14. Top K Elements
  15. K-way Merge
  16. Topological Sort
  17. 0/1 Knapsack
  18. Fibonacci Numbers
  19. Palindromic Subsequence
  20. Longest Common Substring