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,109 +1,110 @@
42,Trapping Rain Water,48.9%,Hard,2.020411699325411, https://leetcode.com/problems/trapping-rain-water
289,Game of Life,54.5%,Medium,1.8133708003279605, https://leetcode.com/problems/game-of-life
1086,High Five,79.7%,Easy,1.7830513754574853, https://leetcode.com/problems/high-five
209,Minimum Size Subarray Sum,38.2%,Medium,1.576010476460035, https://leetcode.com/problems/minimum-size-subarray-sum
166,Fraction to Recurring Decimal,21.6%,Medium,1.3689695774625845, https://leetcode.com/problems/fraction-to-recurring-decimal
722,Remove Comments,34.6%,Medium,1.2012832402757514, https://leetcode.com/problems/remove-comments
4,Median of Two Sorted Arrays,29.6%,Hard,1.1789254981240989, https://leetcode.com/problems/median-of-two-sorted-arrays
780,Reaching Points,29.4%,Hard,1.0654848189471613, https://leetcode.com/problems/reaching-points
862,Shortest Subarray with Sum at Least K,24.6%,Hard,1.0503043233346705, https://leetcode.com/problems/shortest-subarray-with-sum-at-least-k
387,First Unique Character in a String,53.4%,Easy,1.016175445916556, https://leetcode.com/problems/first-unique-character-in-a-string
688,Knight Probability in Chessboard,48.9%,Medium,0.875792939010168, https://leetcode.com/problems/knight-probability-in-chessboard
706,Design HashMap,61.3%,Easy,0.8231356111081237, https://leetcode.com/problems/design-hashmap
443,String Compression,41.3%,Easy,0.8171356348259033, https://leetcode.com/problems/string-compression
1041,Robot Bounded In Circle,49.6%,Medium,0.695004191307158, https://leetcode.com/problems/robot-bounded-in-circle
49,Group Anagrams,56.9%,Medium,0.6192590691619644, https://leetcode.com/problems/group-anagrams
1163,Last Substring in Lexicographical Order,33.9%,Hard,0.6115111972698513, https://leetcode.com/problems/last-substring-in-lexicographical-order
238,Product of Array Except Self,60.1%,Medium,0.6032226884679701, https://leetcode.com/problems/product-of-array-except-self
592,Fraction Addition and Subtraction,49.0%,Medium,0.5193002507569628, https://leetcode.com/problems/fraction-addition-and-subtraction
64,Minimum Path Sum,54.5%,Medium,0.4040299464061684, https://leetcode.com/problems/minimum-path-sum
524,Longest Word in Dictionary through Deleting,48.4%,Medium,0.3371083689581862, https://leetcode.com/problems/longest-word-in-dictionary-through-deleting
11,Container With Most Water,50.8%,Medium,0.3160977539241027, https://leetcode.com/problems/container-with-most-water
121,Best Time to Buy and Sell Stock,50.5%,Easy,0.3069889871822863, https://leetcode.com/problems/best-time-to-buy-and-sell-stock
657,Robot Return to Origin,73.5%,Easy,0.2488586313688772, https://leetcode.com/problems/robot-return-to-origin
54,Spiral Matrix,34.1%,Medium,0.2464878617937269, https://leetcode.com/problems/spiral-matrix
8,String to Integer (atoi),15.4%,Medium,0.1937032943399984, https://leetcode.com/problems/string-to-integer-atoi
153,Find Minimum in Rotated Sorted Array,45.1%,Medium,0.16922265570239925, https://leetcode.com/problems/find-minimum-in-rotated-sorted-array
33,Search in Rotated Sorted Array,34.5%,Medium,0.1671909490991562, https://leetcode.com/problems/search-in-rotated-sorted-array
532,K-diff Pairs in an Array,31.6%,Easy,0.15718558352241233, https://leetcode.com/problems/k-diff-pairs-in-an-array
146,LRU Cache,33.2%,Medium,0.1090999130829226, https://leetcode.com/problems/lru-cache
931,Minimum Falling Path Sum,62.5%,Medium,0.10285229483975511, https://leetcode.com/problems/minimum-falling-path-sum
218,The Skyline Problem,34.6%,Hard,0.09823843958341322, https://leetcode.com/problems/the-skyline-problem
322,Coin Change,35.5%,Medium,0.09617246233782387, https://leetcode.com/problems/coin-change
720,Longest Word in Dictionary,48.2%,Easy,0.09362342046209744, https://leetcode.com/problems/longest-word-in-dictionary
326,Power of Three,42.1%,Easy,0.09026419332308504, https://leetcode.com/problems/power-of-three
942,DI String Match,72.6%,Easy,0.08495672247596549, https://leetcode.com/problems/di-string-match
939,Minimum Area Rectangle,51.8%,Medium,0.08361414004113359, https://leetcode.com/problems/minimum-area-rectangle
332,Reconstruct Itinerary,36.7%,Medium,0.08302143328026106, https://leetcode.com/problems/reconstruct-itinerary
887,Super Egg Drop,27.1%,Hard,0.08054440988796595, https://leetcode.com/problems/super-egg-drop
547,Friend Circles,58.6%,Medium,0.07408600065076033, https://leetcode.com/problems/friend-circles
155,Min Stack,44.5%,Easy,0.07340219281226193, https://leetcode.com/problems/min-stack
119,Pascal's Triangle II,49.0%,Easy,0.07211890069342013, https://leetcode.com/problems/pascals-triangle-ii
1,Two Sum,45.6%,Easy,0.07147453361485057, https://leetcode.com/problems/two-sum
200,Number of Islands,46.8%,Medium,0.06985103785996453, https://leetcode.com/problems/number-of-islands
1051,Height Checker,71.1%,Easy,0.06960783038095686, https://leetcode.com/problems/height-checker
141,Linked List Cycle,41.1%,Easy,0.06847358948474051, https://leetcode.com/problems/linked-list-cycle
460,LFU Cache,34.2%,Hard,0.06836374280939023, https://leetcode.com/problems/lfu-cache
588,Design In-Memory File System,45.9%,Hard,0.05841076215641451, https://leetcode.com/problems/design-in-memory-file-system
1395,Count Number of Teams,82.0%,Medium,0.056405927913552076, https://leetcode.com/problems/count-number-of-teams
62,Unique Paths,54.1%,Medium,0.055187969852649885, https://leetcode.com/problems/unique-paths
76,Minimum Window Substring,34.6%,Hard,0.05473322196089386, https://leetcode.com/problems/minimum-window-substring
724,Find Pivot Index,44.0%,Easy,0.05428741283782842, https://leetcode.com/problems/find-pivot-index
44,Wildcard Matching,24.7%,Hard,0.053722215229247965, https://leetcode.com/problems/wildcard-matching
91,Decode Ways,24.7%,Medium,0.05247487679829598, https://leetcode.com/problems/decode-ways
99,Recover Binary Search Tree,39.7%,Hard,0.051264071283762605, https://leetcode.com/problems/recover-binary-search-tree
560,Subarray Sum Equals K,43.9%,Medium,0.0512021569656579, https://leetcode.com/problems/subarray-sum-equals-k
206,Reverse Linked List,62.5%,Easy,0.046346967254127305, https://leetcode.com/problems/reverse-linked-list
78,Subsets,62.0%,Medium,0.044263005655043326, https://leetcode.com/problems/subsets
1010,Pairs of Songs With Total Durations Divisible by 60,47.4%,Easy,0.04180336980436055, https://leetcode.com/problems/pairs-of-songs-with-total-durations-divisible-by-60
56,Merge Intervals,39.3%,Medium,0.04173304225331761, https://leetcode.com/problems/merge-intervals
118,Pascal's Triangle,52.5%,Easy,0.041458432654901865, https://leetcode.com/problems/pascals-triangle
1219,Path with Maximum Gold,65.1%,Medium,0.04111576039097048, https://leetcode.com/problems/path-with-maximum-gold
647,Palindromic Substrings,60.6%,Medium,0.040968350772541844, https://leetcode.com/problems/palindromic-substrings
993,Cousins in Binary Tree,52.0%,Easy,0.03876454345024432, https://leetcode.com/problems/cousins-in-binary-tree
317,Shortest Distance from All Buildings,41.4%,Hard,0.03795522000043556, https://leetcode.com/problems/shortest-distance-from-all-buildings
992,Subarrays with K Different Integers,48.6%,Hard,0.03700699810869683, https://leetcode.com/problems/subarrays-with-k-different-integers
122,Best Time to Buy and Sell Stock II,57.0%,Easy,0.02979366347877695, https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii
19,Remove Nth Node From End of List,35.2%,Medium,0.027353171676046843, https://leetcode.com/problems/remove-nth-node-from-end-of-list
836,Rectangle Overlap,48.6%,Easy,0.024228925974379843, https://leetcode.com/problems/rectangle-overlap
215,Kth Largest Element in an Array,55.4%,Medium,0.02414409892936099, https://leetcode.com/problems/kth-largest-element-in-an-array
1209,Remove All Adjacent Duplicates in String II,56.9%,Medium,0.02324334737232728, https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string-ii
380,Insert Delete GetRandom O(1),47.5%,Medium,0.021962815449093263, https://leetcode.com/problems/insert-delete-getrandom-o1
167,Two Sum II - Input array is sorted,54.1%,Easy,0.021849838247772296, https://leetcode.com/problems/two-sum-ii-input-array-is-sorted
53,Maximum Subarray,46.5%,Easy,0.019336728821707075, https://leetcode.com/problems/maximum-subarray
3,Longest Substring Without Repeating Characters,30.4%,Medium,0.018891763947827014, https://leetcode.com/problems/longest-substring-without-repeating-characters
876,Middle of the Linked List,68.4%,Easy,0.01707497375257815, https://leetcode.com/problems/middle-of-the-linked-list
240,Search a 2D Matrix II,43.2%,Medium,0.0169815401480941, https://leetcode.com/problems/search-a-2d-matrix-ii
16,3Sum Closest,46.0%,Medium,0.016854331554982106, https://leetcode.com/problems/3sum-closest
628,Maximum Product of Three Numbers,47.1%,Easy,0.016529301951210565, https://leetcode.com/problems/maximum-product-of-three-numbers
120,Triangle,44.2%,Medium,0.013236460625830901, https://leetcode.com/problems/triangle
445,Add Two Numbers II,54.5%,Medium,0.01233061245747872, https://leetcode.com/problems/add-two-numbers-ii
98,Validate Binary Search Tree,27.8%,Medium,0.01172346369605921, https://leetcode.com/problems/validate-binary-search-tree
283,Move Zeroes,57.8%,Easy,0.01149190266804209, https://leetcode.com/problems/move-zeroes
207,Course Schedule,43.1%,Medium,0.01113459480911671, https://leetcode.com/problems/course-schedule
739,Daily Temperatures,63.3%,Medium,0.010032690121814417, https://leetcode.com/problems/daily-temperatures
72,Edit Distance,44.8%,Hard,0.010017614452317782, https://leetcode.com/problems/edit-distance
17,Letter Combinations of a Phone Number,46.8%,Medium,0.00987716546167603, https://leetcode.com/problems/letter-combinations-of-a-phone-number
70,Climbing Stairs,47.8%,Easy,0.009390798483527519, https://leetcode.com/problems/climbing-stairs
242,Valid Anagram,56.9%,Easy,0.009322628116274939, https://leetcode.com/problems/valid-anagram
20,Valid Parentheses,39.0%,Easy,0.009170695326061695, https://leetcode.com/problems/valid-parentheses
189,Rotate Array,34.7%,Easy,0.00904437880665999, https://leetcode.com/problems/rotate-array
295,Find Median from Data Stream,44.3%,Hard,0.00899893586856953, https://leetcode.com/problems/find-median-from-data-stream
63,Unique Paths II,34.6%,Medium,0.008712753874961187, https://leetcode.com/problems/unique-paths-ii
438,Find All Anagrams in a String,43.3%,Medium,0.008126822460497498, https://leetcode.com/problems/find-all-anagrams-in-a-string
253,Meeting Rooms II,45.7%,Medium,0.008079219870546493, https://leetcode.com/problems/meeting-rooms-ii
13,Roman to Integer,55.7%,Easy,0.007698267425752388, https://leetcode.com/problems/roman-to-integer
204,Count Primes,31.5%,Easy,0.007072165261362441, https://leetcode.com/problems/count-primes
973,K Closest Points to Origin,63.8%,Medium,0.005773688094426333, https://leetcode.com/problems/k-closest-points-to-origin
39,Combination Sum,56.1%,Medium,0.005715934396440999, https://leetcode.com/problems/combination-sum
50,Pow(x;n),30.3%,Medium,0.0055950070772402055, https://leetcode.com/problems/powx-n
237,Delete Node in a Linked List,63.8%,Easy,0.005144705881237697, https://leetcode.com/problems/delete-node-in-a-linked-list
15,3Sum,26.8%,Medium,0.004940992758742591, https://leetcode.com/problems/3sum
160,Intersection of Two Linked Lists,40.6%,Easy,0.004901369939720486, https://leetcode.com/problems/intersection-of-two-linked-lists
46,Permutations,63.5%,Medium,0.004216302230139218, https://leetcode.com/problems/permutations
23,Merge k Sorted Lists,40.2%,Hard,0.004051459000748015, https://leetcode.com/problems/merge-k-sorted-lists
198,House Robber,42.0%,Easy,0.0037576371128333645, https://leetcode.com/problems/house-robber
344,Reverse String,68.5%,Easy,0.003269579502519813, https://leetcode.com/problems/reverse-string
88,Merge Sorted Array,39.4%,Easy,0.0030102370714243072, https://leetcode.com/problems/merge-sorted-array
104,Maximum Depth of Binary Tree,66.0%,Easy,0.002787846801433134, https://leetcode.com/problems/maximum-depth-of-binary-tree
347,Top K Frequent Elements,61.2%,Medium,0.0014856636219477439, https://leetcode.com/problems/top-k-frequent-elements
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
42,Trapping Rain Water,48.9%,Hard,2.020411699325411, https://leetcode.com/problems/trapping-rain-water
289,Game of Life,54.5%,Medium,1.8133708003279605, https://leetcode.com/problems/game-of-life
1086,High Five,79.7%,Easy,1.7830513754574853, https://leetcode.com/problems/high-five
209,Minimum Size Subarray Sum,38.2%,Medium,1.576010476460035, https://leetcode.com/problems/minimum-size-subarray-sum
166,Fraction to Recurring Decimal,21.6%,Medium,1.3689695774625845, https://leetcode.com/problems/fraction-to-recurring-decimal
722,Remove Comments,34.6%,Medium,1.2012832402757514, https://leetcode.com/problems/remove-comments
4,Median of Two Sorted Arrays,29.6%,Hard,1.1789254981240989, https://leetcode.com/problems/median-of-two-sorted-arrays
780,Reaching Points,29.4%,Hard,1.0654848189471613, https://leetcode.com/problems/reaching-points
862,Shortest Subarray with Sum at Least K,24.6%,Hard,1.0503043233346705, https://leetcode.com/problems/shortest-subarray-with-sum-at-least-k
387,First Unique Character in a String,53.4%,Easy,1.016175445916556, https://leetcode.com/problems/first-unique-character-in-a-string
688,Knight Probability in Chessboard,48.9%,Medium,0.875792939010168, https://leetcode.com/problems/knight-probability-in-chessboard
706,Design HashMap,61.3%,Easy,0.8231356111081237, https://leetcode.com/problems/design-hashmap
443,String Compression,41.3%,Easy,0.8171356348259033, https://leetcode.com/problems/string-compression
1041,Robot Bounded In Circle,49.6%,Medium,0.695004191307158, https://leetcode.com/problems/robot-bounded-in-circle
49,Group Anagrams,56.9%,Medium,0.6192590691619644, https://leetcode.com/problems/group-anagrams
1163,Last Substring in Lexicographical Order,33.9%,Hard,0.6115111972698513, https://leetcode.com/problems/last-substring-in-lexicographical-order
238,Product of Array Except Self,60.1%,Medium,0.6032226884679701, https://leetcode.com/problems/product-of-array-except-self
592,Fraction Addition and Subtraction,49.0%,Medium,0.5193002507569628, https://leetcode.com/problems/fraction-addition-and-subtraction
64,Minimum Path Sum,54.5%,Medium,0.4040299464061684, https://leetcode.com/problems/minimum-path-sum
524,Longest Word in Dictionary through Deleting,48.4%,Medium,0.3371083689581862, https://leetcode.com/problems/longest-word-in-dictionary-through-deleting
11,Container With Most Water,50.8%,Medium,0.3160977539241027, https://leetcode.com/problems/container-with-most-water
121,Best Time to Buy and Sell Stock,50.5%,Easy,0.3069889871822863, https://leetcode.com/problems/best-time-to-buy-and-sell-stock
657,Robot Return to Origin,73.5%,Easy,0.2488586313688772, https://leetcode.com/problems/robot-return-to-origin
54,Spiral Matrix,34.1%,Medium,0.2464878617937269, https://leetcode.com/problems/spiral-matrix
8,String to Integer (atoi),15.4%,Medium,0.1937032943399984, https://leetcode.com/problems/string-to-integer-atoi
153,Find Minimum in Rotated Sorted Array,45.1%,Medium,0.16922265570239925, https://leetcode.com/problems/find-minimum-in-rotated-sorted-array
33,Search in Rotated Sorted Array,34.5%,Medium,0.1671909490991562, https://leetcode.com/problems/search-in-rotated-sorted-array
532,K-diff Pairs in an Array,31.6%,Easy,0.15718558352241233, https://leetcode.com/problems/k-diff-pairs-in-an-array
146,LRU Cache,33.2%,Medium,0.1090999130829226, https://leetcode.com/problems/lru-cache
931,Minimum Falling Path Sum,62.5%,Medium,0.10285229483975511, https://leetcode.com/problems/minimum-falling-path-sum
218,The Skyline Problem,34.6%,Hard,0.09823843958341322, https://leetcode.com/problems/the-skyline-problem
322,Coin Change,35.5%,Medium,0.09617246233782387, https://leetcode.com/problems/coin-change
720,Longest Word in Dictionary,48.2%,Easy,0.09362342046209744, https://leetcode.com/problems/longest-word-in-dictionary
326,Power of Three,42.1%,Easy,0.09026419332308504, https://leetcode.com/problems/power-of-three
942,DI String Match,72.6%,Easy,0.08495672247596549, https://leetcode.com/problems/di-string-match
939,Minimum Area Rectangle,51.8%,Medium,0.08361414004113359, https://leetcode.com/problems/minimum-area-rectangle
332,Reconstruct Itinerary,36.7%,Medium,0.08302143328026106, https://leetcode.com/problems/reconstruct-itinerary
887,Super Egg Drop,27.1%,Hard,0.08054440988796595, https://leetcode.com/problems/super-egg-drop
547,Friend Circles,58.6%,Medium,0.07408600065076033, https://leetcode.com/problems/friend-circles
155,Min Stack,44.5%,Easy,0.07340219281226193, https://leetcode.com/problems/min-stack
119,Pascal's Triangle II,49.0%,Easy,0.07211890069342013, https://leetcode.com/problems/pascals-triangle-ii
1,Two Sum,45.6%,Easy,0.07147453361485057, https://leetcode.com/problems/two-sum
200,Number of Islands,46.8%,Medium,0.06985103785996453, https://leetcode.com/problems/number-of-islands
1051,Height Checker,71.1%,Easy,0.06960783038095686, https://leetcode.com/problems/height-checker
141,Linked List Cycle,41.1%,Easy,0.06847358948474051, https://leetcode.com/problems/linked-list-cycle
460,LFU Cache,34.2%,Hard,0.06836374280939023, https://leetcode.com/problems/lfu-cache
588,Design In-Memory File System,45.9%,Hard,0.05841076215641451, https://leetcode.com/problems/design-in-memory-file-system
1395,Count Number of Teams,82.0%,Medium,0.056405927913552076, https://leetcode.com/problems/count-number-of-teams
62,Unique Paths,54.1%,Medium,0.055187969852649885, https://leetcode.com/problems/unique-paths
76,Minimum Window Substring,34.6%,Hard,0.05473322196089386, https://leetcode.com/problems/minimum-window-substring
724,Find Pivot Index,44.0%,Easy,0.05428741283782842, https://leetcode.com/problems/find-pivot-index
44,Wildcard Matching,24.7%,Hard,0.053722215229247965, https://leetcode.com/problems/wildcard-matching
91,Decode Ways,24.7%,Medium,0.05247487679829598, https://leetcode.com/problems/decode-ways
99,Recover Binary Search Tree,39.7%,Hard,0.051264071283762605, https://leetcode.com/problems/recover-binary-search-tree
560,Subarray Sum Equals K,43.9%,Medium,0.0512021569656579, https://leetcode.com/problems/subarray-sum-equals-k
206,Reverse Linked List,62.5%,Easy,0.046346967254127305, https://leetcode.com/problems/reverse-linked-list
78,Subsets,62.0%,Medium,0.044263005655043326, https://leetcode.com/problems/subsets
1010,Pairs of Songs With Total Durations Divisible by 60,47.4%,Easy,0.04180336980436055, https://leetcode.com/problems/pairs-of-songs-with-total-durations-divisible-by-60
56,Merge Intervals,39.3%,Medium,0.04173304225331761, https://leetcode.com/problems/merge-intervals
118,Pascal's Triangle,52.5%,Easy,0.041458432654901865, https://leetcode.com/problems/pascals-triangle
1219,Path with Maximum Gold,65.1%,Medium,0.04111576039097048, https://leetcode.com/problems/path-with-maximum-gold
647,Palindromic Substrings,60.6%,Medium,0.040968350772541844, https://leetcode.com/problems/palindromic-substrings
993,Cousins in Binary Tree,52.0%,Easy,0.03876454345024432, https://leetcode.com/problems/cousins-in-binary-tree
317,Shortest Distance from All Buildings,41.4%,Hard,0.03795522000043556, https://leetcode.com/problems/shortest-distance-from-all-buildings
992,Subarrays with K Different Integers,48.6%,Hard,0.03700699810869683, https://leetcode.com/problems/subarrays-with-k-different-integers
122,Best Time to Buy and Sell Stock II,57.0%,Easy,0.02979366347877695, https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii
19,Remove Nth Node From End of List,35.2%,Medium,0.027353171676046843, https://leetcode.com/problems/remove-nth-node-from-end-of-list
836,Rectangle Overlap,48.6%,Easy,0.024228925974379843, https://leetcode.com/problems/rectangle-overlap
215,Kth Largest Element in an Array,55.4%,Medium,0.02414409892936099, https://leetcode.com/problems/kth-largest-element-in-an-array
1209,Remove All Adjacent Duplicates in String II,56.9%,Medium,0.02324334737232728, https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string-ii
380,Insert Delete GetRandom O(1),47.5%,Medium,0.021962815449093263, https://leetcode.com/problems/insert-delete-getrandom-o1
167,Two Sum II - Input array is sorted,54.1%,Easy,0.021849838247772296, https://leetcode.com/problems/two-sum-ii-input-array-is-sorted
53,Maximum Subarray,46.5%,Easy,0.019336728821707075, https://leetcode.com/problems/maximum-subarray
3,Longest Substring Without Repeating Characters,30.4%,Medium,0.018891763947827014, https://leetcode.com/problems/longest-substring-without-repeating-characters
876,Middle of the Linked List,68.4%,Easy,0.01707497375257815, https://leetcode.com/problems/middle-of-the-linked-list
240,Search a 2D Matrix II,43.2%,Medium,0.0169815401480941, https://leetcode.com/problems/search-a-2d-matrix-ii
16,3Sum Closest,46.0%,Medium,0.016854331554982106, https://leetcode.com/problems/3sum-closest
628,Maximum Product of Three Numbers,47.1%,Easy,0.016529301951210565, https://leetcode.com/problems/maximum-product-of-three-numbers
120,Triangle,44.2%,Medium,0.013236460625830901, https://leetcode.com/problems/triangle
445,Add Two Numbers II,54.5%,Medium,0.01233061245747872, https://leetcode.com/problems/add-two-numbers-ii
98,Validate Binary Search Tree,27.8%,Medium,0.01172346369605921, https://leetcode.com/problems/validate-binary-search-tree
283,Move Zeroes,57.8%,Easy,0.01149190266804209, https://leetcode.com/problems/move-zeroes
207,Course Schedule,43.1%,Medium,0.01113459480911671, https://leetcode.com/problems/course-schedule
739,Daily Temperatures,63.3%,Medium,0.010032690121814417, https://leetcode.com/problems/daily-temperatures
72,Edit Distance,44.8%,Hard,0.010017614452317782, https://leetcode.com/problems/edit-distance
17,Letter Combinations of a Phone Number,46.8%,Medium,0.00987716546167603, https://leetcode.com/problems/letter-combinations-of-a-phone-number
70,Climbing Stairs,47.8%,Easy,0.009390798483527519, https://leetcode.com/problems/climbing-stairs
242,Valid Anagram,56.9%,Easy,0.009322628116274939, https://leetcode.com/problems/valid-anagram
20,Valid Parentheses,39.0%,Easy,0.009170695326061695, https://leetcode.com/problems/valid-parentheses
189,Rotate Array,34.7%,Easy,0.00904437880665999, https://leetcode.com/problems/rotate-array
295,Find Median from Data Stream,44.3%,Hard,0.00899893586856953, https://leetcode.com/problems/find-median-from-data-stream
63,Unique Paths II,34.6%,Medium,0.008712753874961187, https://leetcode.com/problems/unique-paths-ii
438,Find All Anagrams in a String,43.3%,Medium,0.008126822460497498, https://leetcode.com/problems/find-all-anagrams-in-a-string
253,Meeting Rooms II,45.7%,Medium,0.008079219870546493, https://leetcode.com/problems/meeting-rooms-ii
13,Roman to Integer,55.7%,Easy,0.007698267425752388, https://leetcode.com/problems/roman-to-integer
204,Count Primes,31.5%,Easy,0.007072165261362441, https://leetcode.com/problems/count-primes
973,K Closest Points to Origin,63.8%,Medium,0.005773688094426333, https://leetcode.com/problems/k-closest-points-to-origin
39,Combination Sum,56.1%,Medium,0.005715934396440999, https://leetcode.com/problems/combination-sum
50,Pow(x;n),30.3%,Medium,0.0055950070772402055, https://leetcode.com/problems/powx-n
237,Delete Node in a Linked List,63.8%,Easy,0.005144705881237697, https://leetcode.com/problems/delete-node-in-a-linked-list
15,3Sum,26.8%,Medium,0.004940992758742591, https://leetcode.com/problems/3sum
160,Intersection of Two Linked Lists,40.6%,Easy,0.004901369939720486, https://leetcode.com/problems/intersection-of-two-linked-lists
46,Permutations,63.5%,Medium,0.004216302230139218, https://leetcode.com/problems/permutations
23,Merge k Sorted Lists,40.2%,Hard,0.004051459000748015, https://leetcode.com/problems/merge-k-sorted-lists
198,House Robber,42.0%,Easy,0.0037576371128333645, https://leetcode.com/problems/house-robber
344,Reverse String,68.5%,Easy,0.003269579502519813, https://leetcode.com/problems/reverse-string
88,Merge Sorted Array,39.4%,Easy,0.0030102370714243072, https://leetcode.com/problems/merge-sorted-array
104,Maximum Depth of Binary Tree,66.0%,Easy,0.002787846801433134, https://leetcode.com/problems/maximum-depth-of-binary-tree
347,Top K Frequent Elements,61.2%,Medium,0.0014856636219477439, https://leetcode.com/problems/top-k-frequent-elements
1 42 ID Trapping Rain Water Title 48.9% Acceptance Hard Difficulty 2.020411699325411 Frequency https://leetcode.com/problems/trapping-rain-water Leetcode Question Link
2 289 42 Game of Life Trapping Rain Water 54.5% 48.9% Medium Hard 1.8133708003279605 2.020411699325411 https://leetcode.com/problems/game-of-life https://leetcode.com/problems/trapping-rain-water
3 1086 289 High Five Game of Life 79.7% 54.5% Easy Medium 1.7830513754574853 1.8133708003279605 https://leetcode.com/problems/high-five https://leetcode.com/problems/game-of-life
4 209 1086 Minimum Size Subarray Sum High Five 38.2% 79.7% Medium Easy 1.576010476460035 1.7830513754574853 https://leetcode.com/problems/minimum-size-subarray-sum https://leetcode.com/problems/high-five
5 166 209 Fraction to Recurring Decimal Minimum Size Subarray Sum 21.6% 38.2% Medium Medium 1.3689695774625845 1.576010476460035 https://leetcode.com/problems/fraction-to-recurring-decimal https://leetcode.com/problems/minimum-size-subarray-sum
6 722 166 Remove Comments Fraction to Recurring Decimal 34.6% 21.6% Medium Medium 1.2012832402757514 1.3689695774625845 https://leetcode.com/problems/remove-comments https://leetcode.com/problems/fraction-to-recurring-decimal
7 4 722 Median of Two Sorted Arrays Remove Comments 29.6% 34.6% Hard Medium 1.1789254981240989 1.2012832402757514 https://leetcode.com/problems/median-of-two-sorted-arrays https://leetcode.com/problems/remove-comments
8 780 4 Reaching Points Median of Two Sorted Arrays 29.4% 29.6% Hard Hard 1.0654848189471613 1.1789254981240989 https://leetcode.com/problems/reaching-points https://leetcode.com/problems/median-of-two-sorted-arrays
9 862 780 Shortest Subarray with Sum at Least K Reaching Points 24.6% 29.4% Hard Hard 1.0503043233346705 1.0654848189471613 https://leetcode.com/problems/shortest-subarray-with-sum-at-least-k https://leetcode.com/problems/reaching-points
10 387 862 First Unique Character in a String Shortest Subarray with Sum at Least K 53.4% 24.6% Easy Hard 1.016175445916556 1.0503043233346705 https://leetcode.com/problems/first-unique-character-in-a-string https://leetcode.com/problems/shortest-subarray-with-sum-at-least-k
11 688 387 Knight Probability in Chessboard First Unique Character in a String 48.9% 53.4% Medium Easy 0.875792939010168 1.016175445916556 https://leetcode.com/problems/knight-probability-in-chessboard https://leetcode.com/problems/first-unique-character-in-a-string
12 706 688 Design HashMap Knight Probability in Chessboard 61.3% 48.9% Easy Medium 0.8231356111081237 0.875792939010168 https://leetcode.com/problems/design-hashmap https://leetcode.com/problems/knight-probability-in-chessboard
13 443 706 String Compression Design HashMap 41.3% 61.3% Easy Easy 0.8171356348259033 0.8231356111081237 https://leetcode.com/problems/string-compression https://leetcode.com/problems/design-hashmap
14 1041 443 Robot Bounded In Circle String Compression 49.6% 41.3% Medium Easy 0.695004191307158 0.8171356348259033 https://leetcode.com/problems/robot-bounded-in-circle https://leetcode.com/problems/string-compression
15 49 1041 Group Anagrams Robot Bounded In Circle 56.9% 49.6% Medium Medium 0.6192590691619644 0.695004191307158 https://leetcode.com/problems/group-anagrams https://leetcode.com/problems/robot-bounded-in-circle
16 1163 49 Last Substring in Lexicographical Order Group Anagrams 33.9% 56.9% Hard Medium 0.6115111972698513 0.6192590691619644 https://leetcode.com/problems/last-substring-in-lexicographical-order https://leetcode.com/problems/group-anagrams
17 238 1163 Product of Array Except Self Last Substring in Lexicographical Order 60.1% 33.9% Medium Hard 0.6032226884679701 0.6115111972698513 https://leetcode.com/problems/product-of-array-except-self https://leetcode.com/problems/last-substring-in-lexicographical-order
18 592 238 Fraction Addition and Subtraction Product of Array Except Self 49.0% 60.1% Medium Medium 0.5193002507569628 0.6032226884679701 https://leetcode.com/problems/fraction-addition-and-subtraction https://leetcode.com/problems/product-of-array-except-self
19 64 592 Minimum Path Sum Fraction Addition and Subtraction 54.5% 49.0% Medium Medium 0.4040299464061684 0.5193002507569628 https://leetcode.com/problems/minimum-path-sum https://leetcode.com/problems/fraction-addition-and-subtraction
20 524 64 Longest Word in Dictionary through Deleting Minimum Path Sum 48.4% 54.5% Medium Medium 0.3371083689581862 0.4040299464061684 https://leetcode.com/problems/longest-word-in-dictionary-through-deleting https://leetcode.com/problems/minimum-path-sum
21 11 524 Container With Most Water Longest Word in Dictionary through Deleting 50.8% 48.4% Medium Medium 0.3160977539241027 0.3371083689581862 https://leetcode.com/problems/container-with-most-water https://leetcode.com/problems/longest-word-in-dictionary-through-deleting
22 121 11 Best Time to Buy and Sell Stock Container With Most Water 50.5% 50.8% Easy Medium 0.3069889871822863 0.3160977539241027 https://leetcode.com/problems/best-time-to-buy-and-sell-stock https://leetcode.com/problems/container-with-most-water
23 657 121 Robot Return to Origin Best Time to Buy and Sell Stock 73.5% 50.5% Easy Easy 0.2488586313688772 0.3069889871822863 https://leetcode.com/problems/robot-return-to-origin https://leetcode.com/problems/best-time-to-buy-and-sell-stock
24 54 657 Spiral Matrix Robot Return to Origin 34.1% 73.5% Medium Easy 0.2464878617937269 0.2488586313688772 https://leetcode.com/problems/spiral-matrix https://leetcode.com/problems/robot-return-to-origin
25 8 54 String to Integer (atoi) Spiral Matrix 15.4% 34.1% Medium Medium 0.1937032943399984 0.2464878617937269 https://leetcode.com/problems/string-to-integer-atoi https://leetcode.com/problems/spiral-matrix
26 153 8 Find Minimum in Rotated Sorted Array String to Integer (atoi) 45.1% 15.4% Medium Medium 0.16922265570239925 0.1937032943399984 https://leetcode.com/problems/find-minimum-in-rotated-sorted-array https://leetcode.com/problems/string-to-integer-atoi
27 33 153 Search in Rotated Sorted Array Find Minimum in Rotated Sorted Array 34.5% 45.1% Medium Medium 0.1671909490991562 0.16922265570239925 https://leetcode.com/problems/search-in-rotated-sorted-array https://leetcode.com/problems/find-minimum-in-rotated-sorted-array
28 532 33 K-diff Pairs in an Array Search in Rotated Sorted Array 31.6% 34.5% Easy Medium 0.15718558352241233 0.1671909490991562 https://leetcode.com/problems/k-diff-pairs-in-an-array https://leetcode.com/problems/search-in-rotated-sorted-array
29 146 532 LRU Cache K-diff Pairs in an Array 33.2% 31.6% Medium Easy 0.1090999130829226 0.15718558352241233 https://leetcode.com/problems/lru-cache https://leetcode.com/problems/k-diff-pairs-in-an-array
30 931 146 Minimum Falling Path Sum LRU Cache 62.5% 33.2% Medium Medium 0.10285229483975511 0.1090999130829226 https://leetcode.com/problems/minimum-falling-path-sum https://leetcode.com/problems/lru-cache
31 218 931 The Skyline Problem Minimum Falling Path Sum 34.6% 62.5% Hard Medium 0.09823843958341322 0.10285229483975511 https://leetcode.com/problems/the-skyline-problem https://leetcode.com/problems/minimum-falling-path-sum
32 322 218 Coin Change The Skyline Problem 35.5% 34.6% Medium Hard 0.09617246233782387 0.09823843958341322 https://leetcode.com/problems/coin-change https://leetcode.com/problems/the-skyline-problem
33 720 322 Longest Word in Dictionary Coin Change 48.2% 35.5% Easy Medium 0.09362342046209744 0.09617246233782387 https://leetcode.com/problems/longest-word-in-dictionary https://leetcode.com/problems/coin-change
34 326 720 Power of Three Longest Word in Dictionary 42.1% 48.2% Easy Easy 0.09026419332308504 0.09362342046209744 https://leetcode.com/problems/power-of-three https://leetcode.com/problems/longest-word-in-dictionary
35 942 326 DI String Match Power of Three 72.6% 42.1% Easy Easy 0.08495672247596549 0.09026419332308504 https://leetcode.com/problems/di-string-match https://leetcode.com/problems/power-of-three
36 939 942 Minimum Area Rectangle DI String Match 51.8% 72.6% Medium Easy 0.08361414004113359 0.08495672247596549 https://leetcode.com/problems/minimum-area-rectangle https://leetcode.com/problems/di-string-match
37 332 939 Reconstruct Itinerary Minimum Area Rectangle 36.7% 51.8% Medium Medium 0.08302143328026106 0.08361414004113359 https://leetcode.com/problems/reconstruct-itinerary https://leetcode.com/problems/minimum-area-rectangle
38 887 332 Super Egg Drop Reconstruct Itinerary 27.1% 36.7% Hard Medium 0.08054440988796595 0.08302143328026106 https://leetcode.com/problems/super-egg-drop https://leetcode.com/problems/reconstruct-itinerary
39 547 887 Friend Circles Super Egg Drop 58.6% 27.1% Medium Hard 0.07408600065076033 0.08054440988796595 https://leetcode.com/problems/friend-circles https://leetcode.com/problems/super-egg-drop
40 155 547 Min Stack Friend Circles 44.5% 58.6% Easy Medium 0.07340219281226193 0.07408600065076033 https://leetcode.com/problems/min-stack https://leetcode.com/problems/friend-circles
41 119 155 Pascal's Triangle II Min Stack 49.0% 44.5% Easy Easy 0.07211890069342013 0.07340219281226193 https://leetcode.com/problems/pascals-triangle-ii https://leetcode.com/problems/min-stack
42 1 119 Two Sum Pascal's Triangle II 45.6% 49.0% Easy Easy 0.07147453361485057 0.07211890069342013 https://leetcode.com/problems/two-sum https://leetcode.com/problems/pascals-triangle-ii
43 200 1 Number of Islands Two Sum 46.8% 45.6% Medium Easy 0.06985103785996453 0.07147453361485057 https://leetcode.com/problems/number-of-islands https://leetcode.com/problems/two-sum
44 1051 200 Height Checker Number of Islands 71.1% 46.8% Easy Medium 0.06960783038095686 0.06985103785996453 https://leetcode.com/problems/height-checker https://leetcode.com/problems/number-of-islands
45 141 1051 Linked List Cycle Height Checker 41.1% 71.1% Easy Easy 0.06847358948474051 0.06960783038095686 https://leetcode.com/problems/linked-list-cycle https://leetcode.com/problems/height-checker
46 460 141 LFU Cache Linked List Cycle 34.2% 41.1% Hard Easy 0.06836374280939023 0.06847358948474051 https://leetcode.com/problems/lfu-cache https://leetcode.com/problems/linked-list-cycle
47 588 460 Design In-Memory File System LFU Cache 45.9% 34.2% Hard Hard 0.05841076215641451 0.06836374280939023 https://leetcode.com/problems/design-in-memory-file-system https://leetcode.com/problems/lfu-cache
48 1395 588 Count Number of Teams Design In-Memory File System 82.0% 45.9% Medium Hard 0.056405927913552076 0.05841076215641451 https://leetcode.com/problems/count-number-of-teams https://leetcode.com/problems/design-in-memory-file-system
49 62 1395 Unique Paths Count Number of Teams 54.1% 82.0% Medium Medium 0.055187969852649885 0.056405927913552076 https://leetcode.com/problems/unique-paths https://leetcode.com/problems/count-number-of-teams
50 76 62 Minimum Window Substring Unique Paths 34.6% 54.1% Hard Medium 0.05473322196089386 0.055187969852649885 https://leetcode.com/problems/minimum-window-substring https://leetcode.com/problems/unique-paths
51 724 76 Find Pivot Index Minimum Window Substring 44.0% 34.6% Easy Hard 0.05428741283782842 0.05473322196089386 https://leetcode.com/problems/find-pivot-index https://leetcode.com/problems/minimum-window-substring
52 44 724 Wildcard Matching Find Pivot Index 24.7% 44.0% Hard Easy 0.053722215229247965 0.05428741283782842 https://leetcode.com/problems/wildcard-matching https://leetcode.com/problems/find-pivot-index
53 91 44 Decode Ways Wildcard Matching 24.7% 24.7% Medium Hard 0.05247487679829598 0.053722215229247965 https://leetcode.com/problems/decode-ways https://leetcode.com/problems/wildcard-matching
54 99 91 Recover Binary Search Tree Decode Ways 39.7% 24.7% Hard Medium 0.051264071283762605 0.05247487679829598 https://leetcode.com/problems/recover-binary-search-tree https://leetcode.com/problems/decode-ways
55 560 99 Subarray Sum Equals K Recover Binary Search Tree 43.9% 39.7% Medium Hard 0.0512021569656579 0.051264071283762605 https://leetcode.com/problems/subarray-sum-equals-k https://leetcode.com/problems/recover-binary-search-tree
56 206 560 Reverse Linked List Subarray Sum Equals K 62.5% 43.9% Easy Medium 0.046346967254127305 0.0512021569656579 https://leetcode.com/problems/reverse-linked-list https://leetcode.com/problems/subarray-sum-equals-k
57 78 206 Subsets Reverse Linked List 62.0% 62.5% Medium Easy 0.044263005655043326 0.046346967254127305 https://leetcode.com/problems/subsets https://leetcode.com/problems/reverse-linked-list
58 1010 78 Pairs of Songs With Total Durations Divisible by 60 Subsets 47.4% 62.0% Easy Medium 0.04180336980436055 0.044263005655043326 https://leetcode.com/problems/pairs-of-songs-with-total-durations-divisible-by-60 https://leetcode.com/problems/subsets
59 56 1010 Merge Intervals Pairs of Songs With Total Durations Divisible by 60 39.3% 47.4% Medium Easy 0.04173304225331761 0.04180336980436055 https://leetcode.com/problems/merge-intervals https://leetcode.com/problems/pairs-of-songs-with-total-durations-divisible-by-60
60 118 56 Pascal's Triangle Merge Intervals 52.5% 39.3% Easy Medium 0.041458432654901865 0.04173304225331761 https://leetcode.com/problems/pascals-triangle https://leetcode.com/problems/merge-intervals
61 1219 118 Path with Maximum Gold Pascal's Triangle 65.1% 52.5% Medium Easy 0.04111576039097048 0.041458432654901865 https://leetcode.com/problems/path-with-maximum-gold https://leetcode.com/problems/pascals-triangle
62 647 1219 Palindromic Substrings Path with Maximum Gold 60.6% 65.1% Medium Medium 0.040968350772541844 0.04111576039097048 https://leetcode.com/problems/palindromic-substrings https://leetcode.com/problems/path-with-maximum-gold
63 993 647 Cousins in Binary Tree Palindromic Substrings 52.0% 60.6% Easy Medium 0.03876454345024432 0.040968350772541844 https://leetcode.com/problems/cousins-in-binary-tree https://leetcode.com/problems/palindromic-substrings
64 317 993 Shortest Distance from All Buildings Cousins in Binary Tree 41.4% 52.0% Hard Easy 0.03795522000043556 0.03876454345024432 https://leetcode.com/problems/shortest-distance-from-all-buildings https://leetcode.com/problems/cousins-in-binary-tree
65 992 317 Subarrays with K Different Integers Shortest Distance from All Buildings 48.6% 41.4% Hard Hard 0.03700699810869683 0.03795522000043556 https://leetcode.com/problems/subarrays-with-k-different-integers https://leetcode.com/problems/shortest-distance-from-all-buildings
66 122 992 Best Time to Buy and Sell Stock II Subarrays with K Different Integers 57.0% 48.6% Easy Hard 0.02979366347877695 0.03700699810869683 https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii https://leetcode.com/problems/subarrays-with-k-different-integers
67 19 122 Remove Nth Node From End of List Best Time to Buy and Sell Stock II 35.2% 57.0% Medium Easy 0.027353171676046843 0.02979366347877695 https://leetcode.com/problems/remove-nth-node-from-end-of-list https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii
68 836 19 Rectangle Overlap Remove Nth Node From End of List 48.6% 35.2% Easy Medium 0.024228925974379843 0.027353171676046843 https://leetcode.com/problems/rectangle-overlap https://leetcode.com/problems/remove-nth-node-from-end-of-list
69 215 836 Kth Largest Element in an Array Rectangle Overlap 55.4% 48.6% Medium Easy 0.02414409892936099 0.024228925974379843 https://leetcode.com/problems/kth-largest-element-in-an-array https://leetcode.com/problems/rectangle-overlap
70 1209 215 Remove All Adjacent Duplicates in String II Kth Largest Element in an Array 56.9% 55.4% Medium Medium 0.02324334737232728 0.02414409892936099 https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string-ii https://leetcode.com/problems/kth-largest-element-in-an-array
71 380 1209 Insert Delete GetRandom O(1) Remove All Adjacent Duplicates in String II 47.5% 56.9% Medium Medium 0.021962815449093263 0.02324334737232728 https://leetcode.com/problems/insert-delete-getrandom-o1 https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string-ii
72 167 380 Two Sum II - Input array is sorted Insert Delete GetRandom O(1) 54.1% 47.5% Easy Medium 0.021849838247772296 0.021962815449093263 https://leetcode.com/problems/two-sum-ii-input-array-is-sorted https://leetcode.com/problems/insert-delete-getrandom-o1
73 53 167 Maximum Subarray Two Sum II - Input array is sorted 46.5% 54.1% Easy Easy 0.019336728821707075 0.021849838247772296 https://leetcode.com/problems/maximum-subarray https://leetcode.com/problems/two-sum-ii-input-array-is-sorted
74 3 53 Longest Substring Without Repeating Characters Maximum Subarray 30.4% 46.5% Medium Easy 0.018891763947827014 0.019336728821707075 https://leetcode.com/problems/longest-substring-without-repeating-characters https://leetcode.com/problems/maximum-subarray
75 876 3 Middle of the Linked List Longest Substring Without Repeating Characters 68.4% 30.4% Easy Medium 0.01707497375257815 0.018891763947827014 https://leetcode.com/problems/middle-of-the-linked-list https://leetcode.com/problems/longest-substring-without-repeating-characters
76 240 876 Search a 2D Matrix II Middle of the Linked List 43.2% 68.4% Medium Easy 0.0169815401480941 0.01707497375257815 https://leetcode.com/problems/search-a-2d-matrix-ii https://leetcode.com/problems/middle-of-the-linked-list
77 16 240 3Sum Closest Search a 2D Matrix II 46.0% 43.2% Medium Medium 0.016854331554982106 0.0169815401480941 https://leetcode.com/problems/3sum-closest https://leetcode.com/problems/search-a-2d-matrix-ii
78 628 16 Maximum Product of Three Numbers 3Sum Closest 47.1% 46.0% Easy Medium 0.016529301951210565 0.016854331554982106 https://leetcode.com/problems/maximum-product-of-three-numbers https://leetcode.com/problems/3sum-closest
79 120 628 Triangle Maximum Product of Three Numbers 44.2% 47.1% Medium Easy 0.013236460625830901 0.016529301951210565 https://leetcode.com/problems/triangle https://leetcode.com/problems/maximum-product-of-three-numbers
80 445 120 Add Two Numbers II Triangle 54.5% 44.2% Medium Medium 0.01233061245747872 0.013236460625830901 https://leetcode.com/problems/add-two-numbers-ii https://leetcode.com/problems/triangle
81 98 445 Validate Binary Search Tree Add Two Numbers II 27.8% 54.5% Medium Medium 0.01172346369605921 0.01233061245747872 https://leetcode.com/problems/validate-binary-search-tree https://leetcode.com/problems/add-two-numbers-ii
82 283 98 Move Zeroes Validate Binary Search Tree 57.8% 27.8% Easy Medium 0.01149190266804209 0.01172346369605921 https://leetcode.com/problems/move-zeroes https://leetcode.com/problems/validate-binary-search-tree
83 207 283 Course Schedule Move Zeroes 43.1% 57.8% Medium Easy 0.01113459480911671 0.01149190266804209 https://leetcode.com/problems/course-schedule https://leetcode.com/problems/move-zeroes
84 739 207 Daily Temperatures Course Schedule 63.3% 43.1% Medium Medium 0.010032690121814417 0.01113459480911671 https://leetcode.com/problems/daily-temperatures https://leetcode.com/problems/course-schedule
85 72 739 Edit Distance Daily Temperatures 44.8% 63.3% Hard Medium 0.010017614452317782 0.010032690121814417 https://leetcode.com/problems/edit-distance https://leetcode.com/problems/daily-temperatures
86 17 72 Letter Combinations of a Phone Number Edit Distance 46.8% 44.8% Medium Hard 0.00987716546167603 0.010017614452317782 https://leetcode.com/problems/letter-combinations-of-a-phone-number https://leetcode.com/problems/edit-distance
87 70 17 Climbing Stairs Letter Combinations of a Phone Number 47.8% 46.8% Easy Medium 0.009390798483527519 0.00987716546167603 https://leetcode.com/problems/climbing-stairs https://leetcode.com/problems/letter-combinations-of-a-phone-number
88 242 70 Valid Anagram Climbing Stairs 56.9% 47.8% Easy Easy 0.009322628116274939 0.009390798483527519 https://leetcode.com/problems/valid-anagram https://leetcode.com/problems/climbing-stairs
89 20 242 Valid Parentheses Valid Anagram 39.0% 56.9% Easy Easy 0.009170695326061695 0.009322628116274939 https://leetcode.com/problems/valid-parentheses https://leetcode.com/problems/valid-anagram
90 189 20 Rotate Array Valid Parentheses 34.7% 39.0% Easy Easy 0.00904437880665999 0.009170695326061695 https://leetcode.com/problems/rotate-array https://leetcode.com/problems/valid-parentheses
91 295 189 Find Median from Data Stream Rotate Array 44.3% 34.7% Hard Easy 0.00899893586856953 0.00904437880665999 https://leetcode.com/problems/find-median-from-data-stream https://leetcode.com/problems/rotate-array
92 63 295 Unique Paths II Find Median from Data Stream 34.6% 44.3% Medium Hard 0.008712753874961187 0.00899893586856953 https://leetcode.com/problems/unique-paths-ii https://leetcode.com/problems/find-median-from-data-stream
93 438 63 Find All Anagrams in a String Unique Paths II 43.3% 34.6% Medium Medium 0.008126822460497498 0.008712753874961187 https://leetcode.com/problems/find-all-anagrams-in-a-string https://leetcode.com/problems/unique-paths-ii
94 253 438 Meeting Rooms II Find All Anagrams in a String 45.7% 43.3% Medium Medium 0.008079219870546493 0.008126822460497498 https://leetcode.com/problems/meeting-rooms-ii https://leetcode.com/problems/find-all-anagrams-in-a-string
95 13 253 Roman to Integer Meeting Rooms II 55.7% 45.7% Easy Medium 0.007698267425752388 0.008079219870546493 https://leetcode.com/problems/roman-to-integer https://leetcode.com/problems/meeting-rooms-ii
96 204 13 Count Primes Roman to Integer 31.5% 55.7% Easy Easy 0.007072165261362441 0.007698267425752388 https://leetcode.com/problems/count-primes https://leetcode.com/problems/roman-to-integer
97 973 204 K Closest Points to Origin Count Primes 63.8% 31.5% Medium Easy 0.005773688094426333 0.007072165261362441 https://leetcode.com/problems/k-closest-points-to-origin https://leetcode.com/problems/count-primes
98 39 973 Combination Sum K Closest Points to Origin 56.1% 63.8% Medium Medium 0.005715934396440999 0.005773688094426333 https://leetcode.com/problems/combination-sum https://leetcode.com/problems/k-closest-points-to-origin
99 50 39 Pow(x;n) Combination Sum 30.3% 56.1% Medium Medium 0.0055950070772402055 0.005715934396440999 https://leetcode.com/problems/powx-n https://leetcode.com/problems/combination-sum
100 237 50 Delete Node in a Linked List Pow(x;n) 63.8% 30.3% Easy Medium 0.005144705881237697 0.0055950070772402055 https://leetcode.com/problems/delete-node-in-a-linked-list https://leetcode.com/problems/powx-n
101 15 237 3Sum Delete Node in a Linked List 26.8% 63.8% Medium Easy 0.004940992758742591 0.005144705881237697 https://leetcode.com/problems/3sum https://leetcode.com/problems/delete-node-in-a-linked-list
102 160 15 Intersection of Two Linked Lists 3Sum 40.6% 26.8% Easy Medium 0.004901369939720486 0.004940992758742591 https://leetcode.com/problems/intersection-of-two-linked-lists https://leetcode.com/problems/3sum
103 46 160 Permutations Intersection of Two Linked Lists 63.5% 40.6% Medium Easy 0.004216302230139218 0.004901369939720486 https://leetcode.com/problems/permutations https://leetcode.com/problems/intersection-of-two-linked-lists
104 23 46 Merge k Sorted Lists Permutations 40.2% 63.5% Hard Medium 0.004051459000748015 0.004216302230139218 https://leetcode.com/problems/merge-k-sorted-lists https://leetcode.com/problems/permutations
105 198 23 House Robber Merge k Sorted Lists 42.0% 40.2% Easy Hard 0.0037576371128333645 0.004051459000748015 https://leetcode.com/problems/house-robber https://leetcode.com/problems/merge-k-sorted-lists
106 344 198 Reverse String House Robber 68.5% 42.0% Easy Easy 0.003269579502519813 0.0037576371128333645 https://leetcode.com/problems/reverse-string https://leetcode.com/problems/house-robber
107 88 344 Merge Sorted Array Reverse String 39.4% 68.5% Easy Easy 0.0030102370714243072 0.003269579502519813 https://leetcode.com/problems/merge-sorted-array https://leetcode.com/problems/reverse-string
108 104 88 Maximum Depth of Binary Tree Merge Sorted Array 66.0% 39.4% Easy Easy 0.002787846801433134 0.0030102370714243072 https://leetcode.com/problems/maximum-depth-of-binary-tree https://leetcode.com/problems/merge-sorted-array
109 347 104 Top K Frequent Elements Maximum Depth of Binary Tree 61.2% 66.0% Medium Easy 0.0014856636219477439 0.002787846801433134 https://leetcode.com/problems/top-k-frequent-elements https://leetcode.com/problems/maximum-depth-of-binary-tree
110 347 Top K Frequent Elements 61.2% Medium 0.0014856636219477439 https://leetcode.com/problems/top-k-frequent-elements