Skip to content

Commit 3de498c

Browse files
committed
Merge branch 'master' of github.com:mandliya/algorithms_and_ds_playground
2 parents 6eb2ea1 + 70181af commit 3de498c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ Include contains single header implementation of data structures and some algori
7979
| Problem 6: Implement a method to perform basic string compression. Example string **aabcccccaaa** should be compressed to **a2b1c5a3**, however if compressed string is bigger than original string, return original string| [1-6-string-compression.cpp](cracking_the_coding_interview_problems/1-6-string-compression.cpp)|
8080
| Problem 7: Rotate the matrix clockwise( & anticlockwise) by 90 degrees| [1-7-matrix-rotation.cpp](cracking_the_coding_interview_problems/1-7-matrix-rotation.cpp)|
8181

82-
#Dynamic Programming Problems
82+
###Dynamic Programming Problems
8383
| Problem | Solution |
8484
| :------------ | :----------: |
85-
| N<sup>th</th> Fibonacci term using different memoization techniques | [fibonacci.cpp](dynamic_programming_problems/fibonacci.cpp)|
85+
| N<sup>th</sup> Fibonacci term using different memoization techniques | [fibonacci.cpp](dynamic_programming_problems/fibonacci.cpp)|
8686
| Longest Common Subsequence Problem | [lcs.cpp](dynamic_programming_problems/lcs.cpp) |
8787

8888
### Tree Problems

0 commit comments

Comments
 (0)