Skip to content

Commit b65fcf1

Browse files
[LEET]-0000 sqrt in README.md
1 parent 784338c commit b65fcf1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

leetcode-algorithms/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@
193193
|75|[Sort Colors](https://leetcode.com/problems/sort-colors/)|[Solution](../../master/leetcode-algorithms/src/main/java/com/stevesun/solutions/SortColors.java)|O(n)|O(1)|Medium| Two Pointers
194194
|73|[Set Matrix Zeroes](https://leetcode.com/problems/set-matrix-zeroes/)|[Solution](../../master/leetcode-algorithms/src/main/java/com/stevesun/solutions/SetMatrixZeroes.java)|O(mn)|O(mn)|Medium|
195195
|70|[Climbing Stairs](https://leetcode.com/problems/climbing-stairs/)|[Solution](../../master/leetcode-algorithms/src/main/java/com/stevesun/solutions/ClimbingStairs.java)|O(n)|O(n)|Easy| DP
196+
|69|[Sqrt(x)](https://leetcode.com/problems/sqrtx/)|[Solution](../../master/leetcode-algorithms/src/main/java/com/stevesun/solutions/Sqrt.java)|O(logn)|O(1)|Easy|
196197
|68|[Text Justification](https://leetcode.com/problems/text-justification/)|[Solution](../../master/leetcode-algorithms/src/main/java/com/stevesun/solutions/TextJustification.java)|O(n)|O(1)|Hard|
197198
|67|[Add Binary](https://leetcode.com/problems/add-binary/)|[Solution](../../master/leetcode-algorithms/src/main/java/com/stevesun/solutions/AddBinary.java)|O(n)|O(1)|Easy|
198199
|60|[Permutation Sequence](https://leetcode.com/problems/permutation-sequence/)|[Solution](../../master/leetcode-algorithms/src/main/java/com/stevesun/solutions/PermutationSequence.java)|?|?|Medium|

0 commit comments

Comments
 (0)