Skip to content

Commit 852c51b

Browse files
committed
update docs
1 parent 941a2b1 commit 852c51b

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ cargo test --bin huffman
139139
7. [Coin Change Problem](problem-solving/src/dp/coin_change.rs) `cargo run --bin coin_change`
140140
8. [Palindrome Partition](problem-solving/src/dp/palindrome_partition.rs) `cargo run --bin palindrome_partition`
141141
9. [Find Nth distinct number](problem-solving/src/dp/nth-distinct-number.rs) `cargo run --bin nth-distinct-number`
142+
10. [Find the length of the longest substring without duplicates](problem-solving/src/dp/longest-substring.rs) `cargo run --bin longest-substring`
142143

143144
## [5. Advanced Concepts](advanced/README.md)
144145

problem-solving/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@
2424
7. [Coin Change Problem](src/dp/coin_change.rs) `cargo run --bin coin_change`
2525
8. [Palindrome Partition](src/dp/palindrome_partition.rs) `cargo run --bin palindrome_partition`
2626
9. [Find Nth distinct number](src/dp/nth-distinct-number.rs) `cargo run --bin nth-distinct-number`
27+
10. [Find the length of the longest substring without duplicates](src/dp/longest-substring.rs) `cargo run --bin longest-substring`

0 commit comments

Comments
 (0)