Files
LeetCode-Questions-CompanyWise/oracle_alltime.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
2425Word Squares47.7%Hard1.3737846439355526https://leetcode.com/problems/word-squares
3146LRU Cache33.2%Medium1.2233383443716415https://leetcode.com/problems/lru-cache
4352Data Stream as Disjoint Intervals47.3%Hard1.0728920448077304https://leetcode.com/problems/data-stream-as-disjoint-intervals
5450Delete Node in a BST43.1%Medium0.9224457452438195https://leetcode.com/problems/delete-node-in-a-bst
6362Design Hit Counter63.7%Medium0.8944603431177579https://leetcode.com/problems/design-hit-counter
71Two Sum45.6%Easy0.8671080762741441https://leetcode.com/problems/two-sum
8554Brick Wall50.0%Medium0.8487112881843506https://leetcode.com/problems/brick-wall
923Merge k Sorted Lists40.2%Hard0.744432863023671https://leetcode.com/problems/merge-k-sorted-lists
10253Meeting Rooms II45.7%Medium0.59398656345976https://leetcode.com/problems/meeting-rooms-ii
11403Frog Jump39.7%Hard0.5847178330329063https://leetcode.com/problems/frog-jump
12200Number of Islands46.8%Medium0.44929804774434284https://leetcode.com/problems/number-of-islands
13297Serialize and Deserialize Binary Tree47.5%Hard0.41418643622197904https://leetcode.com/problems/serialize-and-deserialize-binary-tree
1456Merge Intervals39.3%Medium0.4061026968850166https://leetcode.com/problems/merge-intervals
15394Decode String50.0%Medium0.37929539037477966https://leetcode.com/problems/decode-string
16227Basic Calculator II36.9%Medium0.3709825801608562https://leetcode.com/problems/basic-calculator-ii
17415Add Strings47.5%Easy0.3565606952191458https://leetcode.com/problems/add-strings
1817Letter Combinations of a Phone Number46.8%Medium0.33514787929267054https://leetcode.com/problems/letter-combinations-of-a-phone-number
1973Set Matrix Zeroes43.1%Medium0.3336019272255533https://leetcode.com/problems/set-matrix-zeroes
2033Search in Rotated Sorted Array34.5%Medium0.33035289065162005https://leetcode.com/problems/search-in-rotated-sorted-array
2154Spiral Matrix34.1%Medium0.3163765745699599https://leetcode.com/problems/spiral-matrix
2253Maximum Subarray46.5%Easy0.3123508739120354https://leetcode.com/problems/maximum-subarray
231242Web Crawler Multithreaded45.9%Medium0.30961714931803663https://leetcode.com/problems/web-crawler-multithreaded
24706Design HashMap61.3%Easy0.30607943759149703https://leetcode.com/problems/design-hashmap
25636Exclusive Time of Functions51.9%Medium0.29258241998390533https://leetcode.com/problems/exclusive-time-of-functions
26692Top K Frequent Words51.8%Medium0.27668253048640057https://leetcode.com/problems/top-k-frequent-words
27599Minimum Index Sum of Two Lists50.7%Easy0.2723477084516743https://leetcode.com/problems/minimum-index-sum-of-two-lists
28173Binary Search Tree Iterator56.6%Medium0.2676620302183387https://leetcode.com/problems/binary-search-tree-iterator
2920Valid Parentheses39.0%Easy0.26589700119033977https://leetcode.com/problems/valid-parentheses
30127Word Ladder29.6%Medium0.25762464516780426https://leetcode.com/problems/word-ladder
31126Word Ladder II22.1%Hard0.25503976484865665https://leetcode.com/problems/word-ladder-ii
3275Sort Colors47.3%Medium0.24805587169410617https://leetcode.com/problems/sort-colors
33535Encode and Decode TinyURL79.9%Medium0.23740366313104297https://leetcode.com/problems/encode-and-decode-tinyurl
34545Boundary of Binary Tree38.9%Medium0.235382573048932https://leetcode.com/problems/boundary-of-binary-tree
351188Design Bounded Blocking Queue70.5%Medium0.23300728083654992https://leetcode.com/problems/design-bounded-blocking-queue
36722Remove Comments34.6%Medium0.2297333609932653https://leetcode.com/problems/remove-comments
371190Reverse Substrings Between Each Pair of Parentheses61.5%Medium0.22128423872402644https://leetcode.com/problems/reverse-substrings-between-each-pair-of-parentheses
38236Lowest Common Ancestor of a Binary Tree45.7%Medium0.2082667520997665https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree
39232Implement Queue using Stacks49.6%Easy0.20615437352136948https://leetcode.com/problems/implement-queue-using-stacks
4037Sudoku Solver43.6%Hard0.20309089276282075https://leetcode.com/problems/sudoku-solver
41138Copy List with Random Pointer36.4%Medium0.20177099180675884https://leetcode.com/problems/copy-list-with-random-pointer
42426Convert Binary Search Tree to Sorted Doubly Linked List59.1%Medium0.19933290262049122https://leetcode.com/problems/convert-binary-search-tree-to-sorted-doubly-linked-list
4342Trapping Rain Water48.9%Hard0.19363009358633576https://leetcode.com/problems/trapping-rain-water
44206Reverse Linked List62.5%Easy0.19179339445652105https://leetcode.com/problems/reverse-linked-list
4546Permutations63.5%Medium0.18816690901782251https://leetcode.com/problems/permutations
46438Find All Anagrams in a String43.3%Medium0.18564799141482685https://leetcode.com/problems/find-all-anagrams-in-a-string
47380Insert Delete GetRandom O(1)47.5%Medium0.18219818377547725https://leetcode.com/problems/insert-delete-getrandom-o1
481212Team Scores in Football Tournament55.8%Medium0.17728013452102853https://leetcode.com/problems/team-scores-in-football-tournament
49238Product of Array Except Self60.1%Medium0.1764463022920214https://leetcode.com/problems/product-of-array-except-self
50230Kth Smallest Element in a BST60.2%Medium0.17586503601879516https://leetcode.com/problems/kth-smallest-element-in-a-bst
512Add Two Numbers33.9%Medium0.17086242673531185https://leetcode.com/problems/add-two-numbers
5243Multiply Strings33.9%Medium0.17061651017204038https://leetcode.com/problems/multiply-strings
53609Find Duplicate File in System59.5%Medium0.16971838464062922https://leetcode.com/problems/find-duplicate-file-in-system
54349Intersection of Two Arrays62.5%Easy0.16713804301987062https://leetcode.com/problems/intersection-of-two-arrays
55715Range Module38.5%Hard0.1636294237818021https://leetcode.com/problems/range-module
56121Best Time to Buy and Sell Stock50.5%Easy0.1589005268310668https://leetcode.com/problems/best-time-to-buy-and-sell-stock
57141Linked List Cycle41.1%Easy0.15827948939978168https://leetcode.com/problems/linked-list-cycle
58139Word Break40.1%Medium0.1526025947499831https://leetcode.com/problems/word-break
59314Binary Tree Vertical Order Traversal45.3%Medium0.15148600467306356https://leetcode.com/problems/binary-tree-vertical-order-traversal
6021Merge Two Sorted Lists53.5%Easy0.15110619328155395https://leetcode.com/problems/merge-two-sorted-lists
61863All Nodes Distance K in Binary Tree55.4%Medium0.14315784643382565https://leetcode.com/problems/all-nodes-distance-k-in-binary-tree
6234Find First and Last Position of Element in Sorted Array36.2%Medium0.14257571553993023https://leetcode.com/problems/find-first-and-last-position-of-element-in-sorted-array
63208Implement Trie (Prefix Tree)49.4%Medium0.13658526585058278https://leetcode.com/problems/implement-trie-prefix-tree
6410Regular Expression Matching26.8%Hard0.13632230148088326https://leetcode.com/problems/regular-expression-matching
655Longest Palindromic Substring29.5%Medium0.13631574933960264https://leetcode.com/problems/longest-palindromic-substring
661044Longest Duplicate Substring31.9%Hard0.1351378186727963https://leetcode.com/problems/longest-duplicate-substring
67195Tenth Line33.0%Easy0.1329388000145885https://leetcode.com/problems/tenth-line
684Median of Two Sorted Arrays29.6%Hard0.13162453469432595https://leetcode.com/problems/median-of-two-sorted-arrays
693Longest Substring Without Repeating Characters30.4%Medium0.13147131860020772https://leetcode.com/problems/longest-substring-without-repeating-characters
70214Shortest Palindrome29.8%Hard0.13026519483790147https://leetcode.com/problems/shortest-palindrome
71958Check Completeness of a Binary Tree52.1%Medium0.12884496089089562https://leetcode.com/problems/check-completeness-of-a-binary-tree
72694Number of Distinct Islands56.0%Medium0.12516314295400602https://leetcode.com/problems/number-of-distinct-islands
73163Missing Ranges24.3%Medium0.11821867060119497https://leetcode.com/problems/missing-ranges
74207Course Schedule43.1%Medium0.11725761496207857https://leetcode.com/problems/course-schedule
75160Intersection of Two Linked Lists40.6%Easy0.11585676607984101https://leetcode.com/problems/intersection-of-two-linked-lists
76101Symmetric Tree46.8%Easy0.11583847861592966https://leetcode.com/problems/symmetric-tree
77503Next Greater Element II56.5%Medium0.11242734769506908https://leetcode.com/problems/next-greater-element-ii
78344Reverse String68.5%Easy0.11144968419514555https://leetcode.com/problems/reverse-string
79965Univalued Binary Tree67.7%Easy0.11132479473250746https://leetcode.com/problems/univalued-binary-tree
80412Fizz Buzz62.3%Easy0.1089140648664841https://leetcode.com/problems/fizz-buzz
81204Count Primes31.5%Easy0.10755824083435236https://leetcode.com/problems/count-primes
82295Find Median from Data Stream44.3%Hard0.10502147513923703https://leetcode.com/problems/find-median-from-data-stream
83273Integer to English Words27.1%Hard0.10380963271229693https://leetcode.com/problems/integer-to-english-words
84417Pacific Atlantic Water Flow41.1%Medium0.10008345855698253https://leetcode.com/problems/pacific-atlantic-water-flow
8512Integer to Roman55.1%Medium0.09981819303484349https://leetcode.com/problems/integer-to-roman
8613Roman to Integer55.7%Easy0.09884785502028326https://leetcode.com/problems/roman-to-integer
8771Simplify Path32.6%Medium0.09754315430863725https://leetcode.com/problems/simplify-path
881236Web Crawler64.3%Medium0.09531017980432487https://leetcode.com/problems/web-crawler
89215Kth Largest Element in an Array55.4%Medium0.09326418878681669https://leetcode.com/problems/kth-largest-element-in-an-array
90794Valid Tic-Tac-Toe State32.6%Medium0.0922312242160336https://leetcode.com/problems/valid-tic-tac-toe-state
91243Shortest Word Distance61.0%Easy0.08952296190665864https://leetcode.com/problems/shortest-word-distance
92652Find Duplicate Subtrees50.2%Medium0.08907963005368878https://leetcode.com/problems/find-duplicate-subtrees
93109Convert Sorted List to Binary Search Tree47.7%Medium0.08701137698962977https://leetcode.com/problems/convert-sorted-list-to-binary-search-tree
94449Serialize and Deserialize BST52.0%Medium0.08696405427235052https://leetcode.com/problems/serialize-and-deserialize-bst
95116Populating Next Right Pointers in Each Node45.2%Medium0.08636683942300452https://leetcode.com/problems/populating-next-right-pointers-in-each-node
96114Flatten Binary Tree to Linked List49.3%Medium0.08137267196054322https://leetcode.com/problems/flatten-binary-tree-to-linked-list
97242Valid Anagram56.9%Easy0.08093090313491587https://leetcode.com/problems/valid-anagram
9829Divide Two Integers16.4%Medium0.07996429167663288https://leetcode.com/problems/divide-two-integers
9957Insert Interval33.5%Hard0.07930596581741095https://leetcode.com/problems/insert-interval
100341Flatten Nested List Iterator52.9%Medium0.07763353611776078https://leetcode.com/problems/flatten-nested-list-iterator
10149Group Anagrams56.9%Medium0.07434615245733686https://leetcode.com/problems/group-anagrams
102721Accounts Merge48.8%Medium0.07349495575336484https://leetcode.com/problems/accounts-merge
103155Min Stack44.5%Easy0.07340219281226193https://leetcode.com/problems/min-stack
104505The Maze II47.7%Medium0.07133147800542972https://leetcode.com/problems/the-maze-ii
105205Isomorphic Strings39.8%Easy0.0700566499345432https://leetcode.com/problems/isomorphic-strings
106136Single Number65.5%Easy0.0693807551554477https://leetcode.com/problems/single-number
107284Peeking Iterator45.7%Medium0.06867686579621939https://leetcode.com/problems/peeking-iterator
108289Game of Life54.5%Medium0.06756473699960104https://leetcode.com/problems/game-of-life
109199Binary Tree Right Side View54.1%Medium0.06748154336946242https://leetcode.com/problems/binary-tree-right-side-view
110560Subarray Sum Equals K43.9%Medium0.06636621624059272https://leetcode.com/problems/subarray-sum-equals-k
1111197Minimum Knight Moves36.1%Medium0.06562120535847293https://leetcode.com/problems/minimum-knight-moves
112153Sum26.8%Medium0.06446972405454035https://leetcode.com/problems/3sum
11351N-Queens46.6%Hard0.06402185876493102https://leetcode.com/problems/n-queens
1141170Compare Strings by Frequency of the Smallest Character58.7%Easy0.060901617340111645https://leetcode.com/problems/compare-strings-by-frequency-of-the-smallest-character
115305Number of Islands II40.1%Hard0.06007812394328337https://leetcode.com/problems/number-of-islands-ii
116355Design Twitter30.3%Medium0.05824061998094904https://leetcode.com/problems/design-twitter
11745Jump Game II30.6%Hard0.05822366027889668https://leetcode.com/problems/jump-game-ii
118741Cherry Pickup33.9%Hard0.056512210263342307https://leetcode.com/problems/cherry-pickup
11941First Missing Positive32.0%Hard0.056273635982108605https://leetcode.com/problems/first-missing-positive
12032Longest Valid Parentheses28.4%Hard0.0556316959861487https://leetcode.com/problems/longest-valid-parentheses
121128Longest Consecutive Sequence45.1%Hard0.05527490034186498https://leetcode.com/problems/longest-consecutive-sequence
1227Reverse Integer25.8%Easy0.054824382173728654https://leetcode.com/problems/reverse-integer
12376Minimum Window Substring34.6%Hard0.05473322196089386https://leetcode.com/problems/minimum-window-substring
124836Rectangle Overlap48.6%Easy0.05371219359052555https://leetcode.com/problems/rectangle-overlap
125894All Possible Full Binary Trees75.2%Medium0.052436651273043935https://leetcode.com/problems/all-possible-full-binary-trees
12694Binary Tree Inorder Traversal63.3%Medium0.052376558898168765https://leetcode.com/problems/binary-tree-inorder-traversal
127767Reorganize String48.7%Medium0.05216306328458592https://leetcode.com/problems/reorganize-string
12814Longest Common Prefix35.4%Easy0.051846064173015856https://leetcode.com/problems/longest-common-prefix
129209Minimum Size Subarray Sum38.2%Medium0.05146227039335983https://leetcode.com/problems/minimum-size-subarray-sum
130235Lowest Common Ancestor of a Binary Search Tree49.9%Easy0.050282057186910374https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree
131695Max Area of Island62.7%Medium0.04980799142417255https://leetcode.com/problems/max-area-of-island
132518Coin Change 250.2%Medium0.04919528672454412https://leetcode.com/problems/coin-change-2
133445Add Two Numbers II54.5%Medium0.04843561709959499https://leetcode.com/problems/add-two-numbers-ii
134125Valid Palindrome36.7%Easy0.047702249651065814https://leetcode.com/problems/valid-palindrome
135876Middle of the Linked List68.4%Easy0.046728740327781716https://leetcode.com/problems/middle-of-the-linked-list
136240Search a 2D Matrix II43.2%Medium0.04647676584572884https://leetcode.com/problems/search-a-2d-matrix-ii
137283Move Zeroes57.8%Easy0.04519585811312136https://leetcode.com/problems/move-zeroes
13836Valid Sudoku48.7%Medium0.04452302288876419https://leetcode.com/problems/valid-sudoku
139529Minesweeper59.1%Medium0.044255009004040724https://leetcode.com/problems/minesweeper
140268Missing Number51.7%Easy0.043089480538103624https://leetcode.com/problems/missing-number
141184Department Highest Salary36.7%Medium0.041672696400568025https://leetcode.com/problems/department-highest-salary
142532K-diff Pairs in an Array31.6%Easy0.041672696400568025https://leetcode.com/problems/k-diff-pairs-in-an-array
14392Reverse Linked List II38.8%Medium0.041073535208287514https://leetcode.com/problems/reverse-linked-list-ii
1441008Construct Binary Search Tree from Preorder Traversal78.4%Medium0.04102671995624437https://leetcode.com/problems/construct-binary-search-tree-from-preorder-traversal
14579Word Search35.6%Medium0.0408086655410548https://leetcode.com/problems/word-search
146212Word Search II34.9%Hard0.03881156536434583https://leetcode.com/problems/word-search-ii
147113Path Sum II46.7%Medium0.03857758982167768https://leetcode.com/problems/path-sum-ii
14824Swap Nodes in Pairs50.4%Medium0.03826607060639552https://leetcode.com/problems/swap-nodes-in-pairs
14919Remove Nth Node From End of List35.2%Medium0.03704967488869408https://leetcode.com/problems/remove-nth-node-from-end-of-list
150322Coin Change35.5%Medium0.03569682997206547https://leetcode.com/problems/coin-change
151973K Closest Points to Origin63.8%Medium0.035550452059401896https://leetcode.com/problems/k-closest-points-to-origin
15259Spiral Matrix II53.9%Medium0.0351873674509732https://leetcode.com/problems/spiral-matrix-ii
153105Construct Binary Tree from Preorder and Inorder Traversal48.8%Medium0.03466791990373826https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal
154543Diameter of Binary Tree48.4%Easy0.032708305572393875https://leetcode.com/problems/diameter-of-binary-tree
155350Intersection of Two Arrays II51.4%Easy0.0321281809578036https://leetcode.com/problems/intersection-of-two-arrays-ii
156150Evaluate Reverse Polish Notation36.3%Medium0.031526253646773944https://leetcode.com/problems/evaluate-reverse-polish-notation
15755Jump Game34.6%Medium0.030985252381807864https://leetcode.com/problems/jump-game
15838Count and Say44.6%Easy0.030956234663467107https://leetcode.com/problems/count-and-say
159179Largest Number28.8%Medium0.03093030069135863https://leetcode.com/problems/largest-number
160151Reverse Words in a String21.9%Medium0.03068306302420247https://leetcode.com/problems/reverse-words-in-a-string
161347Top K Frequent Elements61.2%Medium0.029662726238554857https://leetcode.com/problems/top-k-frequent-elements
162496Next Greater Element I63.8%Easy0.029462032730316202https://leetcode.com/problems/next-greater-element-i
163456132 Pattern28.9%Medium0.029306126585499394https://leetcode.com/problems/132-pattern
164169Majority Element58.7%Easy0.02905829743134675https://leetcode.com/problems/majority-element
16562Unique Paths54.1%Medium0.02853749186115581https://leetcode.com/problems/unique-paths
166938Range Sum of BST81.3%Easy0.027755467721532374https://leetcode.com/problems/range-sum-of-bst
167437Path Sum III47.2%Medium0.02708561605844235https://leetcode.com/problems/path-sum-iii
168796Rotate String49.6%Easy0.02701041988276247https://leetcode.com/problems/rotate-string
169103Binary Tree Zigzag Level Order Traversal48.3%Medium0.0269910535894593https://leetcode.com/problems/binary-tree-zigzag-level-order-traversal
1701305All Elements in Two Binary Search Trees76.1%Medium0.026282721799194744https://leetcode.com/problems/all-elements-in-two-binary-search-trees
17198Validate Binary Search Tree27.8%Medium0.026187123416340663https://leetcode.com/problems/validate-binary-search-tree
17291Decode Ways24.7%Medium0.023662742620848144https://leetcode.com/problems/decode-ways
17326Remove Duplicates from Sorted Array45.1%Easy0.02364518575043321https://leetcode.com/problems/remove-duplicates-from-sorted-array
174844Backspace String Compare46.4%Easy0.0235551325028849https://leetcode.com/problems/backspace-string-compare
175622Design Circular Queue43.8%Medium0.02246023667974994https://leetcode.com/problems/design-circular-queue
176981Time Based Key-Value Store53.1%Medium0.02226024024151985https://leetcode.com/problems/time-based-key-value-store
177152Maximum Product Subarray31.7%Medium0.022176931045949227https://leetcode.com/problems/maximum-product-subarray
178221Maximal Square37.7%Medium0.022108490754203434https://leetcode.com/problems/maximal-square
179112Path Sum41.2%Easy0.021701651897460775https://leetcode.com/problems/path-sum
180300Longest Increasing Subsequence42.6%Medium0.020893943681912164https://leetcode.com/problems/longest-increasing-subsequence
1819Palindrome Number48.4%Easy0.018837205580381582https://leetcode.com/problems/palindrome-number
18288Merge Sorted Array39.4%Easy0.018667009593356397https://leetcode.com/problems/merge-sorted-array
183617Merge Two Binary Trees74.1%Easy0.018496211633622316https://leetcode.com/problems/merge-two-binary-trees
184239Sliding Window Maximum43.0%Hard0.01768566434627554https://leetcode.com/problems/sliding-window-maximum
18550Pow(x;n)30.3%Medium0.017036779497025166https://leetcode.com/problems/powx-n
186402Remove K Digits28.4%Medium0.016863806052004816https://leetcode.com/problems/remove-k-digits
187340Longest Substring with At Most K Distinct Characters44.1%Hard0.016122880486563188https://leetcode.com/problems/longest-substring-with-at-most-k-distinct-characters
188217Contains Duplicate56.0%Easy0.015106027431013205https://leetcode.com/problems/contains-duplicate
189707Design Linked List24.5%Medium0.015054857167065819https://leetcode.com/problems/design-linked-list
190102Binary Tree Level Order Traversal54.6%Medium0.014477270588287548https://leetcode.com/problems/binary-tree-level-order-traversal
191107Binary Tree Level Order Traversal II53.5%Easy0.014395642075089957https://leetcode.com/problems/binary-tree-level-order-traversal-ii
192315Count of Smaller Numbers After Self41.5%Hard0.014352596574956585https://leetcode.com/problems/count-of-smaller-numbers-after-self
19344Wildcard Matching24.7%Hard0.013703537497261858https://leetcode.com/problems/wildcard-matching
19470Climbing Stairs47.8%Easy0.013494975575004323https://leetcode.com/problems/climbing-stairs
195122Best Time to Buy and Sell Stock II57.0%Easy0.013351333174864208https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii
1961047Remove All Adjacent Duplicates In String68.6%Easy0.013059277989179281https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string
197108Convert Sorted Array to Binary Search Tree57.9%Easy0.012453461071286613https://leetcode.com/problems/convert-sorted-array-to-binary-search-tree
198287Find the Duplicate Number55.5%Medium0.012335682739188652https://leetcode.com/problems/find-the-duplicate-number
19911Container With Most Water50.8%Medium0.012214824746492168https://leetcode.com/problems/container-with-most-water
200986Interval List Intersections67.3%Medium0.011969023795320735https://leetcode.com/problems/interval-list-intersections
201119Pascal's Triangle II49.0%Easy0.011894282360609866https://leetcode.com/problems/pascals-triangle-ii
202210Course Schedule II40.7%Medium0.011869857339029215https://leetcode.com/problems/course-schedule-ii
203264Ugly Number II42.0%Medium0.011604423810414601https://leetcode.com/problems/ugly-number-ii
204117Populating Next Right Pointers in Each Node II39.1%Medium0.011389644764357807https://leetcode.com/problems/populating-next-right-pointers-in-each-node-ii
205819Most Common Word44.8%Easy0.010269666637456105https://leetcode.com/problems/most-common-word
206905Sort Array By Parity74.1%Easy0.009603915354180344https://leetcode.com/problems/sort-array-by-parity
207621Task Scheduler50.1%Medium0.009334412329990095https://leetcode.com/problems/task-scheduler
20828Implement strStr()34.5%Easy0.008850485542574548https://leetcode.com/problems/implement-strstr
2098String to Integer (atoi)15.4%Medium0.008513104762248265https://leetcode.com/problems/string-to-integer-atoi
210153Find Minimum in Rotated Sorted Array45.1%Medium0.008430963288799368https://leetcode.com/problems/find-minimum-in-rotated-sorted-array
211977Squares of a Sorted Array72.1%Easy0.003891055492966611https://leetcode.com/problems/squares-of-a-sorted-array
21267Add Binary45.2%Easy0.003735684238128885https://leetcode.com/problems/add-binary
213140Word Break II32.6%Hard0.0027070942357783584https://leetcode.com/problems/word-break-ii
2141380Lucky Numbers in a Matrix71.5%Easy0https://leetcode.com/problems/lucky-numbers-in-a-matrix
2151410HTML Entity Parser54.0%Medium0https://leetcode.com/problems/html-entity-parser