0001 | Two Sum | Go | Easy | O(n) | O(n) | | 49.7% |
0004 | Median of Two Sorted Arrays | Go | Hard | | | | 36.2% |
0011 | Container With Most Water | Go | Medium | O(n) | O(1) | | 54.0% |
0015 | 3Sum | Go | Medium | O(n^2) | O(n) | ❤️ | 32.6% |
0016 | 3Sum Closest | Go | Medium | O(n^2) | O(1) | ❤️ | 45.7% |
0018 | 4Sum | Go | Medium | O(n^3) | O(n^2) | ❤️ | 35.9% |
0026 | Remove Duplicates from Sorted Array | Go | Easy | O(n) | O(1) | | 51.6% |
0027 | Remove Element | Go | Easy | O(n) | O(1) | | 53.0% |
0031 | Next Permutation | Go | Medium | | | | 37.6% |
0033 | Search in Rotated Sorted Array | Go | Medium | | | | 39.0% |
0034 | Find First and Last Position of Element in Sorted Array | Go | Medium | | | | 41.9% |
0035 | Search Insert Position | Go | Easy | | | | 43.4% |
0036 | Valid Sudoku | Go | Medium | | | | 58.1% |
0037 | Sudoku Solver | Go | Hard | | | | 57.7% |
0039 | Combination Sum | Go | Medium | O(n log n) | O(n) | | 68.6% |
0040 | Combination Sum II | Go | Medium | O(n log n) | O(n) | | 53.4% |
0041 | First Missing Positive | Go | Hard | O(n) | O(n) | | 36.7% |
0042 | Trapping Rain Water | Go | Hard | O(n) | O(1) | ❤️ | 59.3% |
0045 | Jump Game II | Go | Medium | | | | 39.8% |
0046 | Permutations | Go | Medium | | | | 75.7% |
0047 | Permutations II | Go | Medium | | | | 57.4% |
0048 | Rotate Image | Go | Medium | O(n) | O(1) | | 71.0% |
0049 | Group Anagrams | Go | Medium | | | | 66.8% |
0051 | N-Queens | Go | Hard | | | | 64.2% |
0053 | Maximum Subarray | Go | Medium | O(n) | O(n) | | 50.2% |
0054 | Spiral Matrix | Go | Medium | O(n) | O(n^2) | | 45.0% |
0055 | Jump Game | Go | Medium | | | | 38.9% |
0056 | Merge Intervals | Go | Medium | O(n log n) | O(1) | | 46.2% |
0057 | Insert Interval | Go | Medium | O(n) | O(1) | | 39.0% |
0059 | Spiral Matrix II | Go | Medium | O(n) | O(n^2) | | 67.4% |
0063 | Unique Paths II | Go | Medium | O(n^2) | O(n^2) | | 39.4% |
0064 | Minimum Path Sum | Go | Medium | O(n^2) | O(n^2) | | 62.0% |
0066 | Plus One | Go | Easy | | | | 43.7% |
0073 | Set Matrix Zeroes | Go | Medium | | | | 51.3% |
0074 | Search a 2D Matrix | Go | Medium | | | | 47.7% |
0075 | Sort Colors | Go | Medium | O(n) | O(1) | ❤️ | 58.6% |
0078 | Subsets | Go | Medium | O(n^2) | O(n) | ❤️ | 74.9% |
0079 | Word Search | Go | Medium | O(n^2) | O(n^2) | ❤️ | 40.2% |
0080 | Remove Duplicates from Sorted Array II | Go | Medium | O(n) | O(1 | | 52.3% |
0081 | Search in Rotated Sorted Array II | Go | Medium | | | | 35.7% |
0084 | Largest Rectangle in Histogram | Go | Hard | O(n) | O(n) | ❤️ | 42.6% |
0088 | Merge Sorted Array | Go | Easy | O(n) | O(1) | ❤️ | 46.6% |
0090 | Subsets II | Go | Medium | O(n^2) | O(n) | ❤️ | 55.9% |
0105 | Construct Binary Tree from Preorder and Inorder Traversal | Go | Medium | | | | 61.6% |
0106 | Construct Binary Tree from Inorder and Postorder Traversal | Go | Medium | | | | 60.0% |
0108 | Convert Sorted Array to Binary Search Tree | Go | Easy | | | | 69.9% |
0118 | Pascal’s Triangle | Go | Easy | | | | 70.8% |
0119 | Pascal’s Triangle II | Go | Easy | | | | 60.8% |
0120 | Triangle | Go | Medium | O(n^2) | O(n) | | 54.5% |
0121 | Best Time to Buy and Sell Stock | Go | Easy | O(n) | O(1) | | 54.3% |
0122 | Best Time to Buy and Sell Stock II | Go | Medium | O(n) | O(1) | | 63.9% |
0128 | Longest Consecutive Sequence | Go | Medium | | | | 48.5% |
0130 | Surrounded Regions | Go | Medium | | | | 36.8% |
0135 | Candy | Go | Hard | | | | 41.0% |
0136 | Single Number | Go | Easy | | | | 70.7% |
0137 | Single Number II | Go | Medium | | | | 58.5% |
0150 | Evaluate Reverse Polish Notation | Go | Medium | | | | 45.8% |
0152 | Maximum Product Subarray | Go | Medium | O(n) | O(1) | | 34.9% |
0153 | Find Minimum in Rotated Sorted Array | Go | Medium | | | | 48.9% |
0154 | Find Minimum in Rotated Sorted Array II | Go | Hard | | | | 43.5% |
0162 | Find Peak Element | Go | Medium | | | | 46.0% |
0164 | Maximum Gap | Go | Hard | | | | 43.4% |
0167 | Two Sum II - Input Array Is Sorted | Go | Medium | O(n) | O(1) | | 60.0% |
0169 | Majority Element | Go | Easy | | | | 63.9% |
0174 | Dungeon Game | Go | Hard | | | | 37.5% |
0179 | Largest Number | Go | Medium | | | | 34.6% |
0189 | Rotate Array | Go | Medium | | | | 39.4% |
0198 | House Robber | Go | Medium | | | | 49.4% |
0200 | Number of Islands | Go | Medium | | | | 57.0% |
0204 | Count Primes | Go | Medium | | | | 33.1% |
0209 | Minimum Size Subarray Sum | Go | Medium | O(n) | O(1) | | 45.0% |
0212 | Word Search II | Go | Hard | | | | 36.4% |
0213 | House Robber II | Go | Medium | | | | 41.0% |
0215 | Kth Largest Element in an Array | Go | Medium | | | | 66.2% |
0216 | Combination Sum III | Go | Medium | O(n) | O(1) | ❤️ | 67.6% |
0217 | Contains Duplicate | Go | Easy | O(n) | O(n) | | 61.4% |
0218 | The Skyline Problem | Go | Hard | | | | 41.9% |
0219 | Contains Duplicate II | Go | Easy | O(n) | O(n) | | 42.6% |
0220 | Contains Duplicate III | Go | Hard | | | | 22.1% |
0228 | Summary Ranges | Go | Easy | | | | 47.2% |
0229 | Majority Element II | Go | Medium | | | | 45.1% |
0239 | Sliding Window Maximum | Go | Hard | | | | 46.3% |
0240 | Search a 2D Matrix II | Go | Medium | | | | 51.0% |
0260 | Single Number III | Go | Medium | | | | 67.7% |
0268 | Missing Number | Go | Easy | | | | 62.6% |
0274 | H-Index | Go | Medium | | | | 38.3% |
0275 | H-Index II | Go | Medium | | | | 37.5% |
0283 | Move Zeroes | Go | Easy | O(n) | O(1) | | 61.4% |
0284 | Peeking Iterator | Go | Medium | | | | 58.7% |
0287 | Find the Duplicate Number | Go | Medium | O(n) | O(1) | ❤️ | 59.1% |
0300 | Longest Increasing Subsequence | Go | Medium | | | | 52.2% |
0303 | Range Sum Query - Immutable | Go | Easy | | | | 59.5% |
0304 | Range Sum Query 2D - Immutable | Go | Medium | | | | 52.9% |
0307 | Range Sum Query - Mutable | Go | Medium | | | | 40.7% |
0309 | Best Time to Buy and Sell Stock with Cooldown | Go | Medium | | | | 56.2% |
0315 | Count of Smaller Numbers After Self | Go | Hard | | | | 42.6% |
0318 | Maximum Product of Word Lengths | Go | Medium | | | | 59.9% |
0322 | Coin Change | Go | Medium | | | | 42.1% |
0324 | Wiggle Sort II | Go | Medium | | | | 33.3% |
0327 | Count of Range Sum | Go | Hard | | | | 35.8% |
0329 | Longest Increasing Path in a Matrix | Go | Hard | | | | 52.4% |
0347 | Top K Frequent Elements | Go | Medium | | | | 64.2% |
0349 | Intersection of Two Arrays | Go | Easy | | | | 70.9% |
0350 | Intersection of Two Arrays II | Go | Easy | | | | 56.0% |
0354 | Russian Doll Envelopes | Go | Hard | | | | 37.9% |
0368 | Largest Divisible Subset | Go | Medium | | | | 41.6% |
0373 | Find K Pairs with Smallest Sums | Go | Medium | | | | 38.3% |
0376 | Wiggle Subsequence | Go | Medium | | | | 48.3% |
0377 | Combination Sum IV | Go | Medium | | | | 52.2% |
0378 | Kth Smallest Element in a Sorted Matrix | Go | Medium | | | | 61.8% |
0384 | Shuffle an Array | Go | Medium | | | | 57.8% |
0391 | Perfect Rectangle | Go | Hard | | | | 32.8% |
0393 | UTF-8 Validation | Go | Medium | | | | 45.1% |
0396 | Rotate Function | Go | Medium | | | | 41.1% |
0399 | Evaluate Division | Go | Medium | | | | 59.7% |
0410 | Split Array Largest Sum | Go | Hard | | | | 53.5% |
0413 | Arithmetic Slices | Go | Medium | | | | 65.1% |
0414 | Third Maximum Number | Go | Easy | | | | 33.2% |
0416 | Partition Equal Subset Sum | Go | Medium | | | | 46.3% |
0417 | Pacific Atlantic Water Flow | Go | Medium | | | | 54.4% |
0419 | Battleships in a Board | Go | Medium | | | | 74.8% |
0421 | Maximum XOR of Two Numbers in an Array | Go | Medium | | | | 54.0% |
0435 | Non-overlapping Intervals | Go | Medium | | | | 50.3% |
0436 | Find Right Interval | Go | Medium | | | | 50.8% |
0447 | Number of Boomerangs | Go | Medium | | | | 54.9% |
0448 | Find All Numbers Disappeared in an Array | Go | Easy | | | | 59.9% |
0453 | Minimum Moves to Equal Array Elements | Go | Medium | | | | 56.0% |
0454 | 4Sum II | Go | Medium | | | | 57.2% |
0455 | Assign Cookies | Go | Easy | | | | 49.9% |
0456 | 132 Pattern | Go | Medium | | | | 32.4% |
0457 | Circular Array Loop | Go | Medium | | | | 32.6% |
0462 | Minimum Moves to Equal Array Elements II | Go | Medium | | | | 60.0% |
0463 | Island Perimeter | Go | Easy | | | | 69.7% |
0473 | Matchsticks to Square | Go | Medium | | | | 40.2% |
0474 | Ones and Zeroes | Go | Medium | | | | 46.8% |
0475 | Heaters | Go | Medium | | | | 36.5% |
0477 | Total Hamming Distance | Go | Medium | | | | 52.2% |
0480 | Sliding Window Median | Go | Hard | | | | 41.1% |
0485 | Max Consecutive Ones | Go | Easy | | | | 56.6% |
0491 | Non-decreasing Subsequences | Go | Medium | | | | 60.2% |
0493 | Reverse Pairs | Go | Hard | | | | 30.9% |
0494 | Target Sum | Go | Medium | | | | 45.7% |
0495 | Teemo Attacking | Go | Easy | | | | 56.8% |
0496 | Next Greater Element I | Go | Easy | | | | 71.4% |
0497 | Random Point in Non-overlapping Rectangles | Go | Medium | | | | 39.4% |
0498 | Diagonal Traverse | Go | Medium | | | | 58.3% |
0500 | Keyboard Row | Go | Easy | | | | 69.6% |
0503 | Next Greater Element II | Go | Medium | | | | 63.2% |
0506 | Relative Ranks | Go | Easy | | | | 60.6% |
0518 | Coin Change II | Go | Medium | | | | 60.6% |
0523 | Continuous Subarray Sum | Go | Medium | | | | 28.5% |
0524 | Longest Word in Dictionary through Deleting | Go | Medium | | | | 51.0% |
0525 | Contiguous Array | Go | Medium | | | | 46.8% |
0526 | Beautiful Arrangement | Go | Medium | | | | 64.4% |
0528 | Random Pick with Weight | Go | Medium | | | | 46.1% |
0529 | Minesweeper | Go | Medium | | | | 65.7% |
0532 | K-diff Pairs in an Array | Go | Medium | O(n) | O(n) | | 41.2% |
0540 | Single Element in a Sorted Array | Go | Medium | | | | 59.1% |
0542 | 01 Matrix | Go | Medium | | | | 44.8% |
0554 | Brick Wall | Go | Medium | | | | 53.6% |
0560 | Subarray Sum Equals K | Go | Medium | | | | 43.7% |
0561 | Array Partition | Go | Easy | | | | 77.2% |
0566 | Reshape the Matrix | Go | Easy | O(n^2) | O(n^2) | | 62.9% |
0575 | Distribute Candies | Go | Easy | | | | 66.5% |
0581 | Shortest Unsorted Continuous Subarray | Go | Medium | | | | 36.4% |
0594 | Longest Harmonious Subsequence | Go | Easy | | | | 53.5% |
0598 | Range Addition II | Go | Easy | | | | 55.3% |
0599 | Minimum Index Sum of Two Lists | Go | Easy | | | | 53.4% |
0605 | Can Place Flowers | Go | Easy | | | | 32.8% |
0609 | Find Duplicate File in System | Go | Medium | | | | 67.7% |
0611 | Valid Triangle Number | Go | Medium | | | | 50.6% |
0622 | Design Circular Queue | Go | Medium | | | | 51.5% |
0628 | Maximum Product of Three Numbers | Go | Easy | O(n) | O(1) | | 45.9% |
0630 | Course Schedule III | Go | Hard | | | | 40.1% |
0632 | Smallest Range Covering Elements from K Lists | Go | Hard | | | | 61.0% |
0636 | Exclusive Time of Functions | Go | Medium | | | | 61.2% |
0638 | Shopping Offers | Go | Medium | | | | 53.3% |
0643 | Maximum Average Subarray I | Go | Easy | | | | 43.7% |
0645 | Set Mismatch | Go | Easy | | | | 42.7% |
0648 | Replace Words | Go | Medium | | | | 62.7% |
0658 | Find K Closest Elements | Go | Medium | | | | 46.8% |
0661 | Image Smoother | Go | Easy | | | | 55.4% |
0665 | Non-decreasing Array | Go | Medium | | | | 24.3% |
0667 | Beautiful Arrangement II | Go | Medium | | | | 59.8% |
0674 | Longest Continuous Increasing Subsequence | Go | Easy | | | | 49.3% |
0682 | Baseball Game | Go | Easy | | | | 74.3% |
0695 | Max Area of Island | Go | Medium | | | | 71.8% |
0697 | Degree of an Array | Go | Easy | | | | 56.0% |
0699 | Falling Squares | Go | Hard | | | | 44.7% |
0704 | Binary Search | Go | Easy | | | | 56.1% |
0705 | Design HashSet | Go | Easy | | | | 65.6% |
0706 | Design HashMap | Go | Easy | | | | 64.7% |
0710 | Random Pick with Blacklist | Go | Hard | | | | 33.5% |
0713 | Subarray Product Less Than K | Go | Medium | O(n) | O(1) | | 45.8% |
0714 | Best Time to Buy and Sell Stock with Transaction Fee | Go | Medium | O(n) | O(1) | | 65.2% |
0717 | 1-bit and 2-bit Characters | Go | Easy | | | | 45.7% |
0718 | Maximum Length of Repeated Subarray | Go | Medium | | | | 51.3% |
0719 | Find K-th Smallest Pair Distance | Go | Hard | | | | 36.7% |
0720 | Longest Word in Dictionary | Go | Medium | | | | 52.0% |
0721 | Accounts Merge | Go | Medium | | | | 56.3% |
0724 | Find Pivot Index | Go | Easy | | | | 54.7% |
0733 | Flood Fill | Go | Easy | | | | 62.0% |
0735 | Asteroid Collision | Go | Medium | | | | 44.4% |
0739 | Daily Temperatures | Go | Medium | | | | 66.3% |
0744 | Find Smallest Letter Greater Than Target | Go | Easy | | | | 45.8% |
0746 | Min Cost Climbing Stairs | Go | Easy | O(n) | O(1) | | 63.2% |
0747 | Largest Number At Least Twice of Others | Go | Easy | | | | 47.1% |
0748 | Shortest Completing Word | Go | Easy | | | | 59.3% |
0752 | Open the Lock | Go | Medium | | | | 55.6% |
0766 | Toeplitz Matrix | Go | Easy | O(n) | O(1) | | 68.6% |
0775 | Global and Local Inversions | Go | Medium | | | | 43.3% |
0778 | Swim in Rising Water | Go | Hard | | | | 59.8% |
0781 | Rabbits in Forest | Go | Medium | | | | 54.7% |
0786 | K-th Smallest Prime Fraction | Go | Medium | | | | 51.7% |
0794 | Valid Tic-Tac-Toe State | Go | Medium | | | | 35.1% |
0795 | Number of Subarrays with Bounded Maximum | Go | Medium | | | | 52.8% |
0803 | Bricks Falling When Hit | Go | Hard | | | | 34.4% |
0807 | Max Increase to Keep City Skyline | Go | Medium | | | | 85.9% |
0810 | Chalkboard XOR Game | Go | Hard | | | | 55.8% |
0811 | Subdomain Visit Count | Go | Medium | | | | 75.5% |
0812 | Largest Triangle Area | Go | Easy | | | | 59.9% |
0815 | Bus Routes | Go | Hard | | | | 45.6% |
0817 | Linked List Components | Go | Medium | | | | 57.7% |
0820 | Short Encoding of Words | Go | Medium | | | | 60.6% |
0821 | Shortest Distance to a Character | Go | Easy | | | | 71.3% |
0823 | Binary Trees With Factors | Go | Medium | | | | 49.7% |
0825 | Friends Of Appropriate Ages | Go | Medium | | | | 46.3% |
0826 | Most Profit Assigning Work | Go | Medium | | | | 44.9% |
0832 | Flipping an Image | Go | Easy | | | | 80.8% |
0839 | Similar String Groups | Go | Hard | | | | 48.0% |
0845 | Longest Mountain in Array | Go | Medium | | | | 40.2% |
0846 | Hand of Straights | Go | Medium | | | | 56.2% |
0850 | Rectangle Area II | Go | Hard | | | | 53.9% |
0851 | Loud and Rich | Go | Medium | | | | 58.4% |
0852 | Peak Index in a Mountain Array | Go | Medium | | | | 69.0% |
0853 | Car Fleet | Go | Medium | | | | 50.3% |
0862 | Shortest Subarray with Sum at Least K | Go | Hard | | | | 26.0% |
0864 | Shortest Path to Get All Keys | Go | Hard | | | | 45.6% |
0867 | Transpose Matrix | Go | Easy | O(n) | O(1) | | 64.3% |
0870 | Advantage Shuffle | Go | Medium | | | | 51.9% |
0874 | Walking Robot Simulation | Go | Medium | | | | 39.0% |
0875 | Koko Eating Bananas | Go | Medium | | | | 52.1% |
0877 | Stone Game | Go | Medium | | | | 69.7% |
0881 | Boats to Save People | Go | Medium | | | | 55.8% |
0885 | Spiral Matrix III | Go | Medium | | | | 73.5% |
0888 | Fair Candy Swap | Go | Easy | | | | 60.7% |
0890 | Find and Replace Pattern | Go | Medium | | | | 77.6% |
0891 | Sum of Subsequence Widths | Go | Hard | O(n log n) | O(1) | | 36.7% |
0892 | Surface Area of 3D Shapes | Go | Easy | | | | 64.0% |
0896 | Monotonic Array | Go | Easy | | | | 58.4% |
0898 | Bitwise ORs of Subarrays | Go | Medium | | | | 37.2% |
0904 | Fruit Into Baskets | Go | Medium | | | | 43.7% |
0907 | Sum of Subarray Minimums | Go | Medium | O(n) | O(n) | ❤️ | 35.8% |
0909 | Snakes and Ladders | Go | Medium | | | | 45.1% |
0910 | Smallest Range II | Go | Medium | | | | 35.2% |
0911 | Online Election | Go | Medium | | | | 52.2% |
0914 | X of a Kind in a Deck of Cards | Go | Easy | | | | 31.2% |
0916 | Word Subsets | Go | Medium | | | | 53.7% |
0918 | Maximum Sum Circular Subarray | Go | Medium | | | | 43.0% |
0922 | Sort Array By Parity II | Go | Easy | O(n) | O(1) | | 70.7% |
0923 | 3Sum With Multiplicity | Go | Medium | | | | 45.3% |
0924 | Minimize Malware Spread | Go | Hard | | | | 42.1% |
0927 | Three Equal Parts | Go | Hard | | | | 39.6% |
0928 | Minimize Malware Spread II | Go | Hard | | | | 42.8% |
0930 | Binary Subarrays With Sum | Go | Medium | | | | 52.2% |
0942 | DI String Match | Go | Easy | | | | 77.3% |
0946 | Validate Stack Sequences | Go | Medium | | | | 67.7% |
0952 | Largest Component Size by Common Factor | Go | Hard | | | | 40.0% |
0953 | Verifying an Alien Dictionary | Go | Easy | | | | 54.5% |
0961 | N-Repeated Element in Size 2N Array | Go | Easy | | | | 76.1% |
0966 | Vowel Spellchecker | Go | Medium | | | | 51.4% |
0969 | Pancake Sorting | Go | Medium | O(n) | O(1) | ❤️ | 70.1% |
0973 | K Closest Points to Origin | Go | Medium | | | | 65.7% |
0976 | Largest Perimeter Triangle | Go | Easy | | | | 54.7% |
0977 | Squares of a Sorted Array | Go | Easy | O(n) | O(1) | | 71.9% |
0978 | Longest Turbulent Subarray | Go | Medium | | | | 47.2% |
0980 | Unique Paths III | Go | Hard | | | | 81.7% |
0985 | Sum of Even Numbers After Queries | Go | Medium | | | | 68.1% |
0986 | Interval List Intersections | Go | Medium | | | | 71.3% |
0989 | Add to Array-Form of Integer | Go | Easy | | | | 47.1% |
0990 | Satisfiability of Equality Equations | Go | Medium | | | | 50.5% |
0992 | Subarrays with K Different Integers | Go | Hard | | | | 54.6% |
0995 | Minimum Number of K Consecutive Bit Flips | Go | Hard | | | | 51.2% |
0996 | Number of Squareful Arrays | Go | Hard | | | | 49.2% |
0997 | Find the Town Judge | Go | Easy | | | | 49.5% |
0999 | Available Captures for Rook | Go | Easy | | | | 68.2% |
1002 | Find Common Characters | Go | Easy | | | | 68.5% |
1004 | Max Consecutive Ones III | Go | Medium | | | | 63.2% |
1005 | Maximize Sum Of Array After K Negations | Go | Easy | | | | 50.8% |
1010 | Pairs of Songs With Total Durations Divisible by 60 | Go | Medium | | | | 52.8% |
1011 | Capacity To Ship Packages Within D Days | Go | Medium | | | | 67.7% |
1018 | Binary Prefix Divisible By 5 | Go | Easy | | | | 46.9% |
1019 | Next Greater Node In Linked List | Go | Medium | | | | 59.9% |
1020 | Number of Enclaves | Go | Medium | | | | 65.6% |
1030 | Matrix Cells in Distance Order | Go | Easy | | | | 69.7% |
1034 | Coloring A Border | Go | Medium | | | | 49.2% |
1037 | Valid Boomerang | Go | Easy | | | | 37.0% |
1040 | Moving Stones Until Consecutive II | Go | Medium | | | | 55.9% |
1048 | Longest String Chain | Go | Medium | | | | 59.3% |
1049 | Last Stone Weight II | Go | Medium | | | | 53.2% |
1051 | Height Checker | Go | Easy | | | | 75.6% |
1052 | Grumpy Bookstore Owner | Go | Medium | | | | 57.1% |
1054 | Distant Barcodes | Go | Medium | | | | 45.9% |
1073 | Adding Two Negabinary Numbers | Go | Medium | | | | 36.5% |
1074 | Number of Submatrices That Sum to Target | Go | Hard | | | | 69.5% |
1089 | Duplicate Zeros | Go | Easy | | | | 51.5% |
1091 | Shortest Path in Binary Matrix | Go | Medium | | | | 44.7% |
1093 | Statistics from a Large Sample | Go | Medium | | | | 43.5% |
1105 | Filling Bookcase Shelves | Go | Medium | | | | 59.3% |
1122 | Relative Sort Array | Go | Easy | | | | 68.6% |
1128 | Number of Equivalent Domino Pairs | Go | Easy | | | | 47.1% |
1157 | Online Majority Element In Subarray | Go | Hard | | | | 41.8% |
1160 | Find Words That Can Be Formed by Characters | Go | Easy | | | | 67.5% |
1170 | Compare Strings by Frequency of the Smallest Character | Go | Medium | | | | 61.5% |
1178 | Number of Valid Words for Each Puzzle | Go | Hard | | | | 46.3% |
1184 | Distance Between Bus Stops | Go | Easy | | | | 54.0% |
1200 | Minimum Absolute Difference | Go | Easy | | | | 69.6% |
1207 | Unique Number of Occurrences | Go | Easy | | | | 73.5% |
1217 | Minimum Cost to Move Chips to The Same Position | Go | Easy | | | | 71.9% |
1232 | Check If It Is a Straight Line | Go | Easy | | | | 40.3% |
1235 | Maximum Profit in Job Scheduling | Go | Hard | | | | 53.4% |
1239 | Maximum Length of a Concatenated String with Unique Characters | Go | Medium | | | | 52.2% |
1252 | Cells with Odd Values in a Matrix | Go | Easy | | | | 78.5% |
1254 | Number of Closed Islands | Go | Medium | | | | 66.9% |
1260 | Shift 2D Grid | Go | Easy | | | | 67.8% |
1266 | Minimum Time Visiting All Points | Go | Easy | | | | 79.1% |
1268 | Search Suggestions System | Go | Medium | | | | 66.2% |
1275 | Find Winner on a Tic Tac Toe Game | Go | Easy | | | | 54.2% |
1283 | Find the Smallest Divisor Given a Threshold | Go | Medium | | | | 56.2% |
1287 | Element Appearing More Than 25% In Sorted Array | Go | Easy | | | | 59.4% |
1293 | Shortest Path in a Grid with Obstacles Elimination | Go | Hard | | | | 45.3% |
1295 | Find Numbers with Even Number of Digits | Go | Easy | | | | 77.0% |
1296 | Divide Array in Sets of K Consecutive Numbers | Go | Medium | | | | 56.5% |
1299 | Replace Elements with Greatest Element on Right Side | Go | Easy | | | | 73.3% |
1300 | Sum of Mutated Array Closest to Target | Go | Medium | | | | 43.6% |
1304 | Find N Unique Integers Sum up to Zero | Go | Easy | | | | 76.9% |
1306 | Jump Game III | Go | Medium | | | | 63.5% |
1310 | XOR Queries of a Subarray | Go | Medium | | | | 72.3% |
1313 | Decompress Run-Length Encoded List | Go | Easy | | | | 85.8% |
1329 | Sort the Matrix Diagonally | Go | Medium | | | | 83.3% |
1337 | The K Weakest Rows in a Matrix | Go | Easy | | | | 72.1% |
1353 | Maximum Number of Events That Can Be Attended | Go | Medium | | | | 32.5% |
1380 | Lucky Numbers in a Matrix | Go | Easy | | | | 70.7% |
1383 | Maximum Performance of a Team | Go | Hard | | | | 48.5% |
1385 | Find the Distance Value Between Two Arrays | Go | Easy | | | | 66.6% |
1389 | Create Target Array in the Given Order | Go | Easy | | | | 85.8% |
1423 | Maximum Points You Can Obtain from Cards | Go | Medium | | | | 52.2% |
1437 | Check If All 1’s Are at Least Length K Places Away | Go | Easy | | | | 58.7% |
1438 | Longest Continuous Subarray With Absolute Diff Less Than or Equal to Limit | Go | Medium | | | | 48.3% |
1439 | Find the Kth Smallest Sum of a Matrix With Sorted Rows | Go | Hard | | | | 61.4% |
1442 | Count Triplets That Can Form Two Arrays of Equal XOR | Go | Medium | | | | 76.1% |
1463 | Cherry Pickup II | Go | Hard | | | | 69.5% |
1464 | Maximum Product of Two Elements in an Array | Go | Easy | | | | 80.0% |
1465 | Maximum Area of a Piece of Cake After Horizontal and Vertical Cuts | Go | Medium | | | | 40.9% |
1470 | Shuffle the Array | Go | Easy | | | | 89.0% |
1480 | Running Sum of 1d Array | Go | Easy | | | | 87.4% |
1482 | Minimum Number of Days to Make m Bouquets | Go | Medium | | | | 54.0% |
1512 | Number of Good Pairs | Go | Easy | | | | 88.2% |
1539 | Kth Missing Positive Number | Go | Easy | | | | 58.6% |
1572 | Matrix Diagonal Sum | Go | Easy | | | | 80.3% |
1608 | Special Array With X Elements Greater Than or Equal X | Go | Easy | | | | 60.5% |
1619 | Mean of Array After Removing Some Elements | Go | Easy | | | | 65.8% |
1629 | Slowest Key | Go | Easy | | | | 59.2% |
1631 | Path With Minimum Effort | Go | Medium | | | | 55.7% |
1636 | Sort Array by Increasing Frequency | Go | Easy | | | | 69.5% |
1640 | Check Array Formation Through Concatenation | Go | Easy | | | | 56.2% |
1642 | Furthest Building You Can Reach | Go | Medium | | | | 48.3% |
1646 | Get Maximum in Generated Array | Go | Easy | | | | 50.2% |
1648 | Sell Diminishing-Valued Colored Balls | Go | Medium | | | | 30.4% |
1649 | Create Sorted Array through Instructions | Go | Hard | | | | 37.5% |
1652 | Defuse the Bomb | Go | Easy | | | | 62.4% |
1654 | Minimum Jumps to Reach Home | Go | Medium | | | | 29.1% |
1655 | Distribute Repeating Integers | Go | Hard | | | | 39.3% |
1656 | Design an Ordered Stream | Go | Easy | | | | 85.2% |
1658 | Minimum Operations to Reduce X to Zero | Go | Medium | | | | 37.6% |
1662 | Check If Two String Arrays are Equivalent | Go | Easy | | | | 83.5% |
1664 | Ways to Make a Fair Array | Go | Medium | | | | 63.3% |
1665 | Minimum Initial Energy to Finish Tasks | Go | Hard | | | | 56.4% |
1670 | Design Front Middle Back Queue | Go | Medium | | | | 57.2% |
1672 | Richest Customer Wealth | Go | Easy | | | | 87.9% |
1673 | Find the Most Competitive Subsequence | Go | Medium | | | | 49.3% |
1674 | Minimum Moves to Make Array Complementary | Go | Medium | | | | 38.7% |
1675 | Minimize Deviation in Array | Go | Hard | | | | 54.6% |
1679 | Max Number of K-Sum Pairs | Go | Medium | | | | 57.3% |
1681 | Minimum Incompatibility | Go | Hard | | | | 37.8% |
1684 | Count the Number of Consistent Strings | Go | Easy | | | | 82.3% |
1685 | Sum of Absolute Differences in a Sorted Array | Go | Medium | | | | 63.5% |
1690 | Stone Game VII | Go | Medium | | | | 58.1% |
1691 | Maximum Height by Stacking Cuboids | Go | Hard | | | | 54.6% |
1695 | Maximum Erasure Value | Go | Medium | | | | 57.6% |
1696 | Jump Game VI | Go | Medium | | | | 46.1% |
1700 | Number of Students Unable to Eat Lunch | Go | Easy | | | | 68.8% |
1705 | Maximum Number of Eaten Apples | Go | Medium | | | | 38.0% |
1710 | Maximum Units on a Truck | Go | Easy | | | | 73.8% |
1720 | Decode XORed Array | Go | Easy | | | | 85.8% |
1725 | Number Of Rectangles That Can Form The Largest Square | Go | Easy | | | | 78.6% |
1732 | Find the Highest Altitude | Go | Easy | | | | 78.9% |
1734 | Decode XORed Permutation | Go | Medium | | | | 63.0% |
1738 | Find Kth Largest XOR Coordinate Value | Go | Medium | | | | 61.0% |
1744 | Can You Eat Your Favorite Candy on Your Favorite Day? | Go | Medium | | | | 33.1% |
1748 | Sum of Unique Elements | Go | Easy | | | | 76.3% |
1752 | Check if Array Is Sorted and Rotated | Go | Easy | | | | 50.1% |
1816 | Truncate Sentence | Go | Easy | | | | 83.1% |
1818 | Minimum Absolute Sum Difference | Go | Medium | | | | 30.4% |
1846 | Maximum Element After Decreasing and Rearranging | Go | Medium | | | | 58.9% |
1877 | Minimize Maximum Pair Sum in Array | Go | Medium | | | | 79.9% |
1984 | Minimum Difference Between Highest and Lowest of K Scores | Go | Easy | | | | 54.5% |
2021 | Brightest Position on Street | Go | Medium | | | | 62.1% |
2022 | Convert 1D Array Into 2D Array | Go | Easy | | | | 59.1% |
2037 | Minimum Number of Moves to Seat Everyone | Go | Easy | | | | 82.1% |
2043 | Simple Bank System | Go | Medium | | | | 65.2% |
2164 | Sort Even and Odd Indices Independently | Go | Easy | | | | 64.9% |
2166 | Design Bitset | Go | Medium | | | | 31.8% |
2170 | Minimum Operations to Make the Array Alternating | Go | Medium | | | | 33.2% |
2171 | Removing Minimum Number of Magic Beans | Go | Medium | | | | 42.1% |
2183 | Count Array Pairs Divisible by K | Go | Hard | | | | 28.3% |
———— | ——————————————————- | ——- | —————- | ————— | ————- | ————- | ————- |