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,59 +1,60 @@
6,ZigZag Conversion,36.3%,Medium,0.8494120771045042, https://leetcode.com/problems/zigzag-conversion
1473,Paint House III,48.1%,Hard,0.6775218626568644, https://leetcode.com/problems/paint-house-iii
1041,Robot Bounded In Circle,49.6%,Medium,0.583924058361535, https://leetcode.com/problems/robot-bounded-in-circle
243,Shortest Word Distance,61.0%,Easy,0.41203384391389536, https://leetcode.com/problems/shortest-word-distance
1,Two Sum,45.6%,Easy,0.3475579001540161, https://leetcode.com/problems/two-sum
1497,Check If Array Pairs Are Divisible by k,41.1%,Medium,0.30887395064431883, https://leetcode.com/problems/check-if-array-pairs-are-divisible-by-k
1297,Maximum Number of Occurrences of a Substring,47.3%,Medium,0.2800774730665616, https://leetcode.com/problems/maximum-number-of-occurrences-of-a-substring
273,Integer to English Words,27.1%,Hard,0.26532833604818473, https://leetcode.com/problems/integer-to-english-words
146,LRU Cache,33.2%,Medium,0.2585885798043696, https://leetcode.com/problems/lru-cache
54,Spiral Matrix,34.1%,Medium,0.18243181645556916, https://leetcode.com/problems/spiral-matrix
56,Merge Intervals,39.3%,Medium,0.13713421800838543, https://leetcode.com/problems/merge-intervals
224,Basic Calculator,36.8%,Hard,0.12435274487954455, https://leetcode.com/problems/basic-calculator
242,Valid Anagram,56.9%,Easy,0.11860368841030557, https://leetcode.com/problems/valid-anagram
20,Valid Parentheses,39.0%,Easy,0.10693122823835342, https://leetcode.com/problems/valid-parentheses
68,Text Justification,27.7%,Hard,0.10627110304957266, https://leetcode.com/problems/text-justification
977,Squares of a Sorted Array,72.1%,Easy,0.07598590697792203, https://leetcode.com/problems/squares-of-a-sorted-array
532,K-diff Pairs in an Array,31.6%,Easy,0.07292523990467245, https://leetcode.com/problems/k-diff-pairs-in-an-array
283,Move Zeroes,57.8%,Easy,0.06974868393702997, https://leetcode.com/problems/move-zeroes
206,Reverse Linked List,62.5%,Easy,0.06846564614449077, https://leetcode.com/problems/reverse-linked-list
199,Binary Tree Right Side View,54.1%,Medium,0.06748154336946242, https://leetcode.com/problems/binary-tree-right-side-view
53,Maximum Subarray,46.5%,Easy,0.06356179958832935, https://leetcode.com/problems/maximum-subarray
25,Reverse Nodes in k-Group,42.1%,Hard,0.062178154907672076, https://leetcode.com/problems/reverse-nodes-in-k-group
416,Partition Equal Subset Sum,43.7%,Medium,0.05309102319682948, https://leetcode.com/problems/partition-equal-subset-sum
12,Integer to Roman,55.1%,Medium,0.05217122936969127, https://leetcode.com/problems/integer-to-roman
82,Remove Duplicates from Sorted List II,36.8%,Medium,0.05090157276603699, https://leetcode.com/problems/remove-duplicates-from-sorted-list-ii
2,Add Two Numbers,33.9%,Medium,0.04985995397332526, https://leetcode.com/problems/add-two-numbers
240,Search a 2D Matrix II,43.2%,Medium,0.04647676584572884, https://leetcode.com/problems/search-a-2d-matrix-ii
236,Lowest Common Ancestor of a Binary Tree,45.7%,Medium,0.041648587234261826, https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree
46,Permutations,63.5%,Medium,0.03732163223353564, https://leetcode.com/problems/permutations
128,Longest Consecutive Sequence,45.1%,Hard,0.035726058864721646, https://leetcode.com/problems/longest-consecutive-sequence
238,Product of Array Except Self,60.1%,Medium,0.03482987258052727, https://leetcode.com/problems/product-of-array-except-self
75,Sort Colors,47.3%,Medium,0.030801991570373215, https://leetcode.com/problems/sort-colors
134,Gas Station,38.5%,Medium,0.030183377823098576, https://leetcode.com/problems/gas-station
344,Reverse String,68.5%,Easy,0.029048355159926334, https://leetcode.com/problems/reverse-string
324,Wiggle Sort II,29.9%,Medium,0.02898753687325229, https://leetcode.com/problems/wiggle-sort-ii
33,Search in Rotated Sorted Array,34.5%,Medium,0.0287009496170278, https://leetcode.com/problems/search-in-rotated-sorted-array
73,Set Matrix Zeroes,43.1%,Medium,0.027769920533553028, https://leetcode.com/problems/set-matrix-zeroes
5,Longest Palindromic Substring,29.5%,Medium,0.02757010450426751, https://leetcode.com/problems/longest-palindromic-substring
735,Asteroid Collision,41.0%,Medium,0.024723138086794758, https://leetcode.com/problems/asteroid-collision
3,Longest Substring Without Repeating Characters,30.4%,Medium,0.024604324231039386, https://leetcode.com/problems/longest-substring-without-repeating-characters
28,Implement strStr(),34.5%,Easy,0.02439383324633083, https://leetcode.com/problems/implement-strstr
72,Edit Distance,44.8%,Hard,0.022400140173127806, https://leetcode.com/problems/edit-distance
21,Merge Two Sorted Lists,53.5%,Easy,0.02011578137441701, https://leetcode.com/problems/merge-two-sorted-lists
15,3Sum,26.8%,Medium,0.019619157889188592, https://leetcode.com/problems/3sum
121,Best Time to Buy and Sell Stock,50.5%,Easy,0.018954919107260947, https://leetcode.com/problems/best-time-to-buy-and-sell-stock
253,Meeting Rooms II,45.7%,Medium,0.018087309810579388, https://leetcode.com/problems/meeting-rooms-ii
322,Coin Change,35.5%,Medium,0.016022774188122292, https://leetcode.com/problems/coin-change
189,Rotate Array,34.7%,Easy,0.016022774188122292, https://leetcode.com/problems/rotate-array
557,Reverse Words in a String III,69.8%,Easy,0.013731764001315941, https://leetcode.com/problems/reverse-words-in-a-string-iii
1047,Remove All Adjacent Duplicates In String,68.6%,Easy,0.013059277989179281, https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string
227,Basic Calculator II,36.9%,Medium,0.01239941490503826, https://leetcode.com/problems/basic-calculator-ii
876,Middle of the Linked List,68.4%,Easy,0.007624893975696915, https://leetcode.com/problems/middle-of-the-linked-list
200,Number of Islands,46.8%,Medium,0.006490251382779317, https://leetcode.com/problems/number-of-islands
973,K Closest Points to Origin,63.8%,Medium,0.005773688094426333, https://leetcode.com/problems/k-closest-points-to-origin
167,Two Sum II - Input array is sorted,54.1%,Easy,0.005507380022589096, https://leetcode.com/problems/two-sum-ii-input-array-is-sorted
207,Course Schedule,43.1%,Medium,0.004964021114211758, https://leetcode.com/problems/course-schedule
104,Maximum Depth of Binary Tree,66.0%,Easy,0.002787846801433134, https://leetcode.com/problems/maximum-depth-of-binary-tree
203,Remove Linked List Elements,38.6%,Easy,0.0016237064659255223, https://leetcode.com/problems/remove-linked-list-elements
1229,Meeting Scheduler,52.7%,Medium,0, https://leetcode.com/problems/meeting-scheduler
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
6,ZigZag Conversion,36.3%,Medium,0.8494120771045042, https://leetcode.com/problems/zigzag-conversion
1473,Paint House III,48.1%,Hard,0.6775218626568644, https://leetcode.com/problems/paint-house-iii
1041,Robot Bounded In Circle,49.6%,Medium,0.583924058361535, https://leetcode.com/problems/robot-bounded-in-circle
243,Shortest Word Distance,61.0%,Easy,0.41203384391389536, https://leetcode.com/problems/shortest-word-distance
1,Two Sum,45.6%,Easy,0.3475579001540161, https://leetcode.com/problems/two-sum
1497,Check If Array Pairs Are Divisible by k,41.1%,Medium,0.30887395064431883, https://leetcode.com/problems/check-if-array-pairs-are-divisible-by-k
1297,Maximum Number of Occurrences of a Substring,47.3%,Medium,0.2800774730665616, https://leetcode.com/problems/maximum-number-of-occurrences-of-a-substring
273,Integer to English Words,27.1%,Hard,0.26532833604818473, https://leetcode.com/problems/integer-to-english-words
146,LRU Cache,33.2%,Medium,0.2585885798043696, https://leetcode.com/problems/lru-cache
54,Spiral Matrix,34.1%,Medium,0.18243181645556916, https://leetcode.com/problems/spiral-matrix
56,Merge Intervals,39.3%,Medium,0.13713421800838543, https://leetcode.com/problems/merge-intervals
224,Basic Calculator,36.8%,Hard,0.12435274487954455, https://leetcode.com/problems/basic-calculator
242,Valid Anagram,56.9%,Easy,0.11860368841030557, https://leetcode.com/problems/valid-anagram
20,Valid Parentheses,39.0%,Easy,0.10693122823835342, https://leetcode.com/problems/valid-parentheses
68,Text Justification,27.7%,Hard,0.10627110304957266, https://leetcode.com/problems/text-justification
977,Squares of a Sorted Array,72.1%,Easy,0.07598590697792203, https://leetcode.com/problems/squares-of-a-sorted-array
532,K-diff Pairs in an Array,31.6%,Easy,0.07292523990467245, https://leetcode.com/problems/k-diff-pairs-in-an-array
283,Move Zeroes,57.8%,Easy,0.06974868393702997, https://leetcode.com/problems/move-zeroes
206,Reverse Linked List,62.5%,Easy,0.06846564614449077, https://leetcode.com/problems/reverse-linked-list
199,Binary Tree Right Side View,54.1%,Medium,0.06748154336946242, https://leetcode.com/problems/binary-tree-right-side-view
53,Maximum Subarray,46.5%,Easy,0.06356179958832935, https://leetcode.com/problems/maximum-subarray
25,Reverse Nodes in k-Group,42.1%,Hard,0.062178154907672076, https://leetcode.com/problems/reverse-nodes-in-k-group
416,Partition Equal Subset Sum,43.7%,Medium,0.05309102319682948, https://leetcode.com/problems/partition-equal-subset-sum
12,Integer to Roman,55.1%,Medium,0.05217122936969127, https://leetcode.com/problems/integer-to-roman
82,Remove Duplicates from Sorted List II,36.8%,Medium,0.05090157276603699, https://leetcode.com/problems/remove-duplicates-from-sorted-list-ii
2,Add Two Numbers,33.9%,Medium,0.04985995397332526, https://leetcode.com/problems/add-two-numbers
240,Search a 2D Matrix II,43.2%,Medium,0.04647676584572884, https://leetcode.com/problems/search-a-2d-matrix-ii
236,Lowest Common Ancestor of a Binary Tree,45.7%,Medium,0.041648587234261826, https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree
46,Permutations,63.5%,Medium,0.03732163223353564, https://leetcode.com/problems/permutations
128,Longest Consecutive Sequence,45.1%,Hard,0.035726058864721646, https://leetcode.com/problems/longest-consecutive-sequence
238,Product of Array Except Self,60.1%,Medium,0.03482987258052727, https://leetcode.com/problems/product-of-array-except-self
75,Sort Colors,47.3%,Medium,0.030801991570373215, https://leetcode.com/problems/sort-colors
134,Gas Station,38.5%,Medium,0.030183377823098576, https://leetcode.com/problems/gas-station
344,Reverse String,68.5%,Easy,0.029048355159926334, https://leetcode.com/problems/reverse-string
324,Wiggle Sort II,29.9%,Medium,0.02898753687325229, https://leetcode.com/problems/wiggle-sort-ii
33,Search in Rotated Sorted Array,34.5%,Medium,0.0287009496170278, https://leetcode.com/problems/search-in-rotated-sorted-array
73,Set Matrix Zeroes,43.1%,Medium,0.027769920533553028, https://leetcode.com/problems/set-matrix-zeroes
5,Longest Palindromic Substring,29.5%,Medium,0.02757010450426751, https://leetcode.com/problems/longest-palindromic-substring
735,Asteroid Collision,41.0%,Medium,0.024723138086794758, https://leetcode.com/problems/asteroid-collision
3,Longest Substring Without Repeating Characters,30.4%,Medium,0.024604324231039386, https://leetcode.com/problems/longest-substring-without-repeating-characters
28,Implement strStr(),34.5%,Easy,0.02439383324633083, https://leetcode.com/problems/implement-strstr
72,Edit Distance,44.8%,Hard,0.022400140173127806, https://leetcode.com/problems/edit-distance
21,Merge Two Sorted Lists,53.5%,Easy,0.02011578137441701, https://leetcode.com/problems/merge-two-sorted-lists
15,3Sum,26.8%,Medium,0.019619157889188592, https://leetcode.com/problems/3sum
121,Best Time to Buy and Sell Stock,50.5%,Easy,0.018954919107260947, https://leetcode.com/problems/best-time-to-buy-and-sell-stock
253,Meeting Rooms II,45.7%,Medium,0.018087309810579388, https://leetcode.com/problems/meeting-rooms-ii
322,Coin Change,35.5%,Medium,0.016022774188122292, https://leetcode.com/problems/coin-change
189,Rotate Array,34.7%,Easy,0.016022774188122292, https://leetcode.com/problems/rotate-array
557,Reverse Words in a String III,69.8%,Easy,0.013731764001315941, https://leetcode.com/problems/reverse-words-in-a-string-iii
1047,Remove All Adjacent Duplicates In String,68.6%,Easy,0.013059277989179281, https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string
227,Basic Calculator II,36.9%,Medium,0.01239941490503826, https://leetcode.com/problems/basic-calculator-ii
876,Middle of the Linked List,68.4%,Easy,0.007624893975696915, https://leetcode.com/problems/middle-of-the-linked-list
200,Number of Islands,46.8%,Medium,0.006490251382779317, https://leetcode.com/problems/number-of-islands
973,K Closest Points to Origin,63.8%,Medium,0.005773688094426333, https://leetcode.com/problems/k-closest-points-to-origin
167,Two Sum II - Input array is sorted,54.1%,Easy,0.005507380022589096, https://leetcode.com/problems/two-sum-ii-input-array-is-sorted
207,Course Schedule,43.1%,Medium,0.004964021114211758, https://leetcode.com/problems/course-schedule
104,Maximum Depth of Binary Tree,66.0%,Easy,0.002787846801433134, https://leetcode.com/problems/maximum-depth-of-binary-tree
203,Remove Linked List Elements,38.6%,Easy,0.0016237064659255223, https://leetcode.com/problems/remove-linked-list-elements
1229,Meeting Scheduler,52.7%,Medium,0, https://leetcode.com/problems/meeting-scheduler
1 6 ID ZigZag Conversion Title 36.3% Acceptance Medium Difficulty 0.8494120771045042 Frequency https://leetcode.com/problems/zigzag-conversion Leetcode Question Link
2 1473 6 Paint House III ZigZag Conversion 48.1% 36.3% Hard Medium 0.6775218626568644 0.8494120771045042 https://leetcode.com/problems/paint-house-iii https://leetcode.com/problems/zigzag-conversion
3 1041 1473 Robot Bounded In Circle Paint House III 49.6% 48.1% Medium Hard 0.583924058361535 0.6775218626568644 https://leetcode.com/problems/robot-bounded-in-circle https://leetcode.com/problems/paint-house-iii
4 243 1041 Shortest Word Distance Robot Bounded In Circle 61.0% 49.6% Easy Medium 0.41203384391389536 0.583924058361535 https://leetcode.com/problems/shortest-word-distance https://leetcode.com/problems/robot-bounded-in-circle
5 1 243 Two Sum Shortest Word Distance 45.6% 61.0% Easy Easy 0.3475579001540161 0.41203384391389536 https://leetcode.com/problems/two-sum https://leetcode.com/problems/shortest-word-distance
6 1497 1 Check If Array Pairs Are Divisible by k Two Sum 41.1% 45.6% Medium Easy 0.30887395064431883 0.3475579001540161 https://leetcode.com/problems/check-if-array-pairs-are-divisible-by-k https://leetcode.com/problems/two-sum
7 1297 1497 Maximum Number of Occurrences of a Substring Check If Array Pairs Are Divisible by k 47.3% 41.1% Medium Medium 0.2800774730665616 0.30887395064431883 https://leetcode.com/problems/maximum-number-of-occurrences-of-a-substring https://leetcode.com/problems/check-if-array-pairs-are-divisible-by-k
8 273 1297 Integer to English Words Maximum Number of Occurrences of a Substring 27.1% 47.3% Hard Medium 0.26532833604818473 0.2800774730665616 https://leetcode.com/problems/integer-to-english-words https://leetcode.com/problems/maximum-number-of-occurrences-of-a-substring
9 146 273 LRU Cache Integer to English Words 33.2% 27.1% Medium Hard 0.2585885798043696 0.26532833604818473 https://leetcode.com/problems/lru-cache https://leetcode.com/problems/integer-to-english-words
10 54 146 Spiral Matrix LRU Cache 34.1% 33.2% Medium Medium 0.18243181645556916 0.2585885798043696 https://leetcode.com/problems/spiral-matrix https://leetcode.com/problems/lru-cache
11 56 54 Merge Intervals Spiral Matrix 39.3% 34.1% Medium Medium 0.13713421800838543 0.18243181645556916 https://leetcode.com/problems/merge-intervals https://leetcode.com/problems/spiral-matrix
12 224 56 Basic Calculator Merge Intervals 36.8% 39.3% Hard Medium 0.12435274487954455 0.13713421800838543 https://leetcode.com/problems/basic-calculator https://leetcode.com/problems/merge-intervals
13 242 224 Valid Anagram Basic Calculator 56.9% 36.8% Easy Hard 0.11860368841030557 0.12435274487954455 https://leetcode.com/problems/valid-anagram https://leetcode.com/problems/basic-calculator
14 20 242 Valid Parentheses Valid Anagram 39.0% 56.9% Easy Easy 0.10693122823835342 0.11860368841030557 https://leetcode.com/problems/valid-parentheses https://leetcode.com/problems/valid-anagram
15 68 20 Text Justification Valid Parentheses 27.7% 39.0% Hard Easy 0.10627110304957266 0.10693122823835342 https://leetcode.com/problems/text-justification https://leetcode.com/problems/valid-parentheses
16 977 68 Squares of a Sorted Array Text Justification 72.1% 27.7% Easy Hard 0.07598590697792203 0.10627110304957266 https://leetcode.com/problems/squares-of-a-sorted-array https://leetcode.com/problems/text-justification
17 532 977 K-diff Pairs in an Array Squares of a Sorted Array 31.6% 72.1% Easy Easy 0.07292523990467245 0.07598590697792203 https://leetcode.com/problems/k-diff-pairs-in-an-array https://leetcode.com/problems/squares-of-a-sorted-array
18 283 532 Move Zeroes K-diff Pairs in an Array 57.8% 31.6% Easy Easy 0.06974868393702997 0.07292523990467245 https://leetcode.com/problems/move-zeroes https://leetcode.com/problems/k-diff-pairs-in-an-array
19 206 283 Reverse Linked List Move Zeroes 62.5% 57.8% Easy Easy 0.06846564614449077 0.06974868393702997 https://leetcode.com/problems/reverse-linked-list https://leetcode.com/problems/move-zeroes
20 199 206 Binary Tree Right Side View Reverse Linked List 54.1% 62.5% Medium Easy 0.06748154336946242 0.06846564614449077 https://leetcode.com/problems/binary-tree-right-side-view https://leetcode.com/problems/reverse-linked-list
21 53 199 Maximum Subarray Binary Tree Right Side View 46.5% 54.1% Easy Medium 0.06356179958832935 0.06748154336946242 https://leetcode.com/problems/maximum-subarray https://leetcode.com/problems/binary-tree-right-side-view
22 25 53 Reverse Nodes in k-Group Maximum Subarray 42.1% 46.5% Hard Easy 0.062178154907672076 0.06356179958832935 https://leetcode.com/problems/reverse-nodes-in-k-group https://leetcode.com/problems/maximum-subarray
23 416 25 Partition Equal Subset Sum Reverse Nodes in k-Group 43.7% 42.1% Medium Hard 0.05309102319682948 0.062178154907672076 https://leetcode.com/problems/partition-equal-subset-sum https://leetcode.com/problems/reverse-nodes-in-k-group
24 12 416 Integer to Roman Partition Equal Subset Sum 55.1% 43.7% Medium Medium 0.05217122936969127 0.05309102319682948 https://leetcode.com/problems/integer-to-roman https://leetcode.com/problems/partition-equal-subset-sum
25 82 12 Remove Duplicates from Sorted List II Integer to Roman 36.8% 55.1% Medium Medium 0.05090157276603699 0.05217122936969127 https://leetcode.com/problems/remove-duplicates-from-sorted-list-ii https://leetcode.com/problems/integer-to-roman
26 2 82 Add Two Numbers Remove Duplicates from Sorted List II 33.9% 36.8% Medium Medium 0.04985995397332526 0.05090157276603699 https://leetcode.com/problems/add-two-numbers https://leetcode.com/problems/remove-duplicates-from-sorted-list-ii
27 240 2 Search a 2D Matrix II Add Two Numbers 43.2% 33.9% Medium Medium 0.04647676584572884 0.04985995397332526 https://leetcode.com/problems/search-a-2d-matrix-ii https://leetcode.com/problems/add-two-numbers
28 236 240 Lowest Common Ancestor of a Binary Tree Search a 2D Matrix II 45.7% 43.2% Medium Medium 0.041648587234261826 0.04647676584572884 https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree https://leetcode.com/problems/search-a-2d-matrix-ii
29 46 236 Permutations Lowest Common Ancestor of a Binary Tree 63.5% 45.7% Medium Medium 0.03732163223353564 0.041648587234261826 https://leetcode.com/problems/permutations https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree
30 128 46 Longest Consecutive Sequence Permutations 45.1% 63.5% Hard Medium 0.035726058864721646 0.03732163223353564 https://leetcode.com/problems/longest-consecutive-sequence https://leetcode.com/problems/permutations
31 238 128 Product of Array Except Self Longest Consecutive Sequence 60.1% 45.1% Medium Hard 0.03482987258052727 0.035726058864721646 https://leetcode.com/problems/product-of-array-except-self https://leetcode.com/problems/longest-consecutive-sequence
32 75 238 Sort Colors Product of Array Except Self 47.3% 60.1% Medium Medium 0.030801991570373215 0.03482987258052727 https://leetcode.com/problems/sort-colors https://leetcode.com/problems/product-of-array-except-self
33 134 75 Gas Station Sort Colors 38.5% 47.3% Medium Medium 0.030183377823098576 0.030801991570373215 https://leetcode.com/problems/gas-station https://leetcode.com/problems/sort-colors
34 344 134 Reverse String Gas Station 68.5% 38.5% Easy Medium 0.029048355159926334 0.030183377823098576 https://leetcode.com/problems/reverse-string https://leetcode.com/problems/gas-station
35 324 344 Wiggle Sort II Reverse String 29.9% 68.5% Medium Easy 0.02898753687325229 0.029048355159926334 https://leetcode.com/problems/wiggle-sort-ii https://leetcode.com/problems/reverse-string
36 33 324 Search in Rotated Sorted Array Wiggle Sort II 34.5% 29.9% Medium Medium 0.0287009496170278 0.02898753687325229 https://leetcode.com/problems/search-in-rotated-sorted-array https://leetcode.com/problems/wiggle-sort-ii
37 73 33 Set Matrix Zeroes Search in Rotated Sorted Array 43.1% 34.5% Medium Medium 0.027769920533553028 0.0287009496170278 https://leetcode.com/problems/set-matrix-zeroes https://leetcode.com/problems/search-in-rotated-sorted-array
38 5 73 Longest Palindromic Substring Set Matrix Zeroes 29.5% 43.1% Medium Medium 0.02757010450426751 0.027769920533553028 https://leetcode.com/problems/longest-palindromic-substring https://leetcode.com/problems/set-matrix-zeroes
39 735 5 Asteroid Collision Longest Palindromic Substring 41.0% 29.5% Medium Medium 0.024723138086794758 0.02757010450426751 https://leetcode.com/problems/asteroid-collision https://leetcode.com/problems/longest-palindromic-substring
40 3 735 Longest Substring Without Repeating Characters Asteroid Collision 30.4% 41.0% Medium Medium 0.024604324231039386 0.024723138086794758 https://leetcode.com/problems/longest-substring-without-repeating-characters https://leetcode.com/problems/asteroid-collision
41 28 3 Implement strStr() Longest Substring Without Repeating Characters 34.5% 30.4% Easy Medium 0.02439383324633083 0.024604324231039386 https://leetcode.com/problems/implement-strstr https://leetcode.com/problems/longest-substring-without-repeating-characters
42 72 28 Edit Distance Implement strStr() 44.8% 34.5% Hard Easy 0.022400140173127806 0.02439383324633083 https://leetcode.com/problems/edit-distance https://leetcode.com/problems/implement-strstr
43 21 72 Merge Two Sorted Lists Edit Distance 53.5% 44.8% Easy Hard 0.02011578137441701 0.022400140173127806 https://leetcode.com/problems/merge-two-sorted-lists https://leetcode.com/problems/edit-distance
44 15 21 3Sum Merge Two Sorted Lists 26.8% 53.5% Medium Easy 0.019619157889188592 0.02011578137441701 https://leetcode.com/problems/3sum https://leetcode.com/problems/merge-two-sorted-lists
45 121 15 Best Time to Buy and Sell Stock 3Sum 50.5% 26.8% Easy Medium 0.018954919107260947 0.019619157889188592 https://leetcode.com/problems/best-time-to-buy-and-sell-stock https://leetcode.com/problems/3sum
46 253 121 Meeting Rooms II Best Time to Buy and Sell Stock 45.7% 50.5% Medium Easy 0.018087309810579388 0.018954919107260947 https://leetcode.com/problems/meeting-rooms-ii https://leetcode.com/problems/best-time-to-buy-and-sell-stock
47 322 253 Coin Change Meeting Rooms II 35.5% 45.7% Medium Medium 0.016022774188122292 0.018087309810579388 https://leetcode.com/problems/coin-change https://leetcode.com/problems/meeting-rooms-ii
48 189 322 Rotate Array Coin Change 34.7% 35.5% Easy Medium 0.016022774188122292 0.016022774188122292 https://leetcode.com/problems/rotate-array https://leetcode.com/problems/coin-change
49 557 189 Reverse Words in a String III Rotate Array 69.8% 34.7% Easy Easy 0.013731764001315941 0.016022774188122292 https://leetcode.com/problems/reverse-words-in-a-string-iii https://leetcode.com/problems/rotate-array
50 1047 557 Remove All Adjacent Duplicates In String Reverse Words in a String III 68.6% 69.8% Easy Easy 0.013059277989179281 0.013731764001315941 https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string https://leetcode.com/problems/reverse-words-in-a-string-iii
51 227 1047 Basic Calculator II Remove All Adjacent Duplicates In String 36.9% 68.6% Medium Easy 0.01239941490503826 0.013059277989179281 https://leetcode.com/problems/basic-calculator-ii https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string
52 876 227 Middle of the Linked List Basic Calculator II 68.4% 36.9% Easy Medium 0.007624893975696915 0.01239941490503826 https://leetcode.com/problems/middle-of-the-linked-list https://leetcode.com/problems/basic-calculator-ii
53 200 876 Number of Islands Middle of the Linked List 46.8% 68.4% Medium Easy 0.006490251382779317 0.007624893975696915 https://leetcode.com/problems/number-of-islands https://leetcode.com/problems/middle-of-the-linked-list
54 973 200 K Closest Points to Origin Number of Islands 63.8% 46.8% Medium Medium 0.005773688094426333 0.006490251382779317 https://leetcode.com/problems/k-closest-points-to-origin https://leetcode.com/problems/number-of-islands
55 167 973 Two Sum II - Input array is sorted K Closest Points to Origin 54.1% 63.8% Easy Medium 0.005507380022589096 0.005773688094426333 https://leetcode.com/problems/two-sum-ii-input-array-is-sorted https://leetcode.com/problems/k-closest-points-to-origin
56 207 167 Course Schedule Two Sum II - Input array is sorted 43.1% 54.1% Medium Easy 0.004964021114211758 0.005507380022589096 https://leetcode.com/problems/course-schedule https://leetcode.com/problems/two-sum-ii-input-array-is-sorted
57 104 207 Maximum Depth of Binary Tree Course Schedule 66.0% 43.1% Easy Medium 0.002787846801433134 0.004964021114211758 https://leetcode.com/problems/maximum-depth-of-binary-tree https://leetcode.com/problems/course-schedule
58 203 104 Remove Linked List Elements Maximum Depth of Binary Tree 38.6% 66.0% Easy Easy 0.0016237064659255223 0.002787846801433134 https://leetcode.com/problems/remove-linked-list-elements https://leetcode.com/problems/maximum-depth-of-binary-tree
59 1229 203 Meeting Scheduler Remove Linked List Elements 52.7% 38.6% Medium Easy 0 0.0016237064659255223 https://leetcode.com/problems/meeting-scheduler https://leetcode.com/problems/remove-linked-list-elements
60 1229 Meeting Scheduler 52.7% Medium 0 https://leetcode.com/problems/meeting-scheduler