@@ -25,6 +25,7 @@ The `☢` means that you need to have a LeetCode Premium Subscription.
25
25
26
26
| | Problem | Solution |
27
27
| --- | ------------------------------------------------------------ | ------------------ |
28
+ | 300 | [ Longest Increasing Subsequence] | [ C] ( src/300.c ) |
28
29
| 299 | [ Bulls and Cows] | [ C] ( src/299.c ) |
29
30
| 298 | [ Binary Tree Longest Consecutive Sequence] ☢ | |
30
31
| 297 | [ Serialize and Deserialize Binary Tree] | [ C++] ( src/297.cpp ) |
@@ -270,7 +271,7 @@ The `☢` means that you need to have a LeetCode Premium Subscription.
270
271
| 40 | [ Combination Sum II] | [ C++] ( src/40.cpp ) |
271
272
| 39 | [ Combination Sum] | [ C++] ( src/39.cpp ) |
272
273
| 38 | [ Count and Say] | [ C] ( src/38.c ) |
273
- | 37 | [ Sudoku Solver] | [ C] ( src/37.cpp ) |
274
+ | 37 | [ Sudoku Solver] | [ C++ ] ( src/37.cpp ) |
274
275
| 36 | [ Valid Sudoku] | [ C] ( src/36.c ) |
275
276
| 35 | [ Search Insert Position] | [ C] ( src/35.c ) |
276
277
| 34 | [ Search for a Range] | [ C++] ( src/34.cpp ) |
@@ -312,6 +313,7 @@ The `☢` means that you need to have a LeetCode Premium Subscription.
312
313
[ LeetCode algorithm problems ] : https://leetcode.com/problemset/algorithms/
313
314
314
315
316
+ [ Longest Increasing Subsequence ] : https://leetcode.com/problems/longest-increasing-subsequence/
315
317
[ Bulls and Cows ] : https://leetcode.com/problems/bulls-and-cows/
316
318
[ Binary Tree Longest Consecutive Sequence ] : https://leetcode.com/problems/binary-tree-longest-consecutive-sequence/
317
319
[ Serialize and Deserialize Binary Tree ] : https://leetcode.com/problems/serialize-and-deserialize-binary-tree/
0 commit comments