Chore: Add headers to all the files (#54)

## Description
- Add headers to all the CSV files

## Script used
```py
import csv
import os

# Set the path of the folder containing the CSV files
folder_path = "./LeetCode-Questions-CompanyWise"
headers = [
    "ID",
    "Title",
    "Acceptance",
    "Difficulty",
    "Frequency",
    "Leetcode Question Link",
]

# Loop through all the CSV files in the folder
for file_name in os.listdir(folder_path):
    if file_name.endswith(".csv"):
        # Read the CSV file into a list of rows
        file_path = os.path.join(folder_path, file_name)
        with open(file_path, "r") as f:
            reader = csv.reader(f)
            rows = list(reader)

        has_headers = False
        if len(rows) > 0 and rows[0] == headers:
            has_headers = True

        if not has_headers:
            rows.insert(0, headers)

            # Write the list of rows back to the CSV file
            with open(file_path, "w", newline="") as f:
                writer = csv.writer(f)
                writer.writerows(rows)

```
This commit is contained in:
Krishna Kumar Dey
2023-04-01 11:07:49 +05:30
committed by GitHub
parent 0aeadbd612
commit fb5f78b55e
534 changed files with 20291 additions and 19757 deletions

View File

@@ -1,112 +1,113 @@
42,Trapping Rain Water,48.9%,Hard,3.4017115728252114, https://leetcode.com/problems/trapping-rain-water
1086,High Five,79.7%,Easy,3.081613006775713, https://leetcode.com/problems/high-five
209,Minimum Size Subarray Sum,38.2%,Medium,2.761514440726214, https://leetcode.com/problems/minimum-size-subarray-sum
289,Game of Life,54.5%,Medium,2.4414158746767156, https://leetcode.com/problems/game-of-life
4,Median of Two Sorted Arrays,29.6%,Hard,2.2841074960153698, https://leetcode.com/problems/median-of-two-sorted-arrays
688,Knight Probability in Chessboard,48.9%,Medium,2.217128926271222, https://leetcode.com/problems/knight-probability-in-chessboard
387,First Unique Character in a String,53.4%,Easy,2.12805942959263, https://leetcode.com/problems/first-unique-character-in-a-string
592,Fraction Addition and Subtraction,49.0%,Medium,1.8162790864023735, https://leetcode.com/problems/fraction-addition-and-subtraction
443,String Compression,41.3%,Easy,1.7567223362906532, https://leetcode.com/problems/string-compression
862,Shortest Subarray with Sum at Least K,24.6%,Hard,1.7383767819805511, https://leetcode.com/problems/shortest-subarray-with-sum-at-least-k
166,Fraction to Recurring Decimal,21.6%,Medium,1.719216136548627, https://leetcode.com/problems/fraction-to-recurring-decimal
722,Remove Comments,34.6%,Medium,1.6355405363367377, https://leetcode.com/problems/remove-comments
238,Product of Array Except Self,60.1%,Medium,1.5653986776487465, https://leetcode.com/problems/product-of-array-except-self
70,Climbing Stairs,47.8%,Easy,1.515339965084781, https://leetcode.com/problems/climbing-stairs
49,Group Anagrams,56.9%,Medium,1.514137260931213, https://leetcode.com/problems/group-anagrams
780,Reaching Points,29.4%,Hard,1.4774527855096036, https://leetcode.com/problems/reaching-points
706,Design HashMap,61.3%,Easy,1.4405011789563176, https://leetcode.com/problems/design-hashmap
121,Best Time to Buy and Sell Stock,50.5%,Easy,1.343547532072845, https://leetcode.com/problems/best-time-to-buy-and-sell-stock
1041,Robot Bounded In Circle,49.6%,Medium,1.3318656536208857, https://leetcode.com/problems/robot-bounded-in-circle
1,Two Sum,45.6%,Easy,1.0889331084185998, https://leetcode.com/problems/two-sum
11,Container With Most Water,50.8%,Medium,0.8565164282104613, https://leetcode.com/problems/container-with-most-water
8,String to Integer (atoi),15.4%,Medium,0.8331114806091768, https://leetcode.com/problems/string-to-integer-atoi
657,Robot Return to Origin,73.5%,Easy,0.7562359758559519, https://leetcode.com/problems/robot-return-to-origin
1163,Last Substring in Lexicographical Order,33.9%,Hard,0.7261919753374027, https://leetcode.com/problems/last-substring-in-lexicographical-order
64,Minimum Path Sum,54.5%,Medium,0.6731263364629722, https://leetcode.com/problems/minimum-path-sum
146,LRU Cache,33.2%,Medium,0.6099535003338225, https://leetcode.com/problems/lru-cache
153,Find Minimum in Rotated Sorted Array,45.1%,Medium,0.552467601857292, https://leetcode.com/problems/find-minimum-in-rotated-sorted-array
524,Longest Word in Dictionary through Deleting,48.4%,Medium,0.5380680817633897, https://leetcode.com/problems/longest-word-in-dictionary-through-deleting
91,Decode Ways,24.7%,Medium,0.5068067838189668, https://leetcode.com/problems/decode-ways
532,K-diff Pairs in an Array,31.6%,Easy,0.4524148616095762, https://leetcode.com/problems/k-diff-pairs-in-an-array
33,Search in Rotated Sorted Array,34.5%,Medium,0.43615506649398705, https://leetcode.com/problems/search-in-rotated-sorted-array
322,Coin Change,35.5%,Medium,0.42789160115933317, https://leetcode.com/problems/coin-change
887,Super Egg Drop,27.1%,Hard,0.37614858779077814, https://leetcode.com/problems/super-egg-drop
53,Maximum Subarray,46.5%,Easy,0.3543183348432278, https://leetcode.com/problems/maximum-subarray
54,Spiral Matrix,34.1%,Medium,0.35306273805914157, https://leetcode.com/problems/spiral-matrix
1010,Pairs of Songs With Total Durations Divisible by 60,47.4%,Easy,0.3251259020780217, https://leetcode.com/problems/pairs-of-songs-with-total-durations-divisible-by-60
942,DI String Match,72.6%,Easy,0.30356511862478397, https://leetcode.com/problems/di-string-match
215,Kth Largest Element in an Array,55.4%,Medium,0.30223837022598843, https://leetcode.com/problems/kth-largest-element-in-an-array
200,Number of Islands,46.8%,Medium,0.27691676627418055, https://leetcode.com/problems/number-of-islands
218,The Skyline Problem,34.6%,Hard,0.27469487692496974, https://leetcode.com/problems/the-skyline-problem
141,Linked List Cycle,41.1%,Easy,0.27449284203401514, https://leetcode.com/problems/linked-list-cycle
122,Best Time to Buy and Sell Stock II,57.0%,Easy,0.2648683639779438, https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii
119,Pascal's Triangle II,49.0%,Easy,0.26169674611472327, https://leetcode.com/problems/pascals-triangle-ii
44,Wildcard Matching,24.7%,Hard,0.2463964485679353, https://leetcode.com/problems/wildcard-matching
240,Search a 2D Matrix II,43.2%,Medium,0.24218097481422138, https://leetcode.com/problems/search-a-2d-matrix-ii
326,Power of Three,42.1%,Easy,0.2330133408255935, https://leetcode.com/problems/power-of-three
992,Subarrays with K Different Integers,48.6%,Hard,0.2115783451497167, https://leetcode.com/problems/subarrays-with-k-different-integers
560,Subarray Sum Equals K,43.9%,Medium,0.19073820122876284, https://leetcode.com/problems/subarray-sum-equals-k
206,Reverse Linked List,62.5%,Easy,0.1737441239828363, https://leetcode.com/problems/reverse-linked-list
344,Reverse String,68.5%,Easy,0.16907996884887766, https://leetcode.com/problems/reverse-string
3,Longest Substring Without Repeating Characters,30.4%,Medium,0.15840625330250555, https://leetcode.com/problems/longest-substring-without-repeating-characters
155,Min Stack,44.5%,Easy,0.15817175770099312, https://leetcode.com/problems/min-stack
332,Reconstruct Itinerary,36.7%,Medium,0.15671959735502852, https://leetcode.com/problems/reconstruct-itinerary
931,Minimum Falling Path Sum,62.5%,Medium,0.1563727956152988, https://leetcode.com/problems/minimum-falling-path-sum
242,Valid Anagram,56.9%,Easy,0.13963976683590715, https://leetcode.com/problems/valid-anagram
56,Merge Intervals,39.3%,Medium,0.13713421800838543, https://leetcode.com/problems/merge-intervals
62,Unique Paths,54.1%,Medium,0.1311257686834479, https://leetcode.com/problems/unique-paths
460,LFU Cache,34.2%,Hard,0.11848160362052347, https://leetcode.com/problems/lfu-cache
72,Edit Distance,44.8%,Hard,0.11629970881467097, https://leetcode.com/problems/edit-distance
295,Find Median from Data Stream,44.3%,Hard,0.10502147513923703, https://leetcode.com/problems/find-median-from-data-stream
46,Permutations,63.5%,Medium,0.10041538372599258, https://leetcode.com/problems/permutations
1051,Height Checker,71.1%,Easy,0.09876441467241241, https://leetcode.com/problems/height-checker
1395,Count Number of Teams,82.0%,Medium,0.09817811071565465, https://leetcode.com/problems/count-number-of-teams
76,Minimum Window Substring,34.6%,Hard,0.09532438646867135, https://leetcode.com/problems/minimum-window-substring
720,Longest Word in Dictionary,48.2%,Easy,0.09362342046209744, https://leetcode.com/problems/longest-word-in-dictionary
836,Rectangle Overlap,48.6%,Easy,0.09358079943969791, https://leetcode.com/problems/rectangle-overlap
647,Palindromic Substrings,60.6%,Medium,0.08992575300574686, https://leetcode.com/problems/palindromic-substrings
78,Subsets,62.0%,Medium,0.08834203894021862, https://leetcode.com/problems/subsets
939,Minimum Area Rectangle,51.8%,Medium,0.08361414004113359, https://leetcode.com/problems/minimum-area-rectangle
724,Find Pivot Index,44.0%,Easy,0.08357684789821086, https://leetcode.com/problems/find-pivot-index
118,Pascal's Triangle,52.5%,Easy,0.07970401164997687, https://leetcode.com/problems/pascals-triangle
547,Friend Circles,58.6%,Medium,0.07408600065076033, https://leetcode.com/problems/friend-circles
13,Roman to Integer,55.7%,Easy,0.067239661116769, https://leetcode.com/problems/roman-to-integer
588,Design In-Memory File System,45.9%,Hard,0.05841076215641451, https://leetcode.com/problems/design-in-memory-file-system
104,Maximum Depth of Binary Tree,66.0%,Easy,0.05499247412856504, https://leetcode.com/problems/maximum-depth-of-binary-tree
15,3Sum,26.8%,Medium,0.05357467464947331, https://leetcode.com/problems/3sum
120,Triangle,44.2%,Medium,0.05192600557601006, https://leetcode.com/problems/triangle
99,Recover Binary Search Tree,39.7%,Hard,0.051264071283762605, https://leetcode.com/problems/recover-binary-search-tree
445,Add Two Numbers II,54.5%,Medium,0.04843561709959499, https://leetcode.com/problems/add-two-numbers-ii
19,Remove Nth Node From End of List,35.2%,Medium,0.048122350207849794, https://leetcode.com/problems/remove-nth-node-from-end-of-list
20,Valid Parentheses,39.0%,Easy,0.045585204865984434, https://leetcode.com/problems/valid-parentheses
283,Move Zeroes,57.8%,Easy,0.04519585811312136, https://leetcode.com/problems/move-zeroes
204,Count Primes,31.5%,Easy,0.04340205577484725, https://leetcode.com/problems/count-primes
1219,Path with Maximum Gold,65.1%,Medium,0.04111576039097048, https://leetcode.com/problems/path-with-maximum-gold
993,Cousins in Binary Tree,52.0%,Easy,0.03876454345024432, https://leetcode.com/problems/cousins-in-binary-tree
380,Insert Delete GetRandom O(1),47.5%,Medium,0.038717635350707984, https://leetcode.com/problems/insert-delete-getrandom-o1
317,Shortest Distance from All Buildings,41.4%,Hard,0.03795522000043556, https://leetcode.com/problems/shortest-distance-from-all-buildings
50,Pow(x;n),30.3%,Medium,0.034465967879243095, https://leetcode.com/problems/powx-n
167,Two Sum II - Input array is sorted,54.1%,Easy,0.03393376616898467, https://leetcode.com/problems/two-sum-ii-input-array-is-sorted
198,House Robber,42.0%,Easy,0.033320991026093004, https://leetcode.com/problems/house-robber
237,Delete Node in a Linked List,63.8%,Easy,0.031728549820175866, https://leetcode.com/problems/delete-node-in-a-linked-list
16,3Sum Closest,46.0%,Medium,0.02976964023166436, https://leetcode.com/problems/3sum-closest
98,Validate Binary Search Tree,27.8%,Medium,0.026187123416340663, https://leetcode.com/problems/validate-binary-search-tree
23,Merge k Sorted Lists,40.2%,Hard,0.0250564321052577, https://leetcode.com/problems/merge-k-sorted-lists
1209,Remove All Adjacent Duplicates in String II,56.9%,Medium,0.02324334737232728, https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string-ii
39,Combination Sum,56.1%,Medium,0.02267028230338623, https://leetcode.com/problems/combination-sum
739,Daily Temperatures,63.3%,Medium,0.022433642692117093, https://leetcode.com/problems/daily-temperatures
207,Course Schedule,43.1%,Medium,0.019709926055136454, https://leetcode.com/problems/course-schedule
88,Merge Sorted Array,39.4%,Easy,0.018667009593356397, https://leetcode.com/problems/merge-sorted-array
438,Find All Anagrams in a String,43.3%,Medium,0.01819334596120571, https://leetcode.com/problems/find-all-anagrams-in-a-string
253,Meeting Rooms II,45.7%,Medium,0.018087309810579388, https://leetcode.com/problems/meeting-rooms-ii
17,Letter Combinations of a Phone Number,46.8%,Medium,0.017492519932499718, https://leetcode.com/problems/letter-combinations-of-a-phone-number
876,Middle of the Linked List,68.4%,Easy,0.01707497375257815, https://leetcode.com/problems/middle-of-the-linked-list
628,Maximum Product of Three Numbers,47.1%,Easy,0.016529301951210565, https://leetcode.com/problems/maximum-product-of-three-numbers
189,Rotate Array,34.7%,Easy,0.016022774188122292, https://leetcode.com/problems/rotate-array
160,Intersection of Two Linked Lists,40.6%,Easy,0.010994491398666248, https://leetcode.com/problems/intersection-of-two-linked-lists
63,Unique Paths II,34.6%,Medium,0.008712753874961187, https://leetcode.com/problems/unique-paths-ii
347,Top K Frequent Elements,61.2%,Medium,0.005929457040438874, https://leetcode.com/problems/top-k-frequent-elements
973,K Closest Points to Origin,63.8%,Medium,0.005773688094426333, https://leetcode.com/problems/k-closest-points-to-origin
1109,Corporate Flight Bookings,52.8%,Medium,0, https://leetcode.com/problems/corporate-flight-bookings
1116,Print Zero Even Odd,56.0%,Medium,0, https://leetcode.com/problems/print-zero-even-odd
1427,Perform String Shifts,53.1%,Easy,0, https://leetcode.com/problems/perform-string-shifts
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
42,Trapping Rain Water,48.9%,Hard,3.4017115728252114, https://leetcode.com/problems/trapping-rain-water
1086,High Five,79.7%,Easy,3.081613006775713, https://leetcode.com/problems/high-five
209,Minimum Size Subarray Sum,38.2%,Medium,2.761514440726214, https://leetcode.com/problems/minimum-size-subarray-sum
289,Game of Life,54.5%,Medium,2.4414158746767156, https://leetcode.com/problems/game-of-life
4,Median of Two Sorted Arrays,29.6%,Hard,2.2841074960153698, https://leetcode.com/problems/median-of-two-sorted-arrays
688,Knight Probability in Chessboard,48.9%,Medium,2.217128926271222, https://leetcode.com/problems/knight-probability-in-chessboard
387,First Unique Character in a String,53.4%,Easy,2.12805942959263, https://leetcode.com/problems/first-unique-character-in-a-string
592,Fraction Addition and Subtraction,49.0%,Medium,1.8162790864023735, https://leetcode.com/problems/fraction-addition-and-subtraction
443,String Compression,41.3%,Easy,1.7567223362906532, https://leetcode.com/problems/string-compression
862,Shortest Subarray with Sum at Least K,24.6%,Hard,1.7383767819805511, https://leetcode.com/problems/shortest-subarray-with-sum-at-least-k
166,Fraction to Recurring Decimal,21.6%,Medium,1.719216136548627, https://leetcode.com/problems/fraction-to-recurring-decimal
722,Remove Comments,34.6%,Medium,1.6355405363367377, https://leetcode.com/problems/remove-comments
238,Product of Array Except Self,60.1%,Medium,1.5653986776487465, https://leetcode.com/problems/product-of-array-except-self
70,Climbing Stairs,47.8%,Easy,1.515339965084781, https://leetcode.com/problems/climbing-stairs
49,Group Anagrams,56.9%,Medium,1.514137260931213, https://leetcode.com/problems/group-anagrams
780,Reaching Points,29.4%,Hard,1.4774527855096036, https://leetcode.com/problems/reaching-points
706,Design HashMap,61.3%,Easy,1.4405011789563176, https://leetcode.com/problems/design-hashmap
121,Best Time to Buy and Sell Stock,50.5%,Easy,1.343547532072845, https://leetcode.com/problems/best-time-to-buy-and-sell-stock
1041,Robot Bounded In Circle,49.6%,Medium,1.3318656536208857, https://leetcode.com/problems/robot-bounded-in-circle
1,Two Sum,45.6%,Easy,1.0889331084185998, https://leetcode.com/problems/two-sum
11,Container With Most Water,50.8%,Medium,0.8565164282104613, https://leetcode.com/problems/container-with-most-water
8,String to Integer (atoi),15.4%,Medium,0.8331114806091768, https://leetcode.com/problems/string-to-integer-atoi
657,Robot Return to Origin,73.5%,Easy,0.7562359758559519, https://leetcode.com/problems/robot-return-to-origin
1163,Last Substring in Lexicographical Order,33.9%,Hard,0.7261919753374027, https://leetcode.com/problems/last-substring-in-lexicographical-order
64,Minimum Path Sum,54.5%,Medium,0.6731263364629722, https://leetcode.com/problems/minimum-path-sum
146,LRU Cache,33.2%,Medium,0.6099535003338225, https://leetcode.com/problems/lru-cache
153,Find Minimum in Rotated Sorted Array,45.1%,Medium,0.552467601857292, https://leetcode.com/problems/find-minimum-in-rotated-sorted-array
524,Longest Word in Dictionary through Deleting,48.4%,Medium,0.5380680817633897, https://leetcode.com/problems/longest-word-in-dictionary-through-deleting
91,Decode Ways,24.7%,Medium,0.5068067838189668, https://leetcode.com/problems/decode-ways
532,K-diff Pairs in an Array,31.6%,Easy,0.4524148616095762, https://leetcode.com/problems/k-diff-pairs-in-an-array
33,Search in Rotated Sorted Array,34.5%,Medium,0.43615506649398705, https://leetcode.com/problems/search-in-rotated-sorted-array
322,Coin Change,35.5%,Medium,0.42789160115933317, https://leetcode.com/problems/coin-change
887,Super Egg Drop,27.1%,Hard,0.37614858779077814, https://leetcode.com/problems/super-egg-drop
53,Maximum Subarray,46.5%,Easy,0.3543183348432278, https://leetcode.com/problems/maximum-subarray
54,Spiral Matrix,34.1%,Medium,0.35306273805914157, https://leetcode.com/problems/spiral-matrix
1010,Pairs of Songs With Total Durations Divisible by 60,47.4%,Easy,0.3251259020780217, https://leetcode.com/problems/pairs-of-songs-with-total-durations-divisible-by-60
942,DI String Match,72.6%,Easy,0.30356511862478397, https://leetcode.com/problems/di-string-match
215,Kth Largest Element in an Array,55.4%,Medium,0.30223837022598843, https://leetcode.com/problems/kth-largest-element-in-an-array
200,Number of Islands,46.8%,Medium,0.27691676627418055, https://leetcode.com/problems/number-of-islands
218,The Skyline Problem,34.6%,Hard,0.27469487692496974, https://leetcode.com/problems/the-skyline-problem
141,Linked List Cycle,41.1%,Easy,0.27449284203401514, https://leetcode.com/problems/linked-list-cycle
122,Best Time to Buy and Sell Stock II,57.0%,Easy,0.2648683639779438, https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii
119,Pascal's Triangle II,49.0%,Easy,0.26169674611472327, https://leetcode.com/problems/pascals-triangle-ii
44,Wildcard Matching,24.7%,Hard,0.2463964485679353, https://leetcode.com/problems/wildcard-matching
240,Search a 2D Matrix II,43.2%,Medium,0.24218097481422138, https://leetcode.com/problems/search-a-2d-matrix-ii
326,Power of Three,42.1%,Easy,0.2330133408255935, https://leetcode.com/problems/power-of-three
992,Subarrays with K Different Integers,48.6%,Hard,0.2115783451497167, https://leetcode.com/problems/subarrays-with-k-different-integers
560,Subarray Sum Equals K,43.9%,Medium,0.19073820122876284, https://leetcode.com/problems/subarray-sum-equals-k
206,Reverse Linked List,62.5%,Easy,0.1737441239828363, https://leetcode.com/problems/reverse-linked-list
344,Reverse String,68.5%,Easy,0.16907996884887766, https://leetcode.com/problems/reverse-string
3,Longest Substring Without Repeating Characters,30.4%,Medium,0.15840625330250555, https://leetcode.com/problems/longest-substring-without-repeating-characters
155,Min Stack,44.5%,Easy,0.15817175770099312, https://leetcode.com/problems/min-stack
332,Reconstruct Itinerary,36.7%,Medium,0.15671959735502852, https://leetcode.com/problems/reconstruct-itinerary
931,Minimum Falling Path Sum,62.5%,Medium,0.1563727956152988, https://leetcode.com/problems/minimum-falling-path-sum
242,Valid Anagram,56.9%,Easy,0.13963976683590715, https://leetcode.com/problems/valid-anagram
56,Merge Intervals,39.3%,Medium,0.13713421800838543, https://leetcode.com/problems/merge-intervals
62,Unique Paths,54.1%,Medium,0.1311257686834479, https://leetcode.com/problems/unique-paths
460,LFU Cache,34.2%,Hard,0.11848160362052347, https://leetcode.com/problems/lfu-cache
72,Edit Distance,44.8%,Hard,0.11629970881467097, https://leetcode.com/problems/edit-distance
295,Find Median from Data Stream,44.3%,Hard,0.10502147513923703, https://leetcode.com/problems/find-median-from-data-stream
46,Permutations,63.5%,Medium,0.10041538372599258, https://leetcode.com/problems/permutations
1051,Height Checker,71.1%,Easy,0.09876441467241241, https://leetcode.com/problems/height-checker
1395,Count Number of Teams,82.0%,Medium,0.09817811071565465, https://leetcode.com/problems/count-number-of-teams
76,Minimum Window Substring,34.6%,Hard,0.09532438646867135, https://leetcode.com/problems/minimum-window-substring
720,Longest Word in Dictionary,48.2%,Easy,0.09362342046209744, https://leetcode.com/problems/longest-word-in-dictionary
836,Rectangle Overlap,48.6%,Easy,0.09358079943969791, https://leetcode.com/problems/rectangle-overlap
647,Palindromic Substrings,60.6%,Medium,0.08992575300574686, https://leetcode.com/problems/palindromic-substrings
78,Subsets,62.0%,Medium,0.08834203894021862, https://leetcode.com/problems/subsets
939,Minimum Area Rectangle,51.8%,Medium,0.08361414004113359, https://leetcode.com/problems/minimum-area-rectangle
724,Find Pivot Index,44.0%,Easy,0.08357684789821086, https://leetcode.com/problems/find-pivot-index
118,Pascal's Triangle,52.5%,Easy,0.07970401164997687, https://leetcode.com/problems/pascals-triangle
547,Friend Circles,58.6%,Medium,0.07408600065076033, https://leetcode.com/problems/friend-circles
13,Roman to Integer,55.7%,Easy,0.067239661116769, https://leetcode.com/problems/roman-to-integer
588,Design In-Memory File System,45.9%,Hard,0.05841076215641451, https://leetcode.com/problems/design-in-memory-file-system
104,Maximum Depth of Binary Tree,66.0%,Easy,0.05499247412856504, https://leetcode.com/problems/maximum-depth-of-binary-tree
15,3Sum,26.8%,Medium,0.05357467464947331, https://leetcode.com/problems/3sum
120,Triangle,44.2%,Medium,0.05192600557601006, https://leetcode.com/problems/triangle
99,Recover Binary Search Tree,39.7%,Hard,0.051264071283762605, https://leetcode.com/problems/recover-binary-search-tree
445,Add Two Numbers II,54.5%,Medium,0.04843561709959499, https://leetcode.com/problems/add-two-numbers-ii
19,Remove Nth Node From End of List,35.2%,Medium,0.048122350207849794, https://leetcode.com/problems/remove-nth-node-from-end-of-list
20,Valid Parentheses,39.0%,Easy,0.045585204865984434, https://leetcode.com/problems/valid-parentheses
283,Move Zeroes,57.8%,Easy,0.04519585811312136, https://leetcode.com/problems/move-zeroes
204,Count Primes,31.5%,Easy,0.04340205577484725, https://leetcode.com/problems/count-primes
1219,Path with Maximum Gold,65.1%,Medium,0.04111576039097048, https://leetcode.com/problems/path-with-maximum-gold
993,Cousins in Binary Tree,52.0%,Easy,0.03876454345024432, https://leetcode.com/problems/cousins-in-binary-tree
380,Insert Delete GetRandom O(1),47.5%,Medium,0.038717635350707984, https://leetcode.com/problems/insert-delete-getrandom-o1
317,Shortest Distance from All Buildings,41.4%,Hard,0.03795522000043556, https://leetcode.com/problems/shortest-distance-from-all-buildings
50,Pow(x;n),30.3%,Medium,0.034465967879243095, https://leetcode.com/problems/powx-n
167,Two Sum II - Input array is sorted,54.1%,Easy,0.03393376616898467, https://leetcode.com/problems/two-sum-ii-input-array-is-sorted
198,House Robber,42.0%,Easy,0.033320991026093004, https://leetcode.com/problems/house-robber
237,Delete Node in a Linked List,63.8%,Easy,0.031728549820175866, https://leetcode.com/problems/delete-node-in-a-linked-list
16,3Sum Closest,46.0%,Medium,0.02976964023166436, https://leetcode.com/problems/3sum-closest
98,Validate Binary Search Tree,27.8%,Medium,0.026187123416340663, https://leetcode.com/problems/validate-binary-search-tree
23,Merge k Sorted Lists,40.2%,Hard,0.0250564321052577, https://leetcode.com/problems/merge-k-sorted-lists
1209,Remove All Adjacent Duplicates in String II,56.9%,Medium,0.02324334737232728, https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string-ii
39,Combination Sum,56.1%,Medium,0.02267028230338623, https://leetcode.com/problems/combination-sum
739,Daily Temperatures,63.3%,Medium,0.022433642692117093, https://leetcode.com/problems/daily-temperatures
207,Course Schedule,43.1%,Medium,0.019709926055136454, https://leetcode.com/problems/course-schedule
88,Merge Sorted Array,39.4%,Easy,0.018667009593356397, https://leetcode.com/problems/merge-sorted-array
438,Find All Anagrams in a String,43.3%,Medium,0.01819334596120571, https://leetcode.com/problems/find-all-anagrams-in-a-string
253,Meeting Rooms II,45.7%,Medium,0.018087309810579388, https://leetcode.com/problems/meeting-rooms-ii
17,Letter Combinations of a Phone Number,46.8%,Medium,0.017492519932499718, https://leetcode.com/problems/letter-combinations-of-a-phone-number
876,Middle of the Linked List,68.4%,Easy,0.01707497375257815, https://leetcode.com/problems/middle-of-the-linked-list
628,Maximum Product of Three Numbers,47.1%,Easy,0.016529301951210565, https://leetcode.com/problems/maximum-product-of-three-numbers
189,Rotate Array,34.7%,Easy,0.016022774188122292, https://leetcode.com/problems/rotate-array
160,Intersection of Two Linked Lists,40.6%,Easy,0.010994491398666248, https://leetcode.com/problems/intersection-of-two-linked-lists
63,Unique Paths II,34.6%,Medium,0.008712753874961187, https://leetcode.com/problems/unique-paths-ii
347,Top K Frequent Elements,61.2%,Medium,0.005929457040438874, https://leetcode.com/problems/top-k-frequent-elements
973,K Closest Points to Origin,63.8%,Medium,0.005773688094426333, https://leetcode.com/problems/k-closest-points-to-origin
1109,Corporate Flight Bookings,52.8%,Medium,0, https://leetcode.com/problems/corporate-flight-bookings
1116,Print Zero Even Odd,56.0%,Medium,0, https://leetcode.com/problems/print-zero-even-odd
1427,Perform String Shifts,53.1%,Easy,0, https://leetcode.com/problems/perform-string-shifts
1 42 ID Trapping Rain Water Title 48.9% Acceptance Hard Difficulty 3.4017115728252114 Frequency https://leetcode.com/problems/trapping-rain-water Leetcode Question Link
2 1086 42 High Five Trapping Rain Water 79.7% 48.9% Easy Hard 3.081613006775713 3.4017115728252114 https://leetcode.com/problems/high-five https://leetcode.com/problems/trapping-rain-water
3 209 1086 Minimum Size Subarray Sum High Five 38.2% 79.7% Medium Easy 2.761514440726214 3.081613006775713 https://leetcode.com/problems/minimum-size-subarray-sum https://leetcode.com/problems/high-five
4 289 209 Game of Life Minimum Size Subarray Sum 54.5% 38.2% Medium Medium 2.4414158746767156 2.761514440726214 https://leetcode.com/problems/game-of-life https://leetcode.com/problems/minimum-size-subarray-sum
5 4 289 Median of Two Sorted Arrays Game of Life 29.6% 54.5% Hard Medium 2.2841074960153698 2.4414158746767156 https://leetcode.com/problems/median-of-two-sorted-arrays https://leetcode.com/problems/game-of-life
6 688 4 Knight Probability in Chessboard Median of Two Sorted Arrays 48.9% 29.6% Medium Hard 2.217128926271222 2.2841074960153698 https://leetcode.com/problems/knight-probability-in-chessboard https://leetcode.com/problems/median-of-two-sorted-arrays
7 387 688 First Unique Character in a String Knight Probability in Chessboard 53.4% 48.9% Easy Medium 2.12805942959263 2.217128926271222 https://leetcode.com/problems/first-unique-character-in-a-string https://leetcode.com/problems/knight-probability-in-chessboard
8 592 387 Fraction Addition and Subtraction First Unique Character in a String 49.0% 53.4% Medium Easy 1.8162790864023735 2.12805942959263 https://leetcode.com/problems/fraction-addition-and-subtraction https://leetcode.com/problems/first-unique-character-in-a-string
9 443 592 String Compression Fraction Addition and Subtraction 41.3% 49.0% Easy Medium 1.7567223362906532 1.8162790864023735 https://leetcode.com/problems/string-compression https://leetcode.com/problems/fraction-addition-and-subtraction
10 862 443 Shortest Subarray with Sum at Least K String Compression 24.6% 41.3% Hard Easy 1.7383767819805511 1.7567223362906532 https://leetcode.com/problems/shortest-subarray-with-sum-at-least-k https://leetcode.com/problems/string-compression
11 166 862 Fraction to Recurring Decimal Shortest Subarray with Sum at Least K 21.6% 24.6% Medium Hard 1.719216136548627 1.7383767819805511 https://leetcode.com/problems/fraction-to-recurring-decimal https://leetcode.com/problems/shortest-subarray-with-sum-at-least-k
12 722 166 Remove Comments Fraction to Recurring Decimal 34.6% 21.6% Medium Medium 1.6355405363367377 1.719216136548627 https://leetcode.com/problems/remove-comments https://leetcode.com/problems/fraction-to-recurring-decimal
13 238 722 Product of Array Except Self Remove Comments 60.1% 34.6% Medium Medium 1.5653986776487465 1.6355405363367377 https://leetcode.com/problems/product-of-array-except-self https://leetcode.com/problems/remove-comments
14 70 238 Climbing Stairs Product of Array Except Self 47.8% 60.1% Easy Medium 1.515339965084781 1.5653986776487465 https://leetcode.com/problems/climbing-stairs https://leetcode.com/problems/product-of-array-except-self
15 49 70 Group Anagrams Climbing Stairs 56.9% 47.8% Medium Easy 1.514137260931213 1.515339965084781 https://leetcode.com/problems/group-anagrams https://leetcode.com/problems/climbing-stairs
16 780 49 Reaching Points Group Anagrams 29.4% 56.9% Hard Medium 1.4774527855096036 1.514137260931213 https://leetcode.com/problems/reaching-points https://leetcode.com/problems/group-anagrams
17 706 780 Design HashMap Reaching Points 61.3% 29.4% Easy Hard 1.4405011789563176 1.4774527855096036 https://leetcode.com/problems/design-hashmap https://leetcode.com/problems/reaching-points
18 121 706 Best Time to Buy and Sell Stock Design HashMap 50.5% 61.3% Easy Easy 1.343547532072845 1.4405011789563176 https://leetcode.com/problems/best-time-to-buy-and-sell-stock https://leetcode.com/problems/design-hashmap
19 1041 121 Robot Bounded In Circle Best Time to Buy and Sell Stock 49.6% 50.5% Medium Easy 1.3318656536208857 1.343547532072845 https://leetcode.com/problems/robot-bounded-in-circle https://leetcode.com/problems/best-time-to-buy-and-sell-stock
20 1 1041 Two Sum Robot Bounded In Circle 45.6% 49.6% Easy Medium 1.0889331084185998 1.3318656536208857 https://leetcode.com/problems/two-sum https://leetcode.com/problems/robot-bounded-in-circle
21 11 1 Container With Most Water Two Sum 50.8% 45.6% Medium Easy 0.8565164282104613 1.0889331084185998 https://leetcode.com/problems/container-with-most-water https://leetcode.com/problems/two-sum
22 8 11 String to Integer (atoi) Container With Most Water 15.4% 50.8% Medium Medium 0.8331114806091768 0.8565164282104613 https://leetcode.com/problems/string-to-integer-atoi https://leetcode.com/problems/container-with-most-water
23 657 8 Robot Return to Origin String to Integer (atoi) 73.5% 15.4% Easy Medium 0.7562359758559519 0.8331114806091768 https://leetcode.com/problems/robot-return-to-origin https://leetcode.com/problems/string-to-integer-atoi
24 1163 657 Last Substring in Lexicographical Order Robot Return to Origin 33.9% 73.5% Hard Easy 0.7261919753374027 0.7562359758559519 https://leetcode.com/problems/last-substring-in-lexicographical-order https://leetcode.com/problems/robot-return-to-origin
25 64 1163 Minimum Path Sum Last Substring in Lexicographical Order 54.5% 33.9% Medium Hard 0.6731263364629722 0.7261919753374027 https://leetcode.com/problems/minimum-path-sum https://leetcode.com/problems/last-substring-in-lexicographical-order
26 146 64 LRU Cache Minimum Path Sum 33.2% 54.5% Medium Medium 0.6099535003338225 0.6731263364629722 https://leetcode.com/problems/lru-cache https://leetcode.com/problems/minimum-path-sum
27 153 146 Find Minimum in Rotated Sorted Array LRU Cache 45.1% 33.2% Medium Medium 0.552467601857292 0.6099535003338225 https://leetcode.com/problems/find-minimum-in-rotated-sorted-array https://leetcode.com/problems/lru-cache
28 524 153 Longest Word in Dictionary through Deleting Find Minimum in Rotated Sorted Array 48.4% 45.1% Medium Medium 0.5380680817633897 0.552467601857292 https://leetcode.com/problems/longest-word-in-dictionary-through-deleting https://leetcode.com/problems/find-minimum-in-rotated-sorted-array
29 91 524 Decode Ways Longest Word in Dictionary through Deleting 24.7% 48.4% Medium Medium 0.5068067838189668 0.5380680817633897 https://leetcode.com/problems/decode-ways https://leetcode.com/problems/longest-word-in-dictionary-through-deleting
30 532 91 K-diff Pairs in an Array Decode Ways 31.6% 24.7% Easy Medium 0.4524148616095762 0.5068067838189668 https://leetcode.com/problems/k-diff-pairs-in-an-array https://leetcode.com/problems/decode-ways
31 33 532 Search in Rotated Sorted Array K-diff Pairs in an Array 34.5% 31.6% Medium Easy 0.43615506649398705 0.4524148616095762 https://leetcode.com/problems/search-in-rotated-sorted-array https://leetcode.com/problems/k-diff-pairs-in-an-array
32 322 33 Coin Change Search in Rotated Sorted Array 35.5% 34.5% Medium Medium 0.42789160115933317 0.43615506649398705 https://leetcode.com/problems/coin-change https://leetcode.com/problems/search-in-rotated-sorted-array
33 887 322 Super Egg Drop Coin Change 27.1% 35.5% Hard Medium 0.37614858779077814 0.42789160115933317 https://leetcode.com/problems/super-egg-drop https://leetcode.com/problems/coin-change
34 53 887 Maximum Subarray Super Egg Drop 46.5% 27.1% Easy Hard 0.3543183348432278 0.37614858779077814 https://leetcode.com/problems/maximum-subarray https://leetcode.com/problems/super-egg-drop
35 54 53 Spiral Matrix Maximum Subarray 34.1% 46.5% Medium Easy 0.35306273805914157 0.3543183348432278 https://leetcode.com/problems/spiral-matrix https://leetcode.com/problems/maximum-subarray
36 1010 54 Pairs of Songs With Total Durations Divisible by 60 Spiral Matrix 47.4% 34.1% Easy Medium 0.3251259020780217 0.35306273805914157 https://leetcode.com/problems/pairs-of-songs-with-total-durations-divisible-by-60 https://leetcode.com/problems/spiral-matrix
37 942 1010 DI String Match Pairs of Songs With Total Durations Divisible by 60 72.6% 47.4% Easy Easy 0.30356511862478397 0.3251259020780217 https://leetcode.com/problems/di-string-match https://leetcode.com/problems/pairs-of-songs-with-total-durations-divisible-by-60
38 215 942 Kth Largest Element in an Array DI String Match 55.4% 72.6% Medium Easy 0.30223837022598843 0.30356511862478397 https://leetcode.com/problems/kth-largest-element-in-an-array https://leetcode.com/problems/di-string-match
39 200 215 Number of Islands Kth Largest Element in an Array 46.8% 55.4% Medium Medium 0.27691676627418055 0.30223837022598843 https://leetcode.com/problems/number-of-islands https://leetcode.com/problems/kth-largest-element-in-an-array
40 218 200 The Skyline Problem Number of Islands 34.6% 46.8% Hard Medium 0.27469487692496974 0.27691676627418055 https://leetcode.com/problems/the-skyline-problem https://leetcode.com/problems/number-of-islands
41 141 218 Linked List Cycle The Skyline Problem 41.1% 34.6% Easy Hard 0.27449284203401514 0.27469487692496974 https://leetcode.com/problems/linked-list-cycle https://leetcode.com/problems/the-skyline-problem
42 122 141 Best Time to Buy and Sell Stock II Linked List Cycle 57.0% 41.1% Easy Easy 0.2648683639779438 0.27449284203401514 https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii https://leetcode.com/problems/linked-list-cycle
43 119 122 Pascal's Triangle II Best Time to Buy and Sell Stock II 49.0% 57.0% Easy Easy 0.26169674611472327 0.2648683639779438 https://leetcode.com/problems/pascals-triangle-ii https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii
44 44 119 Wildcard Matching Pascal's Triangle II 24.7% 49.0% Hard Easy 0.2463964485679353 0.26169674611472327 https://leetcode.com/problems/wildcard-matching https://leetcode.com/problems/pascals-triangle-ii
45 240 44 Search a 2D Matrix II Wildcard Matching 43.2% 24.7% Medium Hard 0.24218097481422138 0.2463964485679353 https://leetcode.com/problems/search-a-2d-matrix-ii https://leetcode.com/problems/wildcard-matching
46 326 240 Power of Three Search a 2D Matrix II 42.1% 43.2% Easy Medium 0.2330133408255935 0.24218097481422138 https://leetcode.com/problems/power-of-three https://leetcode.com/problems/search-a-2d-matrix-ii
47 992 326 Subarrays with K Different Integers Power of Three 48.6% 42.1% Hard Easy 0.2115783451497167 0.2330133408255935 https://leetcode.com/problems/subarrays-with-k-different-integers https://leetcode.com/problems/power-of-three
48 560 992 Subarray Sum Equals K Subarrays with K Different Integers 43.9% 48.6% Medium Hard 0.19073820122876284 0.2115783451497167 https://leetcode.com/problems/subarray-sum-equals-k https://leetcode.com/problems/subarrays-with-k-different-integers
49 206 560 Reverse Linked List Subarray Sum Equals K 62.5% 43.9% Easy Medium 0.1737441239828363 0.19073820122876284 https://leetcode.com/problems/reverse-linked-list https://leetcode.com/problems/subarray-sum-equals-k
50 344 206 Reverse String Reverse Linked List 68.5% 62.5% Easy Easy 0.16907996884887766 0.1737441239828363 https://leetcode.com/problems/reverse-string https://leetcode.com/problems/reverse-linked-list
51 3 344 Longest Substring Without Repeating Characters Reverse String 30.4% 68.5% Medium Easy 0.15840625330250555 0.16907996884887766 https://leetcode.com/problems/longest-substring-without-repeating-characters https://leetcode.com/problems/reverse-string
52 155 3 Min Stack Longest Substring Without Repeating Characters 44.5% 30.4% Easy Medium 0.15817175770099312 0.15840625330250555 https://leetcode.com/problems/min-stack https://leetcode.com/problems/longest-substring-without-repeating-characters
53 332 155 Reconstruct Itinerary Min Stack 36.7% 44.5% Medium Easy 0.15671959735502852 0.15817175770099312 https://leetcode.com/problems/reconstruct-itinerary https://leetcode.com/problems/min-stack
54 931 332 Minimum Falling Path Sum Reconstruct Itinerary 62.5% 36.7% Medium Medium 0.1563727956152988 0.15671959735502852 https://leetcode.com/problems/minimum-falling-path-sum https://leetcode.com/problems/reconstruct-itinerary
55 242 931 Valid Anagram Minimum Falling Path Sum 56.9% 62.5% Easy Medium 0.13963976683590715 0.1563727956152988 https://leetcode.com/problems/valid-anagram https://leetcode.com/problems/minimum-falling-path-sum
56 56 242 Merge Intervals Valid Anagram 39.3% 56.9% Medium Easy 0.13713421800838543 0.13963976683590715 https://leetcode.com/problems/merge-intervals https://leetcode.com/problems/valid-anagram
57 62 56 Unique Paths Merge Intervals 54.1% 39.3% Medium Medium 0.1311257686834479 0.13713421800838543 https://leetcode.com/problems/unique-paths https://leetcode.com/problems/merge-intervals
58 460 62 LFU Cache Unique Paths 34.2% 54.1% Hard Medium 0.11848160362052347 0.1311257686834479 https://leetcode.com/problems/lfu-cache https://leetcode.com/problems/unique-paths
59 72 460 Edit Distance LFU Cache 44.8% 34.2% Hard Hard 0.11629970881467097 0.11848160362052347 https://leetcode.com/problems/edit-distance https://leetcode.com/problems/lfu-cache
60 295 72 Find Median from Data Stream Edit Distance 44.3% 44.8% Hard Hard 0.10502147513923703 0.11629970881467097 https://leetcode.com/problems/find-median-from-data-stream https://leetcode.com/problems/edit-distance
61 46 295 Permutations Find Median from Data Stream 63.5% 44.3% Medium Hard 0.10041538372599258 0.10502147513923703 https://leetcode.com/problems/permutations https://leetcode.com/problems/find-median-from-data-stream
62 1051 46 Height Checker Permutations 71.1% 63.5% Easy Medium 0.09876441467241241 0.10041538372599258 https://leetcode.com/problems/height-checker https://leetcode.com/problems/permutations
63 1395 1051 Count Number of Teams Height Checker 82.0% 71.1% Medium Easy 0.09817811071565465 0.09876441467241241 https://leetcode.com/problems/count-number-of-teams https://leetcode.com/problems/height-checker
64 76 1395 Minimum Window Substring Count Number of Teams 34.6% 82.0% Hard Medium 0.09532438646867135 0.09817811071565465 https://leetcode.com/problems/minimum-window-substring https://leetcode.com/problems/count-number-of-teams
65 720 76 Longest Word in Dictionary Minimum Window Substring 48.2% 34.6% Easy Hard 0.09362342046209744 0.09532438646867135 https://leetcode.com/problems/longest-word-in-dictionary https://leetcode.com/problems/minimum-window-substring
66 836 720 Rectangle Overlap Longest Word in Dictionary 48.6% 48.2% Easy Easy 0.09358079943969791 0.09362342046209744 https://leetcode.com/problems/rectangle-overlap https://leetcode.com/problems/longest-word-in-dictionary
67 647 836 Palindromic Substrings Rectangle Overlap 60.6% 48.6% Medium Easy 0.08992575300574686 0.09358079943969791 https://leetcode.com/problems/palindromic-substrings https://leetcode.com/problems/rectangle-overlap
68 78 647 Subsets Palindromic Substrings 62.0% 60.6% Medium Medium 0.08834203894021862 0.08992575300574686 https://leetcode.com/problems/subsets https://leetcode.com/problems/palindromic-substrings
69 939 78 Minimum Area Rectangle Subsets 51.8% 62.0% Medium Medium 0.08361414004113359 0.08834203894021862 https://leetcode.com/problems/minimum-area-rectangle https://leetcode.com/problems/subsets
70 724 939 Find Pivot Index Minimum Area Rectangle 44.0% 51.8% Easy Medium 0.08357684789821086 0.08361414004113359 https://leetcode.com/problems/find-pivot-index https://leetcode.com/problems/minimum-area-rectangle
71 118 724 Pascal's Triangle Find Pivot Index 52.5% 44.0% Easy Easy 0.07970401164997687 0.08357684789821086 https://leetcode.com/problems/pascals-triangle https://leetcode.com/problems/find-pivot-index
72 547 118 Friend Circles Pascal's Triangle 58.6% 52.5% Medium Easy 0.07408600065076033 0.07970401164997687 https://leetcode.com/problems/friend-circles https://leetcode.com/problems/pascals-triangle
73 13 547 Roman to Integer Friend Circles 55.7% 58.6% Easy Medium 0.067239661116769 0.07408600065076033 https://leetcode.com/problems/roman-to-integer https://leetcode.com/problems/friend-circles
74 588 13 Design In-Memory File System Roman to Integer 45.9% 55.7% Hard Easy 0.05841076215641451 0.067239661116769 https://leetcode.com/problems/design-in-memory-file-system https://leetcode.com/problems/roman-to-integer
75 104 588 Maximum Depth of Binary Tree Design In-Memory File System 66.0% 45.9% Easy Hard 0.05499247412856504 0.05841076215641451 https://leetcode.com/problems/maximum-depth-of-binary-tree https://leetcode.com/problems/design-in-memory-file-system
76 15 104 3Sum Maximum Depth of Binary Tree 26.8% 66.0% Medium Easy 0.05357467464947331 0.05499247412856504 https://leetcode.com/problems/3sum https://leetcode.com/problems/maximum-depth-of-binary-tree
77 120 15 Triangle 3Sum 44.2% 26.8% Medium Medium 0.05192600557601006 0.05357467464947331 https://leetcode.com/problems/triangle https://leetcode.com/problems/3sum
78 99 120 Recover Binary Search Tree Triangle 39.7% 44.2% Hard Medium 0.051264071283762605 0.05192600557601006 https://leetcode.com/problems/recover-binary-search-tree https://leetcode.com/problems/triangle
79 445 99 Add Two Numbers II Recover Binary Search Tree 54.5% 39.7% Medium Hard 0.04843561709959499 0.051264071283762605 https://leetcode.com/problems/add-two-numbers-ii https://leetcode.com/problems/recover-binary-search-tree
80 19 445 Remove Nth Node From End of List Add Two Numbers II 35.2% 54.5% Medium Medium 0.048122350207849794 0.04843561709959499 https://leetcode.com/problems/remove-nth-node-from-end-of-list https://leetcode.com/problems/add-two-numbers-ii
81 20 19 Valid Parentheses Remove Nth Node From End of List 39.0% 35.2% Easy Medium 0.045585204865984434 0.048122350207849794 https://leetcode.com/problems/valid-parentheses https://leetcode.com/problems/remove-nth-node-from-end-of-list
82 283 20 Move Zeroes Valid Parentheses 57.8% 39.0% Easy Easy 0.04519585811312136 0.045585204865984434 https://leetcode.com/problems/move-zeroes https://leetcode.com/problems/valid-parentheses
83 204 283 Count Primes Move Zeroes 31.5% 57.8% Easy Easy 0.04340205577484725 0.04519585811312136 https://leetcode.com/problems/count-primes https://leetcode.com/problems/move-zeroes
84 1219 204 Path with Maximum Gold Count Primes 65.1% 31.5% Medium Easy 0.04111576039097048 0.04340205577484725 https://leetcode.com/problems/path-with-maximum-gold https://leetcode.com/problems/count-primes
85 993 1219 Cousins in Binary Tree Path with Maximum Gold 52.0% 65.1% Easy Medium 0.03876454345024432 0.04111576039097048 https://leetcode.com/problems/cousins-in-binary-tree https://leetcode.com/problems/path-with-maximum-gold
86 380 993 Insert Delete GetRandom O(1) Cousins in Binary Tree 47.5% 52.0% Medium Easy 0.038717635350707984 0.03876454345024432 https://leetcode.com/problems/insert-delete-getrandom-o1 https://leetcode.com/problems/cousins-in-binary-tree
87 317 380 Shortest Distance from All Buildings Insert Delete GetRandom O(1) 41.4% 47.5% Hard Medium 0.03795522000043556 0.038717635350707984 https://leetcode.com/problems/shortest-distance-from-all-buildings https://leetcode.com/problems/insert-delete-getrandom-o1
88 50 317 Pow(x;n) Shortest Distance from All Buildings 30.3% 41.4% Medium Hard 0.034465967879243095 0.03795522000043556 https://leetcode.com/problems/powx-n https://leetcode.com/problems/shortest-distance-from-all-buildings
89 167 50 Two Sum II - Input array is sorted Pow(x;n) 54.1% 30.3% Easy Medium 0.03393376616898467 0.034465967879243095 https://leetcode.com/problems/two-sum-ii-input-array-is-sorted https://leetcode.com/problems/powx-n
90 198 167 House Robber Two Sum II - Input array is sorted 42.0% 54.1% Easy Easy 0.033320991026093004 0.03393376616898467 https://leetcode.com/problems/house-robber https://leetcode.com/problems/two-sum-ii-input-array-is-sorted
91 237 198 Delete Node in a Linked List House Robber 63.8% 42.0% Easy Easy 0.031728549820175866 0.033320991026093004 https://leetcode.com/problems/delete-node-in-a-linked-list https://leetcode.com/problems/house-robber
92 16 237 3Sum Closest Delete Node in a Linked List 46.0% 63.8% Medium Easy 0.02976964023166436 0.031728549820175866 https://leetcode.com/problems/3sum-closest https://leetcode.com/problems/delete-node-in-a-linked-list
93 98 16 Validate Binary Search Tree 3Sum Closest 27.8% 46.0% Medium Medium 0.026187123416340663 0.02976964023166436 https://leetcode.com/problems/validate-binary-search-tree https://leetcode.com/problems/3sum-closest
94 23 98 Merge k Sorted Lists Validate Binary Search Tree 40.2% 27.8% Hard Medium 0.0250564321052577 0.026187123416340663 https://leetcode.com/problems/merge-k-sorted-lists https://leetcode.com/problems/validate-binary-search-tree
95 1209 23 Remove All Adjacent Duplicates in String II Merge k Sorted Lists 56.9% 40.2% Medium Hard 0.02324334737232728 0.0250564321052577 https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string-ii https://leetcode.com/problems/merge-k-sorted-lists
96 39 1209 Combination Sum Remove All Adjacent Duplicates in String II 56.1% 56.9% Medium Medium 0.02267028230338623 0.02324334737232728 https://leetcode.com/problems/combination-sum https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string-ii
97 739 39 Daily Temperatures Combination Sum 63.3% 56.1% Medium Medium 0.022433642692117093 0.02267028230338623 https://leetcode.com/problems/daily-temperatures https://leetcode.com/problems/combination-sum
98 207 739 Course Schedule Daily Temperatures 43.1% 63.3% Medium Medium 0.019709926055136454 0.022433642692117093 https://leetcode.com/problems/course-schedule https://leetcode.com/problems/daily-temperatures
99 88 207 Merge Sorted Array Course Schedule 39.4% 43.1% Easy Medium 0.018667009593356397 0.019709926055136454 https://leetcode.com/problems/merge-sorted-array https://leetcode.com/problems/course-schedule
100 438 88 Find All Anagrams in a String Merge Sorted Array 43.3% 39.4% Medium Easy 0.01819334596120571 0.018667009593356397 https://leetcode.com/problems/find-all-anagrams-in-a-string https://leetcode.com/problems/merge-sorted-array
101 253 438 Meeting Rooms II Find All Anagrams in a String 45.7% 43.3% Medium Medium 0.018087309810579388 0.01819334596120571 https://leetcode.com/problems/meeting-rooms-ii https://leetcode.com/problems/find-all-anagrams-in-a-string
102 17 253 Letter Combinations of a Phone Number Meeting Rooms II 46.8% 45.7% Medium Medium 0.017492519932499718 0.018087309810579388 https://leetcode.com/problems/letter-combinations-of-a-phone-number https://leetcode.com/problems/meeting-rooms-ii
103 876 17 Middle of the Linked List Letter Combinations of a Phone Number 68.4% 46.8% Easy Medium 0.01707497375257815 0.017492519932499718 https://leetcode.com/problems/middle-of-the-linked-list https://leetcode.com/problems/letter-combinations-of-a-phone-number
104 628 876 Maximum Product of Three Numbers Middle of the Linked List 47.1% 68.4% Easy Easy 0.016529301951210565 0.01707497375257815 https://leetcode.com/problems/maximum-product-of-three-numbers https://leetcode.com/problems/middle-of-the-linked-list
105 189 628 Rotate Array Maximum Product of Three Numbers 34.7% 47.1% Easy Easy 0.016022774188122292 0.016529301951210565 https://leetcode.com/problems/rotate-array https://leetcode.com/problems/maximum-product-of-three-numbers
106 160 189 Intersection of Two Linked Lists Rotate Array 40.6% 34.7% Easy Easy 0.010994491398666248 0.016022774188122292 https://leetcode.com/problems/intersection-of-two-linked-lists https://leetcode.com/problems/rotate-array
107 63 160 Unique Paths II Intersection of Two Linked Lists 34.6% 40.6% Medium Easy 0.008712753874961187 0.010994491398666248 https://leetcode.com/problems/unique-paths-ii https://leetcode.com/problems/intersection-of-two-linked-lists
108 347 63 Top K Frequent Elements Unique Paths II 61.2% 34.6% Medium Medium 0.005929457040438874 0.008712753874961187 https://leetcode.com/problems/top-k-frequent-elements https://leetcode.com/problems/unique-paths-ii
109 973 347 K Closest Points to Origin Top K Frequent Elements 63.8% 61.2% Medium Medium 0.005773688094426333 0.005929457040438874 https://leetcode.com/problems/k-closest-points-to-origin https://leetcode.com/problems/top-k-frequent-elements
110 1109 973 Corporate Flight Bookings K Closest Points to Origin 52.8% 63.8% Medium Medium 0 0.005773688094426333 https://leetcode.com/problems/corporate-flight-bookings https://leetcode.com/problems/k-closest-points-to-origin
111 1116 1109 Print Zero Even Odd Corporate Flight Bookings 56.0% 52.8% Medium Medium 0 0 https://leetcode.com/problems/print-zero-even-odd https://leetcode.com/problems/corporate-flight-bookings
112 1427 1116 Perform String Shifts Print Zero Even Odd 53.1% 56.0% Easy Medium 0 0 https://leetcode.com/problems/perform-string-shifts https://leetcode.com/problems/print-zero-even-odd
113 1427 Perform String Shifts 53.1% Easy 0 https://leetcode.com/problems/perform-string-shifts