LeetCode-Questions-CompanyWise/oracle_2year.csv
Krishna Kumar Dey fb5f78b55e
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)

```
2023-04-01 11:07:49 +05:30

24 KiB

1IDTitleAcceptanceDifficultyFrequencyLeetcode Question Link
2352Data Stream as Disjoint Intervals47.3%Hard0.6265860943271327https://leetcode.com/problems/data-stream-as-disjoint-intervals
3425Word Squares47.7%Hard0.6033608619091657https://leetcode.com/problems/word-squares
4554Brick Wall50.0%Medium0.5363932261307668https://leetcode.com/problems/brick-wall
5146LRU Cache33.2%Medium0.46942559035236786https://leetcode.com/problems/lru-cache
6362Design Hit Counter63.7%Medium0.41287934430142753https://leetcode.com/problems/design-hit-counter
723Merge k Sorted Lists40.2%Hard0.3459117085230286https://leetcode.com/problems/merge-k-sorted-lists
8403Frog Jump39.7%Hard0.2789440727446297https://leetcode.com/problems/frog-jump
956Merge Intervals39.3%Medium0.27305129764911124https://leetcode.com/problems/merge-intervals
10450Delete Node in a BST43.1%Medium0.2618604317292985https://leetcode.com/problems/delete-node-in-a-bst
11227Basic Calculator II36.9%Medium0.22526232820206687https://leetcode.com/problems/basic-calculator-ii
12253Meeting Rooms II45.7%Medium0.2194457881052731https://leetcode.com/problems/meeting-rooms-ii
13706Design HashMap61.3%Easy0.1960785423771685https://leetcode.com/problems/design-hashmap
14297Serialize and Deserialize Binary Tree47.5%Hard0.19461546769967167https://leetcode.com/problems/serialize-and-deserialize-binary-tree
15636Exclusive Time of Functions51.9%Medium0.17494800586305592https://leetcode.com/problems/exclusive-time-of-functions
16415Add Strings47.5%Easy0.17429245611868044https://leetcode.com/problems/add-strings
17692Top K Frequent Words51.8%Medium0.17278293546824908https://leetcode.com/problems/top-k-frequent-words
18200Number of Islands46.8%Medium0.1699216454242077https://leetcode.com/problems/number-of-islands
19715Range Module38.5%Hard0.1636294237818021https://leetcode.com/problems/range-module
201242Web Crawler Multithreaded45.9%Medium0.14953173397096375https://leetcode.com/problems/web-crawler-multithreaded
21380Insert Delete GetRandom O(1)47.5%Medium0.1466146891661091https://leetcode.com/problems/insert-delete-getrandom-o1
22349Intersection of Two Arrays62.5%Easy0.13745763880299086https://leetcode.com/problems/intersection-of-two-arrays
231044Longest Duplicate Substring31.9%Hard0.1351378186727963https://leetcode.com/problems/longest-duplicate-substring
2433Search in Rotated Sorted Array34.5%Medium0.1281180285001361https://leetcode.com/problems/search-in-rotated-sorted-array
2554Spiral Matrix34.1%Medium0.12572728493821236https://leetcode.com/problems/spiral-matrix
26394Decode String50.0%Medium0.1232801760013658https://leetcode.com/problems/decode-string
27230Kth Smallest Element in a BST60.2%Medium0.1210793254708764https://leetcode.com/problems/kth-smallest-element-in-a-bst
2875Sort Colors47.3%Medium0.11789425180508288https://leetcode.com/problems/sort-colors
291188Design Bounded Blocking Queue70.5%Medium0.11030454201470608https://leetcode.com/problems/design-bounded-blocking-queue
3073Set Matrix Zeroes43.1%Medium0.10673233036142979https://leetcode.com/problems/set-matrix-zeroes
31173Binary Search Tree Iterator56.6%Medium0.0993321513486892https://leetcode.com/problems/binary-search-tree-iterator
32232Implement Queue using Stacks49.6%Easy0.09690200534777553https://leetcode.com/problems/implement-queue-using-stacks
331236Web Crawler64.3%Medium0.09531017980432487https://leetcode.com/problems/web-crawler
34138Copy List with Random Pointer36.4%Medium0.09473133310488323https://leetcode.com/problems/copy-list-with-random-pointer
351Two Sum45.6%Easy0.09470547879560726https://leetcode.com/problems/two-sum
3620Valid Parentheses39.0%Easy0.09286263438126167https://leetcode.com/problems/valid-parentheses
37794Valid Tic-Tac-Toe State32.6%Medium0.0922312242160336https://leetcode.com/problems/valid-tic-tac-toe-state
38127Word Ladder29.6%Medium0.09162341383415479https://leetcode.com/problems/word-ladder
39545Boundary of Binary Tree38.9%Medium0.091248671465145https://leetcode.com/problems/boundary-of-binary-tree
40652Find Duplicate Subtrees50.2%Medium0.08907963005368878https://leetcode.com/problems/find-duplicate-subtrees
41722Remove Comments34.6%Medium0.08890352514166767https://leetcode.com/problems/remove-comments
4217Letter Combinations of a Phone Number46.8%Medium0.0855673732620712https://leetcode.com/problems/letter-combinations-of-a-phone-number
431212Team Scores in Football Tournament55.8%Medium0.08269171584511335https://leetcode.com/problems/team-scores-in-football-tournament
44599Minimum Index Sum of Two Lists50.7%Easy0.0753494372417868https://leetcode.com/problems/minimum-index-sum-of-two-lists
4553Maximum Subarray46.5%Easy0.0751998401694112https://leetcode.com/problems/maximum-subarray
46503Next Greater Element II56.5%Medium0.07339377143296942https://leetcode.com/problems/next-greater-element-ii
47505The Maze II47.7%Medium0.07133147800542972https://leetcode.com/problems/the-maze-ii
48438Find All Anagrams in a String43.3%Medium0.07086789751218016https://leetcode.com/problems/find-all-anagrams-in-a-string
49314Binary Tree Vertical Order Traversal45.3%Medium0.07017345555905126https://leetcode.com/problems/binary-tree-vertical-order-traversal
50126Word Ladder II22.1%Hard0.07011193038456472https://leetcode.com/problems/word-ladder-ii
5142Trapping Rain Water48.9%Hard0.0674365414927314https://leetcode.com/problems/trapping-rain-water
52116Populating Next Right Pointers in Each Node45.2%Medium0.06417026482702023https://leetcode.com/problems/populating-next-right-pointers-in-each-node
53121Best Time to Buy and Sell Stock50.5%Easy0.06233349258151901https://leetcode.com/problems/best-time-to-buy-and-sell-stock
54195Tenth Line33.0%Easy0.06127490750055161https://leetcode.com/problems/tenth-line
55238Product of Array Except Self60.1%Medium0.061105194807639235https://leetcode.com/problems/product-of-array-except-self
561170Compare Strings by Frequency of the Smallest Character58.7%Easy0.060901617340111645https://leetcode.com/problems/compare-strings-by-frequency-of-the-smallest-character
57305Number of Islands II40.1%Hard0.06007812394328337https://leetcode.com/problems/number-of-islands-ii
581190Reverse Substrings Between Each Pair of Parentheses61.5%Medium0.06007812394328337https://leetcode.com/problems/reverse-substrings-between-each-pair-of-parentheses
59355Design Twitter30.3%Medium0.05824061998094904https://leetcode.com/problems/design-twitter
60417Pacific Atlantic Water Flow41.1%Medium0.057523844138186606https://leetcode.com/problems/pacific-atlantic-water-flow
61741Cherry Pickup33.9%Hard0.056512210263342307https://leetcode.com/problems/cherry-pickup
6243Multiply Strings33.9%Medium0.05583052804728052https://leetcode.com/problems/multiply-strings
6321Merge Two Sorted Lists53.5%Easy0.05490757117845869https://leetcode.com/problems/merge-two-sorted-lists
64836Rectangle Overlap48.6%Easy0.05371219359052555https://leetcode.com/problems/rectangle-overlap
65426Convert Binary Search Tree to Sorted Doubly Linked List59.1%Medium0.05368014946362379https://leetcode.com/problems/convert-binary-search-tree-to-sorted-doubly-linked-list
66894All Possible Full Binary Trees75.2%Medium0.052436651273043935https://leetcode.com/problems/all-possible-full-binary-trees
6734Find First and Last Position of Element in Sorted Array36.2%Medium0.05083027351406798https://leetcode.com/problems/find-first-and-last-position-of-element-in-sorted-array
68449Serialize and Deserialize BST52.0%Medium0.049844204077291364https://leetcode.com/problems/serialize-and-deserialize-bst
69139Word Break40.1%Medium0.04669293281464548https://leetcode.com/problems/word-break
70206Reverse Linked List62.5%Easy0.046346967254127305https://leetcode.com/problems/reverse-linked-list
713Longest Substring Without Repeating Characters30.4%Medium0.04601922329309672https://leetcode.com/problems/longest-substring-without-repeating-characters
72609Find Duplicate File in System59.5%Medium0.045205436768046794https://leetcode.com/problems/find-duplicate-file-in-system
735Longest Palindromic Substring29.5%Medium0.04517328747428837https://leetcode.com/problems/longest-palindromic-substring
74529Minesweeper59.1%Medium0.044255009004040724https://leetcode.com/problems/minesweeper
75160Intersection of Two Linked Lists40.6%Easy0.043270781043381126https://leetcode.com/problems/intersection-of-two-linked-lists
76535Encode and Decode TinyURL79.9%Medium0.041978881338661234https://leetcode.com/problems/encode-and-decode-tinyurl
77236Lowest Common Ancestor of a Binary Tree45.7%Medium0.041648587234261826https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree
78965Univalued Binary Tree67.7%Easy0.04151887834779356https://leetcode.com/problems/univalued-binary-tree
7992Reverse Linked List II38.8%Medium0.041073535208287514https://leetcode.com/problems/reverse-linked-list-ii
80243Shortest Word Distance61.0%Easy0.040780370344928096https://leetcode.com/problems/shortest-word-distance
8137Sudoku Solver43.6%Hard0.040527833612118376https://leetcode.com/problems/sudoku-solver
82863All Nodes Distance K in Binary Tree55.4%Medium0.037756162417993476https://leetcode.com/problems/all-nodes-distance-k-in-binary-tree
8371Simplify Path32.6%Medium0.03622126343431837https://leetcode.com/problems/simplify-path
84128Longest Consecutive Sequence45.1%Hard0.035726058864721646https://leetcode.com/problems/longest-consecutive-sequence
85295Find Median from Data Stream44.3%Hard0.035519827248535335https://leetcode.com/problems/find-median-from-data-stream
864Median of Two Sorted Arrays29.6%Hard0.034565653112280895https://leetcode.com/problems/median-of-two-sorted-arrays
87214Shortest Palindrome29.8%Hard0.03419136474827932https://leetcode.com/problems/shortest-palindrome
8812Integer to Roman55.1%Medium0.03370158881097552https://leetcode.com/problems/integer-to-roman
89209Minimum Size Subarray Sum38.2%Medium0.033239453928687726https://leetcode.com/problems/minimum-size-subarray-sum
90694Number of Distinct Islands56.0%Medium0.03278982282299087https://leetcode.com/problems/number-of-distinct-islands
91284Peeking Iterator45.7%Medium0.03110670713225487https://leetcode.com/problems/peeking-iterator
92163Missing Ranges24.3%Medium0.030890487019338404https://leetcode.com/problems/missing-ranges
9313Roman to Integer55.7%Easy0.030443751414723153https://leetcode.com/problems/roman-to-integer
94101Symmetric Tree46.8%Easy0.030241699823103273https://leetcode.com/problems/symmetric-tree
9594Binary Tree Inorder Traversal63.3%Medium0.029798596117835863https://leetcode.com/problems/binary-tree-inorder-traversal
961197Minimum Knight Moves36.1%Medium0.02969780239174205https://leetcode.com/problems/minimum-knight-moves
97767Reorganize String48.7%Medium0.02967576814611661https://leetcode.com/problems/reorganize-string
98155Min Stack44.5%Easy0.029317296678520607https://leetcode.com/problems/min-stack
99456132 Pattern28.9%Medium0.029306126585499394https://leetcode.com/problems/132-pattern
10057Insert Interval33.5%Hard0.02927990558056596https://leetcode.com/problems/insert-interval
10110Regular Expression Matching26.8%Hard0.02844130559772196https://leetcode.com/problems/regular-expression-matching
102695Max Area of Island62.7%Medium0.028321590863246118https://leetcode.com/problems/max-area-of-island
103204Count Primes31.5%Easy0.02799343042200216https://leetcode.com/problems/count-primes
104518Coin Change 250.2%Medium0.027969505010125056https://leetcode.com/problems/coin-change-2
105114Flatten Binary Tree to Linked List49.3%Medium0.02730545069026746https://leetcode.com/problems/flatten-binary-tree-to-linked-list
106796Rotate String49.6%Easy0.02701041988276247https://leetcode.com/problems/rotate-string
107273Integer to English Words27.1%Hard0.026980053764546055https://leetcode.com/problems/integer-to-english-words
1081305All Elements in Two Binary Search Trees76.1%Medium0.026282721799194744https://leetcode.com/problems/all-elements-in-two-binary-search-trees
10946Permutations63.5%Medium0.026064861710547768https://leetcode.com/problems/permutations
110242Valid Anagram56.9%Easy0.025684584297773504https://leetcode.com/problems/valid-anagram
11141First Missing Positive32.0%Hard0.02540222313806603https://leetcode.com/problems/first-missing-positive
112322Coin Change35.5%Medium0.024924029676386045https://leetcode.com/problems/coin-change
113125Valid Palindrome36.7%Easy0.02462208292471368https://leetcode.com/problems/valid-palindrome
114215Kth Largest Element in an Array55.4%Medium0.02414409892936099https://leetcode.com/problems/kth-largest-element-in-an-array
115844Backspace String Compare46.4%Easy0.0235551325028849https://leetcode.com/problems/backspace-string-compare
11649Group Anagrams56.9%Medium0.02354157682187747https://leetcode.com/problems/group-anagrams
117347Top K Frequent Elements61.2%Medium0.02350975159825416https://leetcode.com/problems/top-k-frequent-elements
118973K Closest Points to Origin63.8%Medium0.022897394173017796https://leetcode.com/problems/k-closest-points-to-origin
119622Design Circular Queue43.8%Medium0.02246023667974994https://leetcode.com/problems/design-circular-queue
120981Time Based Key-Value Store53.1%Medium0.02226024024151985https://leetcode.com/problems/time-based-key-value-store
121221Maximal Square37.7%Medium0.022108490754203434https://leetcode.com/problems/maximal-square
122113Path Sum II46.7%Medium0.021882711249507664https://leetcode.com/problems/path-sum-ii
123958Check Completeness of a Binary Tree52.1%Medium0.021763644636359686https://leetcode.com/problems/check-completeness-of-a-binary-tree
124112Path Sum41.2%Easy0.021701651897460775https://leetcode.com/problems/path-sum
125141Linked List Cycle41.1%Easy0.021638372380967483https://leetcode.com/problems/linked-list-cycle
12645Jump Game II30.6%Hard0.021353124470568974https://leetcode.com/problems/jump-game-ii
127543Diameter of Binary Tree48.4%Easy0.02105617995251665https://leetcode.com/problems/diameter-of-binary-tree
128350Intersection of Two Arrays II51.4%Easy0.020680587107206983https://leetcode.com/problems/intersection-of-two-arrays-ii
12932Longest Valid Parentheses28.4%Hard0.020385756924473915https://leetcode.com/problems/longest-valid-parentheses
130208Implement Trie (Prefix Tree)49.4%Medium0.02037191321634931https://leetcode.com/problems/implement-trie-prefix-tree
131341Flatten Nested List Iterator52.9%Medium0.019980684690483426https://leetcode.com/problems/flatten-nested-list-iterator
132207Course Schedule43.1%Medium0.019709926055136454https://leetcode.com/problems/course-schedule
133153Sum26.8%Medium0.019619157889188592https://leetcode.com/problems/3sum
13419Remove Nth Node From End of List35.2%Medium0.019074355670058666https://leetcode.com/problems/remove-nth-node-from-end-of-list
135721Accounts Merge48.8%Medium0.01888630262874805https://leetcode.com/problems/accounts-merge
136184Department Highest Salary36.7%Medium0.018735911057469818https://leetcode.com/problems/department-highest-salary
137532K-diff Pairs in an Array31.6%Easy0.018735911057469818https://leetcode.com/problems/k-diff-pairs-in-an-array
1381008Construct Binary Search Tree from Preorder Traversal78.4%Medium0.01844220088035248https://leetcode.com/problems/construct-binary-search-tree-from-preorder-traversal
139283Move Zeroes57.8%Easy0.01789853050377608https://leetcode.com/problems/move-zeroes
14038Count and Say44.6%Easy0.01753063983505879https://leetcode.com/problems/count-and-say
141289Game of Life54.5%Medium0.0173239499317743https://leetcode.com/problems/game-of-life
142876Middle of the Linked List68.4%Easy0.01707497375257815https://leetcode.com/problems/middle-of-the-linked-list
14350Pow(x;n)30.3%Medium0.017036779497025166https://leetcode.com/problems/powx-n
144560Subarray Sum Equals K43.9%Medium0.017009020666013328https://leetcode.com/problems/subarray-sum-equals-k
145402Remove K Digits28.4%Medium0.016863806052004816https://leetcode.com/problems/remove-k-digits
14651N-Queens46.6%Hard0.016393809775676407https://leetcode.com/problems/n-queens
147340Longest Substring with At Most K Distinct Characters44.1%Hard0.016122880486563188https://leetcode.com/problems/longest-substring-with-at-most-k-distinct-characters
148412Fizz Buzz62.3%Easy0.016051709010507904https://leetcode.com/problems/fizz-buzz
14959Spiral Matrix II53.9%Medium0.01579187969789165https://leetcode.com/problems/spiral-matrix-ii
150938Range Sum of BST81.3%Easy0.015707129205357877https://leetcode.com/problems/range-sum-of-bst
1512Add Two Numbers33.9%Medium0.015095892173467356https://leetcode.com/problems/add-two-numbers
152707Design Linked List24.5%Medium0.015054857167065819https://leetcode.com/problems/design-linked-list
153102Binary Tree Level Order Traversal54.6%Medium0.014477270588287548https://leetcode.com/problems/binary-tree-level-order-traversal
154109Convert Sorted List to Binary Search Tree47.7%Medium0.014440684154794336https://leetcode.com/problems/convert-sorted-list-to-binary-search-tree
155315Count of Smaller Numbers After Self41.5%Hard0.014352596574956585https://leetcode.com/problems/count-of-smaller-numbers-after-self
156150Evaluate Reverse Polish Notation36.3%Medium0.01413451093490476https://leetcode.com/problems/evaluate-reverse-polish-notation
15776Minimum Window Substring34.6%Hard0.013966707481708198https://leetcode.com/problems/minimum-window-substring
158179Largest Number28.8%Medium0.013865040137171665https://leetcode.com/problems/largest-number
15944Wildcard Matching24.7%Hard0.013703537497261858https://leetcode.com/problems/wildcard-matching
160496Next Greater Element I63.8%Easy0.013201511858535894https://leetcode.com/problems/next-greater-element-i
1611047Remove All Adjacent Duplicates In String68.6%Easy0.013059277989179281https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string
162199Binary Tree Right Side View54.1%Medium0.01274082919906162https://leetcode.com/problems/binary-tree-right-side-view
163445Add Two Numbers II54.5%Medium0.01233061245747872https://leetcode.com/problems/add-two-numbers-ii
164437Path Sum III47.2%Medium0.012128711446614806https://leetcode.com/problems/path-sum-iii
16588Merge Sorted Array39.4%Easy0.011986958032982505https://leetcode.com/problems/merge-sorted-array
166986Interval List Intersections67.3%Medium0.011969023795320735https://leetcode.com/problems/interval-list-intersections
167119Pascal's Triangle II49.0%Easy0.011894282360609866https://leetcode.com/problems/pascals-triangle-ii
168300Longest Increasing Subsequence42.6%Medium0.011806512586989004https://leetcode.com/problems/longest-increasing-subsequence
16998Validate Binary Search Tree27.8%Medium0.01172346369605921https://leetcode.com/problems/validate-binary-search-tree
170264Ugly Number II42.0%Medium0.011604423810414601https://leetcode.com/problems/ugly-number-ii
171205Isomorphic Strings39.8%Easy0.011544139746865315https://leetcode.com/problems/isomorphic-strings
172136Single Number65.5%Easy0.011429512235126808https://leetcode.com/problems/single-number
173117Populating Next Right Pointers in Each Node II39.1%Medium0.011389644764357807https://leetcode.com/problems/populating-next-right-pointers-in-each-node-ii
17455Jump Game34.6%Medium0.011265609194218986https://leetcode.com/problems/jump-game
17562Unique Paths54.1%Medium0.010367562048856941https://leetcode.com/problems/unique-paths
176819Most Common Word44.8%Easy0.010269666637456105https://leetcode.com/problems/most-common-word
177212Word Search II34.9%Hard0.009845021678804893https://leetcode.com/problems/word-search-ii
178905Sort Array By Parity74.1%Easy0.009603915354180344https://leetcode.com/problems/sort-array-by-parity
179617Merge Two Binary Trees74.1%Easy0.008262802639833214https://leetcode.com/problems/merge-two-binary-trees
180235Lowest Common Ancestor of a Binary Search Tree49.9%Easy0.00821697310228087https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree
181239Sliding Window Maximum43.0%Hard0.007898935224534491https://leetcode.com/problems/sliding-window-maximum
18226Remove Duplicates from Sorted Array45.1%Easy0.007782518973063169https://leetcode.com/problems/remove-duplicates-from-sorted-array
183240Search a 2D Matrix II43.2%Medium0.0075829747244553335https://leetcode.com/problems/search-a-2d-matrix-ii
184122Best Time to Buy and Sell Stock II57.0%Easy0.007532046655581962https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii
18514Longest Common Prefix35.4%Easy0.00745530292090591https://leetcode.com/problems/longest-common-prefix
186344Reverse String68.5%Easy0.00734157796234515https://leetcode.com/problems/reverse-string
18736Valid Sudoku48.7%Medium0.007258242715805398https://leetcode.com/problems/valid-sudoku
1889Palindrome Number48.4%Easy0.006822343017166543https://leetcode.com/problems/palindrome-number
189103Binary Tree Zigzag Level Order Traversal48.3%Medium0.006816368572598042https://leetcode.com/problems/binary-tree-zigzag-level-order-traversal
19029Divide Two Integers16.4%Medium0.006772799340092467https://leetcode.com/problems/divide-two-integers
19179Word Search35.6%Medium0.006642335946304871https://leetcode.com/problems/word-search
192107Binary Tree Level Order Traversal II53.5%Easy0.006423661079917184https://leetcode.com/problems/binary-tree-level-order-traversal-ii
19324Swap Nodes in Pairs50.4%Medium0.0062218275061505365https://leetcode.com/problems/swap-nodes-in-pairs
19491Decode Ways24.7%Medium0.005968385368349129https://leetcode.com/problems/decode-ways
195105Construct Binary Tree from Preorder and Inorder Traversal48.8%Medium0.005628268691614718https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal
196152Maximum Product Subarray31.7%Medium0.005590510716885066https://leetcode.com/problems/maximum-product-subarray
197108Convert Sorted Array to Binary Search Tree57.9%Easy0.005554027051374908https://leetcode.com/problems/convert-sorted-array-to-binary-search-tree
198287Find the Duplicate Number55.5%Medium0.005501320434837602https://leetcode.com/problems/find-the-duplicate-number
199268Missing Number51.7%Easy0.0048804391649084865https://leetcode.com/problems/missing-number
200169Majority Element58.7%Easy0.004706444738837472https://leetcode.com/problems/majority-element
201210Course Schedule II40.7%Medium0.0042893974831731225https://leetcode.com/problems/course-schedule-ii
2027Reverse Integer25.8%Easy0.00418293972984512https://leetcode.com/problems/reverse-integer
20328Implement strStr()34.5%Easy0.003943222775040032https://leetcode.com/problems/implement-strstr
204977Squares of a Sorted Array72.1%Easy0.003891055492966611https://leetcode.com/problems/squares-of-a-sorted-array
205217Contains Duplicate56.0%Easy0.0037979536727587773https://leetcode.com/problems/contains-duplicate
2068String to Integer (atoi)15.4%Medium0.0037925521897059712https://leetcode.com/problems/string-to-integer-atoi
207153Find Minimum in Rotated Sorted Array45.1%Medium0.0037558729598054378https://leetcode.com/problems/find-minimum-in-rotated-sorted-array
208151Reverse Words in a String21.9%Medium0.003456091915988908https://leetcode.com/problems/reverse-words-in-a-string
20970Climbing Stairs47.8%Easy0.00339085548316782https://leetcode.com/problems/climbing-stairs
21011Container With Most Water50.8%Medium0.0030677223230101427https://leetcode.com/problems/container-with-most-water
211140Word Break II32.6%Hard0.0027070942357783584https://leetcode.com/problems/word-break-ii
212621Task Scheduler50.1%Medium0.002341784338144407https://leetcode.com/problems/task-scheduler
21367Add Binary45.2%Easy0.0016620272243229827https://leetcode.com/problems/add-binary