@@ -53,7 +53,7 @@ You can also ask for problem solving ideas and discuss in GitHub issues directly
5353|26|[ Remove Duplicates from Sorted Array] ( https://leetcode.com/problems/remove-duplicates-from-sorted-array/description/ ) |[ Java] ( https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basmath/learn/array_and_string/_26.java )  & Python|![ easy] ( https://github.com/guobinhit/myleetcode/blob/master/images/easy.png ) | Conclusion
5454|27|[ Remove Element] ( https://leetcode.com/problems/implement-strstr/description/ ) |[ Java] ( https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basmath/learn/array_and_string/_27.java )  & Python|![ easy] ( https://github.com/guobinhit/myleetcode/blob/master/images/easy.png ) | Two-Pointer Technique
5555|28|[ Implement strStr()] ( https://leetcode.com/problems/implement-strstr/description/ ) |[ Java] ( https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basmath/learn/array_and_string/_28.java )  & Python|![ easy] ( https://github.com/guobinhit/myleetcode/blob/master/images/easy.png ) | Introduction to String
56- |54|[ Spiral Matrix] ( https://leetcode.com/problems/spiral-matrix/description/ ) |[ Java] ( https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basmath/learn/array_and_string/_54.java )  & Python|![ medium] ( https://github.com/guobinhit/myleetcode/blob/master/images/medium.png ) | Introduction to 2D Array
56+ |54|[ Spiral Matrix] ( https://leetcode.com/problems/spiral-matrix/description/ ) |[ Java] ( https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basmath/learn/array_and_string/_54.java )  & [ Python] ( https://github.com/guobinhit/myleetcode/blob/master/codes/python/leetcodes/src/main/python/com/hit/basmath/learn/array_and_string/_54.py ) |![ medium] ( https://github.com/guobinhit/myleetcode/blob/master/images/medium.png ) | Introduction to 2D Array
5757|66|[ Plus One] ( https://leetcode.com/problems/plus-one/description/ ) |[ Java] ( https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basmath/learn/array_and_string/_66.java )  & [ Python] ( https://github.com/guobinhit/myleetcode/blob/master/codes/python/leetcodes/src/main/python/com/hit/basmath/learn/array_and_string/_66.py ) |![ easy] ( https://github.com/guobinhit/myleetcode/blob/master/images/easy.png ) | Introduction to Array
5858|67|[ Add Binary] ( https://leetcode.com/problems/add-binary/description/ ) |[ Java] ( https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basmath/learn/array_and_string/_67.java )  & Python|![ easy] ( https://github.com/guobinhit/myleetcode/blob/master/images/easy.png ) | Introduction to String
5959|118|[ Pascal's Triangle] ( https://leetcode.com/problems/pascals-triangle/description/ ) |[ Java] ( https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basmath/learn/array_and_string/_118.java )  & Python| ![ easy] ( https://github.com/guobinhit/myleetcode/blob/master/images/easy.png ) | Introduction to 2D Array
@@ -65,7 +65,7 @@ You can also ask for problem solving ideas and discuss in GitHub issues directly
6565|283|[ Move Zeroes] ( https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/description/ ) |[ Java] ( https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basmath/learn/array_and_string/_283.java )  & Python| ![ easy] ( https://github.com/guobinhit/myleetcode/blob/master/images/easy.png ) | Conclusion
6666|344|[ Reverse String] ( https://leetcode.com/problems/reverse-string/description/ ) |[ Java] ( https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basmath/learn/array_and_string/_344.java )  & Python| ![ easy] ( https://github.com/guobinhit/myleetcode/blob/master/images/easy.png ) | Two-Pointer Technique
6767|485|[ Max Consecutive Ones] ( https://leetcode.com/problems/diagonal-traverse/description/ ) |[ Java] ( https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basmath/learn/array_and_string/_485.java )  & Python |![ easy] ( https://github.com/guobinhit/myleetcode/blob/master/images/easy.png ) | Two-Pointer Technique
68- |498|[ Diagonal Traverse] ( https://leetcode.com/problems/diagonal-traverse/description/ ) |[ Java] ( https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basmath/learn/array_and_string/_498.java )  & Python |![ medium] ( https://github.com/guobinhit/myleetcode/blob/master/images/medium.png ) | Introduction to 2D Array
68+ |498|[ Diagonal Traverse] ( https://leetcode.com/problems/diagonal-traverse/description/ ) |[ Java] ( https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basmath/learn/array_and_string/_498.java )  & [ Python] ( https://github.com/guobinhit/myleetcode/blob/master/codes/python/leetcodes/src/main/python/com/hit/basmath/learn/array_and_string/_498.py )  |![ medium] ( https://github.com/guobinhit/myleetcode/blob/master/images/medium.png ) | Introduction to 2D Array
6969|557|[ Reverse Words in a String III] ( https://leetcode.com/problems/reverse-words-in-a-string-iii/description/ ) |[ Java] ( https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basmath/learn/array_and_string/_557.java )  & Python |![ easy] ( https://github.com/guobinhit/myleetcode/blob/master/images/easy.png ) | Conclusion
7070|561|[ Array Partition I] ( https://leetcode.com/problems/array-partition-i/description/ ) |[ Java] ( https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basmath/learn/array_and_string/_561.java )  & Python|![ easy] ( https://github.com/guobinhit/myleetcode/blob/master/images/easy.png ) | Two-Pointer Technique
7171|724|[ Find Pivot Index] ( https://leetcode.com/problems/find-pivot-index/description/ ) |[ Java] ( https://github.com/guobinhit/myleetcode/blob/master/codes/java/leetcodes/src/main/java/com/hit/basmath/learn/array_and_string/_724.java )  & [ Python] ( https://github.com/guobinhit/myleetcode/blob/master/codes/python/leetcodes/src/main/python/com/hit/basmath/learn/array_and_string/_724.py ) | ![ easy] ( https://github.com/guobinhit/myleetcode/blob/master/images/easy.png )  | Introduction to Array
0 commit comments