File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ Welcome to **Data Structures and Algorithms in Go**! 🎉 This project is design
103
103
* [ Permutations] ( ./backtracking/permutations_test.go )
104
104
* [ Generate Parentheses] ( ./backtracking/generate_parentheses_test.go )
105
105
* [ Phone Letter Combinations] ( ./backtracking/phone_letter_combinations_test.go )
106
- * [ Maze] ( ./backtracking/maze_test.go ) ,
106
+ * [ Maze] ( ./backtracking/maze_test.go )
107
107
* [ Sudoku] ( ./backtracking/sudoku_test.go )
108
108
* [ N Queens] ( ./backtracking/n_queens_test.go )
109
109
* [ Graphs] ( ./graph/README.md )
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ func TestLongestSubstrings(t *testing.T) {
20
20
{"a" , "" }, // No occurrence of sequence of two characters
21
21
{"ab" , "ab" },
22
22
{"abcc" , "bcc" },
23
+ {"aabbc" , "aabb" },
23
24
{"ada" , "ada" },
24
25
{"dafff" , "afff" },
25
26
{"assdeeeddfffha" , "deeedd" },
You can’t perform that action at this time.
0 commit comments