You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -269,7 +269,7 @@ The repository contains the best versions of my solutions to LeetCode problems
269
269
| 1408 |[String Matching in an Array](https://leetcode.com/problems/string-matching-in-an-array/)|[Python](Python/String%20Matching%20in%20an%20Array.py)| $O(n^{2}*k^{2})$ | $O(1)$ | - |
270
270
| 1414 |[Find the Minimum Number of Fibonacci Numbers Whose Sum Is K](https://leetcode.com/problems/find-the-minimum-number-of-fibonacci-numbers-whose-sum-is-k/)|[Python](Python/Find%20the%20Minimum%20Number%20of%20Fibonacci%20Numbers%20Whose%20Sum%20Is%20K.py)| $O(\log_{2} k)$ | $O(\log_{2} k)$ | - |
271
271
| 1423 |[Maximum Points You Can Obtain from Cards](https://leetcode.com/problems/maximum-points-you-can-obtain-from-cards/)|[Python](Python/Maximum%20Points%20You%20Can%20Obtain%20from%20Cards.py)| $O(n)$ | $O(1)$ | Sliding Window |
272
-
| 1437 |[Check If All 1's Are at Least Length K Places Away](https://leetcode.com/problems/check-if-all-1s-are-at-least-length-k-places-away/)|[Python](Python/Check%20If%20All%201's%20Are%20at%20Least%20Length%20K%20Places%20Away.py)| $O(n)$ | $O(1)$ | - |
272
+
| 1437 |[Check If All 1's Are at Least Length K Places Away](https://leetcode.com/problems/check-if-all-1s-are-at-least-length-k-places-away/)|[Python](Python/Check%20If%20All%201's%20Are%20at%20Least%20Length%20K%20Places%20Away.py), [Java](Java/Check%20If%20All%201's%20Are%20at%20Least%20Length%20K%20Places%20Away.java)| $O(n)$ | $O(1)$ | - |
273
273
| 1448 |[Count Good Nodes in Binary Tree](https://leetcode.com/problems/count-good-nodes-in-binary-tree/)|[Python](Python/Count%20Good%20Nodes%20in%20Binary%20Tree.py)| $O(n)$ | $O(n)$ | DFS |
274
274
| 1457 |[Pseudo-Palindromic Paths in a Binary Tree](https://leetcode.com/problems/pseudo-palindromic-paths-in-a-binary-tree/)|[Python](Python/Pseudo-Palindromic%20Paths%20in%20a%20Binary%20Tree.py), [Java](Java/Pseudo-Palindromic%20Paths%20in%20a%20Binary%20Tree.java)| $O(n)$ | $O(n)$ | DFS |
275
275
| 1466 |[Reorder Routes to Make All Paths Lead to the City Zero](https://leetcode.com/problems/reorder-routes-to-make-all-paths-lead-to-the-city-zero/)|[Python](Python/Reorder%20Routes%20to%20Make%20All%20Paths%20Lead%20to%20the%20City%20Zero.py)| $O(n)$ | $O(n)$ | DFS |
@@ -348,5 +348,5 @@ The repository contains the best versions of my solutions to LeetCode problems
348
348
349
349
## Last update
350
350
351
-
Solution table for problems was generated automatically on 2022-10-12 06:19 +0000
351
+
Solution table for problems was generated automatically on 2022-10-12 06:43 +0000
0 commit comments