Back to Leetcode Go

2.13 Hash Table

website/content/ChapterTwo/Hash_Table.md

1.7.121.3 KB
Original Source

Hash Table

No.TitleSolutionDifficultyTimeComplexitySpaceComplexityFavoriteAcceptance
0001Two Sum[Go]({{< relref "/ChapterFour/0001~0099/0001.Two-Sum.md" >}})EasyO(n)O(n)49.7%
0003Longest Substring Without Repeating Characters[Go]({{< relref "/ChapterFour/0001~0099/0003.Longest-Substring-Without-Repeating-Characters.md" >}})MediumO(n)O(1)❤️33.8%
0012Integer to Roman[Go]({{< relref "/ChapterFour/0001~0099/0012.Integer-to-Roman.md" >}})Medium62.0%
0013Roman to Integer[Go]({{< relref "/ChapterFour/0001~0099/0013.Roman-to-Integer.md" >}})Easy58.6%
0017Letter Combinations of a Phone Number[Go]({{< relref "/ChapterFour/0001~0099/0017.Letter-Combinations-of-a-Phone-Number.md" >}})Medium56.6%
0030Substring with Concatenation of All Words[Go]({{< relref "/ChapterFour/0001~0099/0030.Substring-with-Concatenation-of-All-Words.md" >}})HardO(n)O(n)❤️31.2%
0036Valid Sudoku[Go]({{< relref "/ChapterFour/0001~0099/0036.Valid-Sudoku.md" >}})MediumO(n^2)O(n^2)58.1%
0037Sudoku Solver[Go]({{< relref "/ChapterFour/0001~0099/0037.Sudoku-Solver.md" >}})HardO(n^2)O(n^2)❤️57.7%
0041First Missing Positive[Go]({{< relref "/ChapterFour/0001~0099/0041.First-Missing-Positive.md" >}})Hard36.7%
0049Group Anagrams[Go]({{< relref "/ChapterFour/0001~0099/0049.Group-Anagrams.md" >}})MediumO(n log n)O(n)66.8%
0073Set Matrix Zeroes[Go]({{< relref "/ChapterFour/0001~0099/0073.Set-Matrix-Zeroes.md" >}})Medium51.3%
0076Minimum Window Substring[Go]({{< relref "/ChapterFour/0001~0099/0076.Minimum-Window-Substring.md" >}})HardO(n)O(n)❤️40.9%
0105Construct Binary Tree from Preorder and Inorder Traversal[Go]({{< relref "/ChapterFour/0100~0199/0105.Construct-Binary-Tree-from-Preorder-and-Inorder-Traversal.md" >}})Medium61.6%
0106Construct Binary Tree from Inorder and Postorder Traversal[Go]({{< relref "/ChapterFour/0100~0199/0106.Construct-Binary-Tree-from-Inorder-and-Postorder-Traversal.md" >}})Medium60.0%
0126Word Ladder II[Go]({{< relref "/ChapterFour/0100~0199/0126.Word-Ladder-II.md" >}})Hard27.5%
0127Word Ladder[Go]({{< relref "/ChapterFour/0100~0199/0127.Word-Ladder.md" >}})Hard37.2%
0128Longest Consecutive Sequence[Go]({{< relref "/ChapterFour/0100~0199/0128.Longest-Consecutive-Sequence.md" >}})Medium48.5%
0138Copy List with Random Pointer[Go]({{< relref "/ChapterFour/0100~0199/0138.Copy-List-with-Random-Pointer.md" >}})MediumO(n)O(1)51.4%
0141Linked List Cycle[Go]({{< relref "/ChapterFour/0100~0199/0141.Linked-List-Cycle.md" >}})Easy47.5%
0142Linked List Cycle II[Go]({{< relref "/ChapterFour/0100~0199/0142.Linked-List-Cycle-II.md" >}})Medium48.8%
0146LRU Cache[Go]({{< relref "/ChapterFour/0100~0199/0146.LRU-Cache.md" >}})Medium40.7%
0160Intersection of Two Linked Lists[Go]({{< relref "/ChapterFour/0100~0199/0160.Intersection-of-Two-Linked-Lists.md" >}})Easy54.4%
0169Majority Element[Go]({{< relref "/ChapterFour/0100~0199/0169.Majority-Element.md" >}})Easy63.9%
0187Repeated DNA Sequences[Go]({{< relref "/ChapterFour/0100~0199/0187.Repeated-DNA-Sequences.md" >}})Medium47.0%
0202Happy Number[Go]({{< relref "/ChapterFour/0200~0299/0202.Happy-Number.md" >}})EasyO(log n)O(1)54.8%
0205Isomorphic Strings[Go]({{< relref "/ChapterFour/0200~0299/0205.Isomorphic-Strings.md" >}})EasyO(log n)O(n)42.9%
0208Implement Trie (Prefix Tree)[Go]({{< relref "/ChapterFour/0200~0299/0208.Implement-Trie-Prefix-Tree.md" >}})Medium62.8%
0217Contains Duplicate[Go]({{< relref "/ChapterFour/0200~0299/0217.Contains-Duplicate.md" >}})EasyO(n)O(n)61.4%
0219Contains Duplicate II[Go]({{< relref "/ChapterFour/0200~0299/0219.Contains-Duplicate-II.md" >}})EasyO(n)O(n)42.6%
0229Majority Element II[Go]({{< relref "/ChapterFour/0200~0299/0229.Majority-Element-II.md" >}})Medium45.1%
0242Valid Anagram[Go]({{< relref "/ChapterFour/0200~0299/0242.Valid-Anagram.md" >}})EasyO(n)O(n)63.1%
0264Ugly Number II[Go]({{< relref "/ChapterFour/0200~0299/0264.Ugly-Number-II.md" >}})Medium46.2%
0268Missing Number[Go]({{< relref "/ChapterFour/0200~0299/0268.Missing-Number.md" >}})Easy62.6%
0290Word Pattern[Go]({{< relref "/ChapterFour/0200~0299/0290.Word-Pattern.md" >}})EasyO(n)O(n)41.7%
0299Bulls and Cows[Go]({{< relref "/ChapterFour/0200~0299/0299.Bulls-and-Cows.md" >}})Medium49.4%
0347Top K Frequent Elements[Go]({{< relref "/ChapterFour/0300~0399/0347.Top-K-Frequent-Elements.md" >}})MediumO(n)O(n)64.2%
0349Intersection of Two Arrays[Go]({{< relref "/ChapterFour/0300~0399/0349.Intersection-of-Two-Arrays.md" >}})EasyO(n)O(n)70.9%
0350Intersection of Two Arrays II[Go]({{< relref "/ChapterFour/0300~0399/0350.Intersection-of-Two-Arrays-II.md" >}})EasyO(n)O(n)56.0%
0383Ransom Note[Go]({{< relref "/ChapterFour/0300~0399/0383.Ransom-Note.md" >}})Easy58.3%
0387First Unique Character in a String[Go]({{< relref "/ChapterFour/0300~0399/0387.First-Unique-Character-in-a-String.md" >}})Easy59.6%
0389Find the Difference[Go]({{< relref "/ChapterFour/0300~0399/0389.Find-the-Difference.md" >}})Easy59.9%
0395Longest Substring with At Least K Repeating Characters[Go]({{< relref "/ChapterFour/0300~0399/0395.Longest-Substring-with-At-Least-K-Repeating-Characters.md" >}})Medium44.8%
0409Longest Palindrome[Go]({{< relref "/ChapterFour/0400~0499/0409.Longest-Palindrome.md" >}})Easy54.2%
0421Maximum XOR of Two Numbers in an Array[Go]({{< relref "/ChapterFour/0400~0499/0421.Maximum-XOR-of-Two-Numbers-in-an-Array.md" >}})Medium54.0%
0423Reconstruct Original Digits from English[Go]({{< relref "/ChapterFour/0400~0499/0423.Reconstruct-Original-Digits-from-English.md" >}})Medium51.2%
0424Longest Repeating Character Replacement[Go]({{< relref "/ChapterFour/0400~0499/0424.Longest-Repeating-Character-Replacement.md" >}})Medium52.0%
0433Minimum Genetic Mutation[Go]({{< relref "/ChapterFour/0400~0499/0433.Minimum-Genetic-Mutation.md" >}})Medium52.4%
0438Find All Anagrams in a String[Go]({{< relref "/ChapterFour/0400~0499/0438.Find-All-Anagrams-in-a-String.md" >}})MediumO(n)O(1)50.2%
0447Number of Boomerangs[Go]({{< relref "/ChapterFour/0400~0499/0447.Number-of-Boomerangs.md" >}})MediumO(n)O(1)54.9%
0448Find All Numbers Disappeared in an Array[Go]({{< relref "/ChapterFour/0400~0499/0448.Find-All-Numbers-Disappeared-in-an-Array.md" >}})Easy59.9%
0451Sort Characters By Frequency[Go]({{< relref "/ChapterFour/0400~0499/0451.Sort-Characters-By-Frequency.md" >}})MediumO(n log n)O(1)70.1%
04544Sum II[Go]({{< relref "/ChapterFour/0400~0499/0454.4Sum-II.md" >}})MediumO(n^2)O(n)57.2%
0457Circular Array Loop[Go]({{< relref "/ChapterFour/0400~0499/0457.Circular-Array-Loop.md" >}})Medium32.6%
0460LFU Cache[Go]({{< relref "/ChapterFour/0400~0499/0460.LFU-Cache.md" >}})Hard43.0%
0480Sliding Window Median[Go]({{< relref "/ChapterFour/0400~0499/0480.Sliding-Window-Median.md" >}})Hard41.1%
0491Non-decreasing Subsequences[Go]({{< relref "/ChapterFour/0400~0499/0491.Non-decreasing-Subsequences.md" >}})Medium60.2%
0496Next Greater Element I[Go]({{< relref "/ChapterFour/0400~0499/0496.Next-Greater-Element-I.md" >}})Easy71.4%
0500Keyboard Row[Go]({{< relref "/ChapterFour/0500~0599/0500.Keyboard-Row.md" >}})Easy69.6%
0508Most Frequent Subtree Sum[Go]({{< relref "/ChapterFour/0500~0599/0508.Most-Frequent-Subtree-Sum.md" >}})Medium64.9%
0519Random Flip Matrix[Go]({{< relref "/ChapterFour/0500~0599/0519.Random-Flip-Matrix.md" >}})Medium40.0%
0523Continuous Subarray Sum[Go]({{< relref "/ChapterFour/0500~0599/0523.Continuous-Subarray-Sum.md" >}})Medium28.5%
0525Contiguous Array[Go]({{< relref "/ChapterFour/0500~0599/0525.Contiguous-Array.md" >}})Medium46.8%
0532K-diff Pairs in an Array[Go]({{< relref "/ChapterFour/0500~0599/0532.K-diff-Pairs-in-an-Array.md" >}})Medium41.2%
0535Encode and Decode TinyURL[Go]({{< relref "/ChapterFour/0500~0599/0535.Encode-and-Decode-TinyURL.md" >}})Medium86.0%
0554Brick Wall[Go]({{< relref "/ChapterFour/0500~0599/0554.Brick-Wall.md" >}})Medium53.6%
0560Subarray Sum Equals K[Go]({{< relref "/ChapterFour/0500~0599/0560.Subarray-Sum-Equals-K.md" >}})Medium43.7%
0567Permutation in String[Go]({{< relref "/ChapterFour/0500~0599/0567.Permutation-in-String.md" >}})Medium44.3%
0575Distribute Candies[Go]({{< relref "/ChapterFour/0500~0599/0575.Distribute-Candies.md" >}})Easy66.5%
0594Longest Harmonious Subsequence[Go]({{< relref "/ChapterFour/0500~0599/0594.Longest-Harmonious-Subsequence.md" >}})Easy53.5%
0599Minimum Index Sum of Two Lists[Go]({{< relref "/ChapterFour/0500~0599/0599.Minimum-Index-Sum-of-Two-Lists.md" >}})Easy53.4%
0609Find Duplicate File in System[Go]({{< relref "/ChapterFour/0600~0699/0609.Find-Duplicate-File-in-System.md" >}})Medium67.7%
0632Smallest Range Covering Elements from K Lists[Go]({{< relref "/ChapterFour/0600~0699/0632.Smallest-Range-Covering-Elements-from-K-Lists.md" >}})Hard61.0%
0645Set Mismatch[Go]({{< relref "/ChapterFour/0600~0699/0645.Set-Mismatch.md" >}})Easy42.7%
0648Replace Words[Go]({{< relref "/ChapterFour/0600~0699/0648.Replace-Words.md" >}})MediumO(n)O(n)62.7%
0653Two Sum IV - Input is a BST[Go]({{< relref "/ChapterFour/0600~0699/0653.Two-Sum-IV-Input-is-a-BST.md" >}})Easy61.0%
0676Implement Magic Dictionary[Go]({{< relref "/ChapterFour/0600~0699/0676.Implement-Magic-Dictionary.md" >}})MediumO(n)O(n)56.9%
0677Map Sum Pairs[Go]({{< relref "/ChapterFour/0600~0699/0677.Map-Sum-Pairs.md" >}})Medium56.8%
0690Employee Importance[Go]({{< relref "/ChapterFour/0600~0699/0690.Employee-Importance.md" >}})Medium65.6%
0692Top K Frequent Words[Go]({{< relref "/ChapterFour/0600~0699/0692.Top-K-Frequent-Words.md" >}})Medium57.2%
0697Degree of an Array[Go]({{< relref "/ChapterFour/0600~0699/0697.Degree-of-an-Array.md" >}})Easy56.0%
0705Design HashSet[Go]({{< relref "/ChapterFour/0700~0799/0705.Design-HashSet.md" >}})Easy65.6%
0706Design HashMap[Go]({{< relref "/ChapterFour/0700~0799/0706.Design-HashMap.md" >}})Easy64.7%
0710Random Pick with Blacklist[Go]({{< relref "/ChapterFour/0700~0799/0710.Random-Pick-with-Blacklist.md" >}})HardO(n)O(n)33.5%
0720Longest Word in Dictionary[Go]({{< relref "/ChapterFour/0700~0799/0720.Longest-Word-in-Dictionary.md" >}})MediumO(n)O(n)52.0%
0726Number of Atoms[Go]({{< relref "/ChapterFour/0700~0799/0726.Number-of-Atoms.md" >}})HardO(n)O(n)❤️52.2%
0745Prefix and Suffix Search[Go]({{< relref "/ChapterFour/0700~0799/0745.Prefix-and-Suffix-Search.md" >}})Hard41.2%
0748Shortest Completing Word[Go]({{< relref "/ChapterFour/0700~0799/0748.Shortest-Completing-Word.md" >}})Easy59.3%
0752Open the Lock[Go]({{< relref "/ChapterFour/0700~0799/0752.Open-the-Lock.md" >}})Medium55.6%
0763Partition Labels[Go]({{< relref "/ChapterFour/0700~0799/0763.Partition-Labels.md" >}})Medium79.7%
0767Reorganize String[Go]({{< relref "/ChapterFour/0700~0799/0767.Reorganize-String.md" >}})Medium52.9%
0771Jewels and Stones[Go]({{< relref "/ChapterFour/0700~0799/0771.Jewels-and-Stones.md" >}})Easy88.2%
0781Rabbits in Forest[Go]({{< relref "/ChapterFour/0700~0799/0781.Rabbits-in-Forest.md" >}})Medium54.7%
0791Custom Sort String[Go]({{< relref "/ChapterFour/0700~0799/0791.Custom-Sort-String.md" >}})Medium69.1%
0792Number of Matching Subsequences[Go]({{< relref "/ChapterFour/0700~0799/0792.Number-of-Matching-Subsequences.md" >}})Medium51.6%
0811Subdomain Visit Count[Go]({{< relref "/ChapterFour/0800~0899/0811.Subdomain-Visit-Count.md" >}})Medium75.5%
0815Bus Routes[Go]({{< relref "/ChapterFour/0800~0899/0815.Bus-Routes.md" >}})Hard45.6%
0817Linked List Components[Go]({{< relref "/ChapterFour/0800~0899/0817.Linked-List-Components.md" >}})Medium57.7%
0819Most Common Word[Go]({{< relref "/ChapterFour/0800~0899/0819.Most-Common-Word.md" >}})Easy44.7%
0820Short Encoding of Words[Go]({{< relref "/ChapterFour/0800~0899/0820.Short-Encoding-of-Words.md" >}})Medium60.6%
0823Binary Trees With Factors[Go]({{< relref "/ChapterFour/0800~0899/0823.Binary-Trees-With-Factors.md" >}})Medium49.7%
0828Count Unique Characters of All Substrings of a Given String[Go]({{< relref "/ChapterFour/0800~0899/0828.Count-Unique-Characters-of-All-Substrings-of-a-Given-String.md" >}})Hard51.6%
0846Hand of Straights[Go]({{< relref "/ChapterFour/0800~0899/0846.Hand-of-Straights.md" >}})Medium56.2%
0859Buddy Strings[Go]({{< relref "/ChapterFour/0800~0899/0859.Buddy-Strings.md" >}})Easy29.2%
0884Uncommon Words from Two Sentences[Go]({{< relref "/ChapterFour/0800~0899/0884.Uncommon-Words-from-Two-Sentences.md" >}})Easy66.4%
0888Fair Candy Swap[Go]({{< relref "/ChapterFour/0800~0899/0888.Fair-Candy-Swap.md" >}})Easy60.7%
0890Find and Replace Pattern[Go]({{< relref "/ChapterFour/0800~0899/0890.Find-and-Replace-Pattern.md" >}})Medium77.6%
0895Maximum Frequency Stack[Go]({{< relref "/ChapterFour/0800~0899/0895.Maximum-Frequency-Stack.md" >}})HardO(n)O(n)66.6%
0904Fruit Into Baskets[Go]({{< relref "/ChapterFour/0900~0999/0904.Fruit-Into-Baskets.md" >}})Medium43.7%
0911Online Election[Go]({{< relref "/ChapterFour/0900~0999/0911.Online-Election.md" >}})Medium52.2%
0914X of a Kind in a Deck of Cards[Go]({{< relref "/ChapterFour/0900~0999/0914.X-of-a-Kind-in-a-Deck-of-Cards.md" >}})Easy31.2%
0916Word Subsets[Go]({{< relref "/ChapterFour/0900~0999/0916.Word-Subsets.md" >}})Medium53.7%
09233Sum With Multiplicity[Go]({{< relref "/ChapterFour/0900~0999/0923.3Sum-With-Multiplicity.md" >}})Medium45.3%
0930Binary Subarrays With Sum[Go]({{< relref "/ChapterFour/0900~0999/0930.Binary-Subarrays-With-Sum.md" >}})MediumO(n)O(n)❤️52.2%
0953Verifying an Alien Dictionary[Go]({{< relref "/ChapterFour/0900~0999/0953.Verifying-an-Alien-Dictionary.md" >}})Easy54.5%
0961N-Repeated Element in Size 2N Array[Go]({{< relref "/ChapterFour/0900~0999/0961.N-Repeated-Element-in-Size-2N-Array.md" >}})Easy76.1%
0966Vowel Spellchecker[Go]({{< relref "/ChapterFour/0900~0999/0966.Vowel-Spellchecker.md" >}})Medium51.4%
0970Powerful Integers[Go]({{< relref "/ChapterFour/0900~0999/0970.Powerful-Integers.md" >}})Medium43.6%
0981Time Based Key-Value Store[Go]({{< relref "/ChapterFour/0900~0999/0981.Time-Based-Key-Value-Store.md" >}})Medium52.2%
0987Vertical Order Traversal of a Binary Tree[Go]({{< relref "/ChapterFour/0900~0999/0987.Vertical-Order-Traversal-of-a-Binary-Tree.md" >}})Hard45.1%
0992Subarrays with K Different Integers[Go]({{< relref "/ChapterFour/0900~0999/0992.Subarrays-with-K-Different-Integers.md" >}})HardO(n)O(n)❤️54.6%
0997Find the Town Judge[Go]({{< relref "/ChapterFour/0900~0999/0997.Find-the-Town-Judge.md" >}})Easy49.5%
1002Find Common Characters[Go]({{< relref "/ChapterFour/1000~1099/1002.Find-Common-Characters.md" >}})Easy68.5%
1010Pairs of Songs With Total Durations Divisible by 60[Go]({{< relref "/ChapterFour/1000~1099/1010.Pairs-of-Songs-With-Total-Durations-Divisible-by-60.md" >}})Medium52.8%
1048Longest String Chain[Go]({{< relref "/ChapterFour/1000~1099/1048.Longest-String-Chain.md" >}})Medium59.3%
1054Distant Barcodes[Go]({{< relref "/ChapterFour/1000~1099/1054.Distant-Barcodes.md" >}})Medium45.9%
1074Number of Submatrices That Sum to Target[Go]({{< relref "/ChapterFour/1000~1099/1074.Number-of-Submatrices-That-Sum-to-Target.md" >}})Hard69.5%
1079Letter Tile Possibilities[Go]({{< relref "/ChapterFour/1000~1099/1079.Letter-Tile-Possibilities.md" >}})Medium76.0%
1122Relative Sort Array[Go]({{< relref "/ChapterFour/1100~1199/1122.Relative-Sort-Array.md" >}})Easy68.6%
1123Lowest Common Ancestor of Deepest Leaves[Go]({{< relref "/ChapterFour/1100~1199/1123.Lowest-Common-Ancestor-of-Deepest-Leaves.md" >}})Medium70.9%
1128Number of Equivalent Domino Pairs[Go]({{< relref "/ChapterFour/1100~1199/1128.Number-of-Equivalent-Domino-Pairs.md" >}})Easy47.1%
1160Find Words That Can Be Formed by Characters[Go]({{< relref "/ChapterFour/1100~1199/1160.Find-Words-That-Can-Be-Formed-by-Characters.md" >}})Easy67.5%
1170Compare Strings by Frequency of the Smallest Character[Go]({{< relref "/ChapterFour/1100~1199/1170.Compare-Strings-by-Frequency-of-the-Smallest-Character.md" >}})Medium61.5%
1171Remove Zero Sum Consecutive Nodes from Linked List[Go]({{< relref "/ChapterFour/1100~1199/1171.Remove-Zero-Sum-Consecutive-Nodes-from-Linked-List.md" >}})Medium43.2%
1178Number of Valid Words for Each Puzzle[Go]({{< relref "/ChapterFour/1100~1199/1178.Number-of-Valid-Words-for-Each-Puzzle.md" >}})Hard46.3%
1189Maximum Number of Balloons[Go]({{< relref "/ChapterFour/1100~1199/1189.Maximum-Number-of-Balloons.md" >}})Easy61.0%
1202Smallest String With Swaps[Go]({{< relref "/ChapterFour/1200~1299/1202.Smallest-String-With-Swaps.md" >}})Medium57.7%
1207Unique Number of Occurrences[Go]({{< relref "/ChapterFour/1200~1299/1207.Unique-Number-of-Occurrences.md" >}})Easy73.5%
1275Find Winner on a Tic Tac Toe Game[Go]({{< relref "/ChapterFour/1200~1299/1275.Find-Winner-on-a-Tic-Tac-Toe-Game.md" >}})Easy54.2%
1296Divide Array in Sets of K Consecutive Numbers[Go]({{< relref "/ChapterFour/1200~1299/1296.Divide-Array-in-Sets-of-K-Consecutive-Numbers.md" >}})Medium56.5%
1396Design Underground System[Go]({{< relref "/ChapterFour/1300~1399/1396.Design-Underground-System.md" >}})Medium73.6%
1442Count Triplets That Can Form Two Arrays of Equal XOR[Go]({{< relref "/ChapterFour/1400~1499/1442.Count-Triplets-That-Can-Form-Two-Arrays-of-Equal-XOR.md" >}})Medium76.1%
1461Check If a String Contains All Binary Codes of Size K[Go]({{< relref "/ChapterFour/1400~1499/1461.Check-If-a-String-Contains-All-Binary-Codes-of-Size-K.md" >}})Medium56.6%
1512Number of Good Pairs[Go]({{< relref "/ChapterFour/1500~1599/1512.Number-of-Good-Pairs.md" >}})Easy88.2%
1600Throne Inheritance[Go]({{< relref "/ChapterFour/1600~1699/1600.Throne-Inheritance.md" >}})Medium63.6%
1624Largest Substring Between Two Equal Characters[Go]({{< relref "/ChapterFour/1600~1699/1624.Largest-Substring-Between-Two-Equal-Characters.md" >}})Easy59.1%
1636Sort Array by Increasing Frequency[Go]({{< relref "/ChapterFour/1600~1699/1636.Sort-Array-by-Increasing-Frequency.md" >}})Easy69.5%
1640Check Array Formation Through Concatenation[Go]({{< relref "/ChapterFour/1600~1699/1640.Check-Array-Formation-Through-Concatenation.md" >}})Easy56.2%
1647Minimum Deletions to Make Character Frequencies Unique[Go]({{< relref "/ChapterFour/1600~1699/1647.Minimum-Deletions-to-Make-Character-Frequencies-Unique.md" >}})Medium59.1%
1656Design an Ordered Stream[Go]({{< relref "/ChapterFour/1600~1699/1656.Design-an-Ordered-Stream.md" >}})Easy85.2%
1657Determine if Two Strings Are Close[Go]({{< relref "/ChapterFour/1600~1699/1657.Determine-if-Two-Strings-Are-Close.md" >}})Medium56.3%
1658Minimum Operations to Reduce X to Zero[Go]({{< relref "/ChapterFour/1600~1699/1658.Minimum-Operations-to-Reduce-X-to-Zero.md" >}})Medium37.6%
1674Minimum Moves to Make Array Complementary[Go]({{< relref "/ChapterFour/1600~1699/1674.Minimum-Moves-to-Make-Array-Complementary.md" >}})Medium38.7%
1679Max Number of K-Sum Pairs[Go]({{< relref "/ChapterFour/1600~1699/1679.Max-Number-of-K-Sum-Pairs.md" >}})Medium57.3%
1684Count the Number of Consistent Strings[Go]({{< relref "/ChapterFour/1600~1699/1684.Count-the-Number-of-Consistent-Strings.md" >}})Easy82.3%
1695Maximum Erasure Value[Go]({{< relref "/ChapterFour/1600~1699/1695.Maximum-Erasure-Value.md" >}})Medium57.6%
1742Maximum Number of Balls in a Box[Go]({{< relref "/ChapterFour/1700~1799/1742.Maximum-Number-of-Balls-in-a-Box.md" >}})Easy73.6%
1748Sum of Unique Elements[Go]({{< relref "/ChapterFour/1700~1799/1748.Sum-of-Unique-Elements.md" >}})Easy76.3%
1763Longest Nice Substring[Go]({{< relref "/ChapterFour/1700~1799/1763.Longest-Nice-Substring.md" >}})Easy61.5%
2043Simple Bank System[Go]({{< relref "/ChapterFour/2000~2099/2043.Simple-Bank-System.md" >}})Medium65.2%
2166Design Bitset[Go]({{< relref "/ChapterFour/2100~2199/2166.Design-Bitset.md" >}})Medium31.8%
2170Minimum Operations to Make the Array Alternating[Go]({{< relref "/ChapterFour/2100~2199/2170.Minimum-Operations-to-Make-the-Array-Alternating.md" >}})Medium33.2%
------------------------------------------------------------------------------------------------------------------------------------------------

<div style="display: flex;justify-content: space-between;align-items: center;"> <p><a href="https://books.halfrost.com/leetcode/ChapterTwo/Math/">⬅️上一页</a></p> <p><a href="https://books.halfrost.com/leetcode/ChapterTwo/Sorting/">下一页➡️</a></p> </div>