{"id":21758848,"url":"https://github.com/zeromake/leetcode","last_synced_at":"2025-10-03T15:46:32.719Z","repository":{"id":121633331,"uuid":"244395534","full_name":"zeromake/leetcode","owner":"zeromake","description":null,"archived":false,"fork":false,"pushed_at":"2021-03-29T00:49:43.000Z","size":294,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-12-21T11:01:33.678Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zeromake.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-03-02T14:45:59.000Z","updated_at":"2021-03-29T00:49:45.000Z","dependencies_parsed_at":"2024-06-19T06:24:55.070Z","dependency_job_id":"3094e3e5-5069-4d83-8440-a2795df8e95a","html_url":"https://github.com/zeromake/leetcode","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeromake%2Fleetcode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeromake%2Fleetcode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeromake%2Fleetcode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeromake%2Fleetcode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zeromake","download_url":"https://codeload.github.com/zeromake/leetcode/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244734202,"owners_count":20501018,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-26T11:24:15.647Z","updated_at":"2025-10-03T15:46:32.648Z","avatar_url":"https://github.com/zeromake.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LeetCode\n\n![Go](https://github.com/zeromake/leetcode/workflows/Go/badge.svg?branch=master)\n\n## Todo\n\n- [x] [0001-twoSum](pkg/arrays/twoSum.go): `array`, `dynamic-programming`\n- [x] [0002-addTwoNumbers](pkg/links/addTwoNumbers.go): `link`, `math`\n- [x] [0003-lengthOfLongestSubstring](pkg/strings/lengthOfLongestSubstring.go): `string`, `sliding-window`\n- [x] [0004-medianOfTwoSortedArrays](pkg/arrays/findMedian.go): `array`, `median`\n- [x] [0005-longestPalindrome](pkg/strings/longestPalindrome.go): `string`\n- [x] [0006-zConvert](pkg/strings/zConvert.go): `string`\n- [x] [0007-reverse](pkg/math/reverse.go): `number`, `reverse`, `bit`\n- [x] [0008-atoi](pkg/strings/atoi.go): `string`\n- [x] [0009-isPalindrome](pkg/math/isPalindrome.go): `math`, `bit`\n- [x] [0010-isMatch](pkg/strings/isMatch.go): `string`, `match`, `backtracking`\n- [x] [0011-maxArea](pkg/math/maxArea.go): `math`, `ptr`\n- [x] [0012-intToRoman](pkg/math/intToRoman.go): `math`, `bit`\n- [x] [0013-romanToInt](pkg/math/romanToInt.go): `math`, `bit`\n- [x] [0014-longestCommonPrefix](pkg/strings/longestCommonPrefix.go): `string`\n- [x] [0015-threeSum](pkg/arrays/threeSum.go): `array`, `sum`\n- [x] [0016-threeSumClosest](pkg/arrays/threeSumClosest.go): `array`, `sum`\n- [x] [0017-letterCombinations](pkg/strings/letterCombinations.go): `string`, `backtracking`\n- [x] [0018-fourSum](pkg/arrays/fourSum.go): `array`, `sum`\n- [x] [0019-removeNthFromEnd](pkg/links/removeNthFromEnd.go): `link`, `ptr`\n- [x] [0020-isValid](pkg/strings/isValid.go): `string`, `stack`, `match`\n- [x] [0021-mergeTwoLists](pkg/links/mergeTwoLists.go): `link`, `merge`, `sort`\n- [x] [0022-generateParenthesis](pkg/strings/generateParenthesis.go): `string`, `backtracking`\n- [x] [0023-mergeKLists](pkg/links/mergeKLists.go): `link`, `merge`, `sort`\n- [x] [0024-swapPairs](pkg/links/swapPairs.go): `swap`, `link`\n- [x] [0025-reverseKGroup](pkg/links/reverseKGroup.go): `link`, `reverse`\n- [x] [0026-removeDuplicates](pkg/arrays/removeDuplicates.go): `array`, `remove`, `zero-memory`\n- [x] [0027-removeElement](pkg/arrays/removeElement.go): `array`, `remove`, `zero-memory`\n- [x] [0028-strStr](pkg/strings/strStr.go): `string`, `find`, `substring`\n- [x] [0029-divide](pkg/math/divide.go): `divide`, `\u003c\u003c`, `\u003e\u003e`, `-`\n- [x] [0030-findSubstring](pkg/strings/findSubstring.go): `string`, `hashmap`\n- [x] [0031-nextPermutation](pkg/math/nextPermutation.go): `array`, `math`\n- [x] [0032-longestValidParentheses](pkg/strings/longestValidParentheses.go): `string`, `()`\n- [x] [0033-rotatedSearch](pkg/arrays/rotatedSearch.go): `array`, `sort`, `rotated`\n- [x] [0034-searchRange](pkg/arrays/searchRange.go): `array`, `search`, `range`\n- [x] [0035-searchInsert](pkg/arrays/searchInsert.go): `array`, `search`\n- [x] [0036-isValidSudoku](pkg/matrix/isValidSudoku.go): `matrix`, `sudoku`\n- [x] [0037-solveSudoku](pkg/matrix/solveSudoku.go): `matrix`, `sudoku`, `backtracking`\n- [x] [0038-countArraySay](pkg/strings/countArraySay.go): `count`, `say`\n- [x] [0039-combinationSum](pkg/arrays/combinationSum.go): `array`, `find set`, `sum`, `backtracking`\n- [x] [0040-combinationSum2](pkg/arrays/combinationSum2.go): `array`, `find set`, `sum`, `backtracking`\n- [x] [0041-firstMissingPositive](pkg/arrays/firstMissingPositive.go): `array`, `find`\n- [x] [0042-trap](pkg/arrays/trap.go): `array`, `ptr`\n- [x] [0043-multiply](pkg/math/multiply.go): `string`, `multiply`\n- [x] [0044-isMatchWildcard](pkg/strings/isMatchWildcard.go): `string`, `match`, `backtracking`\n- [x] [0045-jump](pkg/arrays/jump.go): `array`, `math`\n- [x] [0046-permute](pkg/arrays/permute.go): `array`, `permute`, `backtracking`\n- [x] [0047-permuteUnique](pkg/arrays/permuteUnique.go): `array`, `permute`, `unique`, `backtracking`\n- [x] [0048-rotate](pkg/matrix/rotate.go): `rotate`, `matrix`\n- [x] [0049-groupAnagrams](pkg/strings/groupAnagrams.go): `array`, `string`\n- [x] [0050-myPow](pkg/math/myPow.go): `math`, `pow`\n- [x] [0051-solveNQueens](pkg/matrix/solveNQueens.go): `matrix`, `backtracking`\n- [x] [0052-totalNQueens](pkg/matrix/totalNQueens.go): `matrix`, `backtracking`\n- [x] [0053-maxSubArray](pkg/arrays/maxSubArray.go): `array`, `max`, `subarray`\n- [x] [0054-spiralOrder](pkg/matrix/spiralOrder.go): `matrix`, `order`\n- [x] [0055-canJump](pkg/arrays/canJump.go): `array`\n- [x] [0056-mergeIntervals](pkg/arrays/mergeIntervals.go): `array`, `merge`\n- [x] [0057-insertIntervals](pkg/arrays/insertIntervals.go): `array`, `insert`\n- [x] [0058-lengthOfLastWord](pkg/strings/lengthOfLastWord.go): `string`, `last`\n- [x] [0059-generateSpiralMatrix](pkg/matrix/generateSpiralMatrix.go): `generate`, `spiral`, `matrix`\n- [x] [0060-getPermutation](pkg/arrays/getPermutation.go): `combination`, `backtracking`\n- [x] [0061-rotateRight](pkg/links/rotateRight.go): `link`, `rotate`\n- [x] [0062-uniquePaths](pkg/matrix/uniquePaths.go): `dp`\n- [x] [0063-uniquePathsWithObstacles](pkg/matrix/uniquePathsWithObstacles.go): `dp`\n- [x] [0064-minPathSum](pkg/matrix/minPathSum.go): `min`, `path`, `sum`\n- [x] [0065-isNumber](pkg/strings/isNumber.go): `string`, `isNumber`\n- [x] [0066-plusOne](pkg/arrays/plusOne.go): `array`\n- [x] [0067-addBinary](pkg/strings/addBinary.go): `add`, `string`, `binary`\n- [x] [0068-fullJustify](pkg/strings/fullJustify.go): `full`, `justify`, `string`\n- [x] [0069-mySqrt](pkg/math/mySqrt.go): `math`, `sqrt`\n- [x] [0070-climbStairs](pkg/math/climbStairs.go): `math`, `fib`\n- [x] [0071-simplifyPath](pkg/strings/simplifyPath.go): `string`, `clear`, `path`\n- [x] [0072-minDistance](pkg/strings/minDistance.go): `string`\n- [x] [0073-setZeroes](pkg/matrix/setZeroes.go): `matrix`, `zero`\n- [x] [0074-searchMatrix](pkg/matrix/searchMatrix.go): `matrix`, `search`, `sort-array`, `binary-search`\n- [x] [0075-sortColors](pkg/arrays/sortColors.go): `array`, `sort`\n- [x] [0076-minWindow](pkg/strings/minWindow.go): `string`, `sliding window`\n- [x] [0077-combine](pkg/arrays/combine.go): `array`, `combine`, `backtracking`\n- [x] [0078-subsets](pkg/arrays/subsets.go): `array`, `combine`, `backtracking`\n- [x] [0079-exits](pkg/matrix/exist.go): `matrix`, `backtracking`\n- [x] [0080-removeDuplicatesCount](pkg/arrays/removeDuplicatesCount.go): `array`, `remove duplicates`\n- [x] [0081-rotatedSearchDuplicate](pkg/arrays/rotatedSearchDuplicate.go): `array`, `search`\n- [x] [0082-deleteDuplicatesII](pkg/links/deleteDuplicatesII.go): `link`\n- [x] [0083-deleteDuplicatesI](pkg/links/deleteDuplicatesI.go): `link`\n- [x] [0084-largestRectangleArea](pkg/arrays/largestRectangleArea.go): `array`, `stack`\n- [x] [0085-maximalRectangle](pkg/matrix/maximalRectangle.go): `matrix`, `dp`\n- [x] [0086-partitionLink](pkg/links/partitionLink.go): `link`, `partition`\n- [x] [0087-isScramble](pkg/strings/isScramble.go): `string`, `dp`\n- [x] [0088-mergeSort](pkg/arrays/mergeSort.go): `array`, `merge`, `sort`\n- [x] [0089-grayCode](pkg/math/grayCode.go): `bit`\n- [x] [0090-subsetsWithDup](pkg/arrays/subsetsWithDup.go): `array`, `combine`, `backtracking`\n- [x] [0091-numDecodings](pkg/strings/numDecodings.go): `string`, `decode`\n- [x] [0092-reverseBetween](pkg/links/reverseBetween.go): `link`, `reverse`\n- [x] [0093-restoreIpAddresses](pkg/strings/restoreIpAddresses.go): `string`, `ip`, `backtracking`\n- [x] [0094-inorderTraversal](pkg/trees/inorderTraversal.go): `tree`, `stack`\n- [x] [0095-generateTree](pkg/trees/generateTrees.go): `tree`\n- [x] [0096-numTrees](pkg/trees/numTrees.go): `tree`, `math`\n- [x] [0097-isInterleave](pkg/strings/isInterleave.go): `string`, `dp`\n- [x] [0098-isValidBST](pkg/trees/isValidBST.go): `tree`, `search tree`\n- [x] [0099-recoverTree](pkg/trees/recoverTree.go): `tree`, `search tree`\n- [x] [0100-isSameTree](pkg/trees/isSameTree.go): `tree`, `same`\n- [x] [0101-isSymmetric](pkg/trees/isSymmetric.go): `tree`, `symmetric`\n- [x] [0102-levelOrder](pkg/trees/levelOrder.go): `tree`, `bfs`\n- [x] [0103-zigzagLevelOrder](pkg/trees/zigzagLevelOrder.go): `tree`, `bfs`\n- [x] [0104-maxDepth](pkg/trees/maxDepth.go): `tree`, `bfs`\n- [x] [0105-buildPreTree](pkg/trees/buildPreTree.go): `tree`\n- [x] [0106-buildPostTree](pkg/trees/buildPostTree.go): `tree`\n- [x] [0107-levelOrderBottom](pkg/trees/levelOrderBottom.go): `tree`\n- [x] [0108-sortedArrayToBST](pkg/trees/sortedArrayToBST.go): `tree`\n- [x] [0109-sortedListToBST](pkg/trees/sortedListToBST.go): `tree`, `link`\n- [x] [0110-isBalanced](pkg/trees/isBalanced.go): `tree`\n- [x] [0111-minDepth](pkg/trees/minDepth.go): `tree`, `depth`\n- [x] [0112-hasPathSum](pkg/trees/hasPathSum.go): `tree`, `bfs`\n- [x] [0113-pathSum](pkg/trees/pathSum.go): `tree`, `dfs`, `backtracking`\n- [x] [0114-flatten](pkg/trees/flatten.go): `tree`, `dfs`\n- [x] [0115-numDistinct](pkg/strings/numDistinct.go): `string`, `dp`\n- [x] [0116-connect](pkg/trees/connect.go): `tree`, `bfs`\n- [x] [0117-connect-II](pkg/trees/connect.go): `tree`, `bfs`\n- [x] [0118-generateTriangle](pkg/arrays/generateTriangle.go): `array`\n- [x] [0119-getRowTriangle](pkg/arrays/getRowTriangle.go): `array`\n- [x] [0120-minimumTotal](pkg/arrays/minimumTotal.go): `array`, `dp`\n- [x] [0121-maxProfit](pkg/arrays/maxProfit.go): `array`\n- [x] [0122-maxProfitII](pkg/arrays/maxProfitII.go): `array`\n- [x] [0122-maxProfitIII](pkg/arrays/maxProfitIII.go): `array`\n- [x] [0124-maxPathSum](pkg/trees/maxPathSum.go): `tree`, `dfs`\n- [x] [0125-isPalindrome](pkg/strings/isPalindrome.go): `string`\n- [x] [0126-findLadders](pkg/strings/findLadders.go): `string`, `backtracking`\n- [x] [0127-ladderLength](pkg/strings/ladderLength.go): `string`, `queue`\n- [x] [0128-longestConsecutive](pkg/arrays/longestConsecutive.go): `array`, `set`\n- [x] [0130-solve](pkg/matrix/solve.go): `matrix`, `dfs`\n- [x] [0133-cloneGraph](pkg/graph/cloneGraph.go): `graph`, `bfs`\n- [x] [0136-singleNumber](pkg/math/singleNumber.go): `math`\n- [x] [0141-hasCycle](pkg/links/hasCycle.go): `link`\n- [x] [0142-detectCycle](pkg/links/detectCycle.go): `link`\n- [x] [0143-reorderList](pkg/links/reorderList.go): `link`\n- [x] [0144-preOrderTraversal](pkg/trees/preOrderTraversal.go): `tree`, `loop`, `stack`\n- [x] [0146-lruCache](pkg/links/lruCache.go): `link`, `cache`, `lru`\n- [x] [0151-reverseWords](pkg/strings/reverseWords.go): `string`\n- [x] [0152-maxProduct](pkg/arrays/maxProduct.go): `array`\n- [x] [0167-towSumII](pkg/arrays/towSumII.go): `array`\n- [x] [0169-majorityElement](pkg/arrays/majorityElement.go): `math`, `array`\n- [x] [0174-calculateMinimumHP](pkg/matrix/calculateMinimumHP.go): `matrix`, `dp`\n- [x] [0190-reverseBits](pkg/math/reverseBits.go): `bit`\n- [x] [0198-rob](pkg/arrays/rob.go): `array`, `dp`\n- [x] [0199-rightSideView](pkg/trees/rightSideView.go): `tree`, `bfs`\n- [x] [0200-numIslands](pkg/matrix/numIslands.go): `matrix`, `land`\n- [x] [0202-isHappy](pkg/math/isHappy.go): `number`, `math`\n- [x] [0206-reverseList](pkg/links/reverseList.go): `reverse`, `link`\n- [x] [0207-canFinish](pkg/graph/canFinish.go): `graph`\n- [x] [0209-minSubArrayLen](pkg/arrays/minSubArrayLen.go): `array`\n- [x] [0210-findOrder](pkg/arrays/findOrder.go): `array`, `topological-sort`\n- [x] [0215-findKthLargest](pkg/arrays/findKthLargest.go): `array`, `heap`\n- [x] [0217-containsDuplicate](pkg/arrays/containsDuplicate.go): `array`, `duplicate`\n- [x] [0224-calculate](pkg/math/calculate.go): `string`, `calculate`\n- [x] [0236-lowestCommonAncestor](pkg/trees/lowestCommonAncestor.go): `tree`, `bfs`, `dfs`\n- [x] [0238-productExceptSelf](pkg/arrays/productExceptSelf.go): `array`, `math`\n- [x] [0287-findDuplicate](pkg/arrays/findDuplicate.go): `array`, `duplicate`\n- [x] [0289-gameOfLife](pkg/matrix/gameOfLife.go): `matrix`\n- [x] [0300-lengthOfLIS](pkg/arrays/lengthOfLIS.go): `array`\n- [x] [0309-maxProfitWithCooldown](pkg/arrays/maxProfitWithCooldown.go): `array`, `dp`\n- [x] [0312-maxCoins](pkg/arrays/maxCoins.go): `array`, `dp`\n- [x] [0315-countSmaller](pkg/arrays/countSmaller.go): `array`, `sort`\n- [x] [0322-coinChange](pkg/math/coinChange.go): `math`\n- [x] [0332-FindItinerary](pkg/matrix/findItinerary.go): `matrix`, `dfs`\n- [x] [0336-palindromePairs](pkg/strings/palindromePairs.go): `string`, `map`\n- [x] [0337-rob](pkg/trees/rob.go): `tree`, `dfs`\n- [x] [0350-intersect](pkg/arrays/intersect.go): `array`, `map`\n- [x] [0355-twtter](pkg/stacks/twtter.go): `twtter`\n- [x] [0365-canMeasureWater](pkg/math/canMeasureWater.go): `math`, `gcd`\n- [x] [0378-kthSmallest](pkg/matrix/kthSmallest.go): `matrix`\n- [x] [0392-IsSubsequence](pkg/strings/isSubsequence.go): `string`\n- [x] [0409-longestPalindrome](pkg/strings/longestPalindrome.go): `string`, `palindrome`\n- [x] [0410-splitArray](pkg/arrays/splitArray.go): `array`, `dp`\n- [x] [0415-addStrings](pkg/strings/addStrings.go): `string`, `add`\n- [x] [0445-addTowNumberII](pkg/links/addTwoNumbersII.go): `link`, `add`\n- [x] [0466-getMaxRepetitions](pkg/strings/getMaxRepetitions.go): `string`\n- [x] [0460-lfuCache](pkg/links/lfuCache.go): `cache`, `map`, `link`, `lfu`\n- [x] [0486-predictTheWinner](pkg/arrays/predictTheWinner.go): `array`, `dp`\n- [x] [0529-updateBoard](pkg/matrix/updateBoard.go): `matrix`, `dfs`\n- [x] [0542-updateMatrix](pkg/matrix/updateMatrix.go): `matrix`, `dp`\n- [x] [0543-diameterOfBinaryTree](pkg/trees/diameterOfBinaryTree.go): `array`, `dfs`\n- [x] [0546-removeBoxes](pkg/arrays/removeBoxes.go): `array`, `dp`\n- [x] [0557-reverseWordsIII](pkg/strings/reverseWordsIII.go): `string`\n- [x] [0560-subArraySum](pkg/arrays/subArraySum.go): `array`\n- [x] [0572-isSubtree](pkg/trees/isSubtree.go): `tree`, `dfs`\n- [x] [0632-smallestRange](pkg/arrays/smallestRange.go): `array`, `heap`\n- [x] [0680-validPalindrome](pkg/strings/validPalindrome.go): `string`\n- [x] [0695-maxAreaOfIsland](pkg/matrix/maxAreaOfIsland.go): `matrix`, `dfs`\n- [x] [0696-countBinarySubstrings](pkg/strings/countBinarySubstrings.go): `string`\n- [x] [0739-dailyTemperatures](pkg/arrays/dailyTemperatures.go): `array`\n- [x] [0766-isToeplitzMatrix](pkg/matrix/isToeplitzMatrix.go): `matrix`\n- [x] [0785-isBipartite](pkg/matrix/isBipartite.go): `matrix`\n- [x] [0820-minimumLengthEncoding](pkg/strings/minimumLengthEncoding.go): `array`, `encode`\n- [x] [0832-flipAndInvertImage](pkg/matrix/flipAndInvertImage.go): `matrix`\n- [x] [0836-isRectangleOverlap](pkg/matrix/isRectangleOverlap.go): `matrix`, `overlap`\n- [x] [0837-new21Game](pkg/math/new21Game.go): `dp`\n- [x] [0841-canVisitAllRooms](pkg/matrix/canVisitAllRooms.go): `bfs`\n- [x] [0876-middleMode](pkg/links/middleNode.go): `middle`, `link`, `ptr`\n- [x] [0887-superEggDrop](pkg/math/superEggDrop.go): `math`, `dp`\n- [x] [0892-surfaceArea](pkg/matrix/surfaceArea.go): `matrix`, `area`\n- [x] [0912-sortArray](pkg/arrays/sortArray.go): `array`, `quick`, `sort`\n- [x] [0914-hasGroupsSizeX](pkg/arrays/hasGroupsSizeX.go): `array`, `group`, `gcd`\n- [x] [0945-minIncrementForUnique](pkg/arrays/minIncrementForUnique.go): `sum`, `array`\n- [x] [0983-mincostTickets](pkg/arrays/mincostTickets.go): `array`, `dp`\n- [x] [0990-equationsPossible](pkg/arrays/equationsPossible.go): `array`, `string`\n- [x] [0994-orangesRotting](pkg/matrix/orangesRotting.go): `matrix`, `bfs`\n- [x] [0999-numRookCaptures](pkg/matrix/numRookCaptures.go): `matrix`\n- [x] [1004-longestOnes](pkg/arrays/longestOnes.go): `array`, `sliding-window`\n- [x] [1013-canThreePartsEqualSum](pkg/arrays/canThreePartsEqualSum.go): `array`, `ptr`\n- [x] [1014-maxScoreSightseeingPair](pkg/arrays/maxScoreSightseeingPair.go): `array`, `dp`\n- [x] [1028-recoverFromPreorder](pkg/trees/recoverFromPreorder.go): `tree`, ``\n- [x] [1095-findInMountainArray](pkg/arrays/findInMountainArray.go): `array`, `binary-search`\n- [x] [1103-distributeCandies](pkg/math/distributeCandies.go): `math`, `arithmetic-progression`\n- [x] [1111-maxDepthAfterSplit](pkg/strings/maxDepthAfterSplit.go): `string`\n- [x] [1160-countCharacters](pkg/strings/countCharacters.go): `string`\n- [x] [1162-maxDistance](pkg/matrix/maxDistance.go): `matrix`, `bfs`\n- [x] [1248-numberOfSubarrays](pkg/arrays/numberOfSubarrays.go): `array`\n- [x] [1371-findTheLongestSubstring](pkg/strings/findTheLongestSubstring.go): `string`\n- [x] [1431-kidsWithCandies](pkg/arrays/kidsWithCandies.go): `array`\n- [x] [面试题-01.06-compressString](pkg/strings/compressString.go): `string`, `compress`\n- [x] [面试题-01.07-rotate](pkg/matrix/rotate.go): `rotate`, `matrix`\n- [x] [面试题-02.01-removeDuplicateNodes](pkg/links/removeDuplicateNodes.go): `link`\n- [x] [面试题-08.11-waysToChange](pkg/math/waysToChange.go): `math`\n- [x] [面试题-10.01-sortedMerge](pkg/arrays/merge.go): `array`, `index`\n- [x] [面试题-13-movingCount](pkg/matrix/movingCount.go): `dp`\n- [x] [面试题-16.03-intersection](pkg/math/intersection.go): `math`\n- [x] [面试题-16.11-divingBoard](pkg/math/divingBoard.go): `math`\n- [x] [面试题-16.18-patternMatching](pkg/strings/patternMatching.go): `string`\n- [x] [面试题-17.13-respace](pkg/strings/respace.go): `string`\n- [x] [面试题-17.16-massage](pkg/arrays/massage.go): `array`, `sum`\n- [x] [面试题-29-spiralOrder](pkg/matrix/spiralOrder.go): `matrix`\n- [x] [面试题-40-getLeastNumbers](pkg/arrays/getLeastNumbers.go): `array`\n- [x] [面试题-46-translateNum](pkg/math/translateNum.go): `number`, `backtracking`\n- [x] [面试题-51-reversePairs](pkg/arrays/reversePairs.go): `array`\n- [x] [面试题-56-singleNumbers](pkg/math/singleNumbers.go): `number`, `math`, `bit`\n- [x] [面试题-57-II-findContinuousSequence](pkg/math/findContinuousSequence.go): `arithmetic-progression`\n- [x] [面试题-59-II-maxQueue](pkg/stacks/maxQueue.go): `link`, `stack`\n- [x] [面试题-62-lastRemaining](pkg/math/lastRemaining.go): `math`\n- [x] [面试题-64-sumNums](pkg/math/sumNums.go): `math`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeromake%2Fleetcode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzeromake%2Fleetcode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeromake%2Fleetcode/lists"}