Files
LeetCode-Questions-CompanyWise/adobe_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

25 KiB

1IDTitleAcceptanceDifficultyFrequencyLeetcode Question Link
21Two Sum45.6%Easy0.900096464956218https://leetcode.com/problems/two-sum
32Add Two Numbers33.9%Medium0.7674901747071898https://leetcode.com/problems/add-two-numbers
4741Cherry Pickup33.9%Hard0.6348838844581617https://leetcode.com/problems/cherry-pickup
521Merge Two Sorted Lists53.5%Easy0.5022775942091335https://leetcode.com/problems/merge-two-sorted-lists
65Longest Palindromic Substring29.5%Medium0.36967130396010545https://leetcode.com/problems/longest-palindromic-substring
73Longest Substring Without Repeating Characters30.4%Medium0.33543751206600453https://leetcode.com/problems/longest-substring-without-repeating-characters
84Median of Two Sorted Arrays29.6%Hard0.30208546395829133https://leetcode.com/problems/median-of-two-sorted-arrays
9153Sum26.8%Medium0.25552496081724957https://leetcode.com/problems/3sum
101096Brace Expansion II62.2%Hard0.2363887780642304https://leetcode.com/problems/brace-expansion-ii
117Reverse Integer25.8%Easy0.2202424163450189https://leetcode.com/problems/reverse-integer
12192Word Frequency25.8%Medium0.21614863444241852https://leetcode.com/problems/word-frequency
13274H-Index36.1%Medium0.19380371568797425https://leetcode.com/problems/h-index
14206Reverse Linked List62.5%Easy0.1563653350583309https://leetcode.com/problems/reverse-linked-list
15706Design HashMap61.3%Easy0.1476880076475794https://leetcode.com/problems/design-hashmap
1622Generate Parentheses62.7%Medium0.14612656455721032https://leetcode.com/problems/generate-parentheses
17175Combine Two Tables60.8%Easy0.1453647140234507https://leetcode.com/problems/combine-two-tables
18728Self Dividing Numbers74.3%Easy0.14501328757782014https://leetcode.com/problems/self-dividing-numbers
19726Number of Atoms49.0%Hard0.13804422079620546https://leetcode.com/problems/number-of-atoms
20146LRU Cache33.2%Medium0.13057313078965735https://leetcode.com/problems/lru-cache
2142Trapping Rain Water48.9%Hard0.12389276378675394https://leetcode.com/problems/trapping-rain-water
22446Arithmetic Slices II - Subsequence32.7%Hard0.12099331128663167https://leetcode.com/problems/arithmetic-slices-ii-subsequence
236ZigZag Conversion36.3%Medium0.11677183708486526https://leetcode.com/problems/zigzag-conversion
24368Largest Divisible Subset38.0%Medium0.11624101530456815https://leetcode.com/problems/largest-divisible-subset
25238Product of Array Except Self60.1%Medium0.11255129774720934https://leetcode.com/problems/product-of-array-except-self
2682Remove Duplicates from Sorted List II36.8%Medium0.1110882064011508https://leetcode.com/problems/remove-duplicates-from-sorted-list-ii
2753Maximum Subarray46.5%Easy0.10102310445192379https://leetcode.com/problems/maximum-subarray
28725Split Linked List in Parts52.2%Medium0.1007562928969156https://leetcode.com/problems/split-linked-list-in-parts
2912Integer to Roman55.1%Medium0.09981819303484349https://leetcode.com/problems/integer-to-roman
30836Rectangle Overlap48.6%Easy0.09358079943969791https://leetcode.com/problems/rectangle-overlap
3131Next Permutation32.6%Medium0.09178119886142269https://leetcode.com/problems/next-permutation
32929Unique Email Addresses67.4%Easy0.09107126584446965https://leetcode.com/problems/unique-email-addresses
3311Container With Most Water50.8%Medium0.08887230664829432https://leetcode.com/problems/container-with-most-water
34214Shortest Palindrome29.8%Hard0.0753494372417868https://leetcode.com/problems/shortest-palindrome
3576Minimum Window Substring34.6%Hard0.07378420845373558https://leetcode.com/problems/minimum-window-substring
36987Vertical Order Traversal of a Binary Tree36.6%Medium0.070392125446596https://leetcode.com/problems/vertical-order-traversal-of-a-binary-tree
371114Print in Order65.7%Easy0.0700675626167169https://leetcode.com/problems/print-in-order
38386Lexicographical Numbers51.6%Medium0.06875559541512997https://leetcode.com/problems/lexicographical-numbers
39178Rank Scores45.8%Medium0.06551667145414991https://leetcode.com/problems/rank-scores
40554Brick Wall50.0%Medium0.0639195177132874https://leetcode.com/problems/brick-wall
41771Jewels and Stones86.4%Easy0.06372709715833007https://leetcode.com/problems/jewels-and-stones
4292Reverse Linked List II38.8%Medium0.0634569616201148https://leetcode.com/problems/reverse-linked-list-ii
4323Merge k Sorted Lists40.2%Hard0.06293239083543646https://leetcode.com/problems/merge-k-sorted-lists
44300Longest Increasing Subsequence42.6%Medium0.06265630749555627https://leetcode.com/problems/longest-increasing-subsequence
45115Distinct Subsequences38.3%Hard0.061494781607806234https://leetcode.com/problems/distinct-subsequences
46195Tenth Line33.0%Easy0.06127490750055161https://leetcode.com/problems/tenth-line
47739Daily Temperatures63.3%Medium0.06111383323222972https://leetcode.com/problems/daily-temperatures
48420Strong Password Checker14.0%Hard0.061087691979838175https://leetcode.com/problems/strong-password-checker
49595Big Countries77.3%Easy0.06097126229595878https://leetcode.com/problems/big-countries
50184Sum33.7%Medium0.05998439829836431https://leetcode.com/problems/4sum
5188Merge Sorted Array39.4%Easy0.059258174101133876https://leetcode.com/problems/merge-sorted-array
5274Search a 2D Matrix36.5%Medium0.057001980519332376https://leetcode.com/problems/search-a-2d-matrix
53312Burst Balloons51.8%Hard0.056547726798068784https://leetcode.com/problems/burst-balloons
54218The Skyline Problem34.6%Hard0.0564413109049518https://leetcode.com/problems/the-skyline-problem
55177Nth Highest Salary31.4%Medium0.0562934401878294https://leetcode.com/problems/nth-highest-salary
5641First Missing Positive32.0%Hard0.056273635982108605https://leetcode.com/problems/first-missing-positive
5730Substring with Concatenation of All Words25.4%Hard0.05509349054082484https://leetcode.com/problems/substring-with-concatenation-of-all-words
58202Happy Number50.4%Easy0.05503451923624455https://leetcode.com/problems/happy-number
59395Longest Substring with At Least K Repeating Characters41.4%Medium0.05371219359052555https://leetcode.com/problems/longest-substring-with-at-least-k-repeating-characters
60601Human Traffic of Stadium41.7%Hard0.05223119222544569https://leetcode.com/problems/human-traffic-of-stadium
6114Longest Common Prefix35.4%Easy0.051846064173015856https://leetcode.com/problems/longest-common-prefix
62681Next Closest Time45.0%Medium0.05045206096038863https://leetcode.com/problems/next-closest-time
63219Contains Duplicate II37.7%Easy0.05012010405957234https://leetcode.com/problems/contains-duplicate-ii
64163Sum Closest46.0%Medium0.04613364174896058https://leetcode.com/problems/3sum-closest
65856Score of Parentheses60.5%Medium0.04567003683318837https://leetcode.com/problems/score-of-parentheses
668String to Integer (atoi)15.4%Medium0.04549614908874012https://leetcode.com/problems/string-to-integer-atoi
67176Second Highest Salary31.6%Easy0.045338680589061736https://leetcode.com/problems/second-highest-salary
68200Number of Islands46.8%Medium0.04526299408355752https://leetcode.com/problems/number-of-islands
69204Count Primes31.5%Easy0.04340205577484725https://leetcode.com/problems/count-primes
70669Trim a Binary Search Tree63.0%Easy0.04255961441879593https://leetcode.com/problems/trim-a-binary-search-tree
71448Find All Numbers Disappeared in an Array55.9%Easy0.04214343508255059https://leetcode.com/problems/find-all-numbers-disappeared-in-an-array
72535Encode and Decode TinyURL79.9%Medium0.041978881338661234https://leetcode.com/problems/encode-and-decode-tinyurl
73155Min Stack44.5%Easy0.04194952712763244https://leetcode.com/problems/min-stack
741010Pairs of Songs With Total Durations Divisible by 6047.4%Easy0.04180336980436055https://leetcode.com/problems/pairs-of-songs-with-total-durations-divisible-by-60
75545Boundary of Binary Tree38.9%Medium0.04158603377810283https://leetcode.com/problems/boundary-of-binary-tree
7637Sudoku Solver43.6%Hard0.040527833612118376https://leetcode.com/problems/sudoku-solver
7725Reverse Nodes in k-Group42.1%Hard0.040236757867738004https://leetcode.com/problems/reverse-nodes-in-k-group
78686Repeated String Match32.3%Easy0.03984590854719967https://leetcode.com/problems/repeated-string-match
79344Reverse String68.5%Easy0.0393340697038369https://leetcode.com/problems/reverse-string
80560Subarray Sum Equals K43.9%Medium0.037871360699521406https://leetcode.com/problems/subarray-sum-equals-k
81389Find the Difference55.3%Easy0.03780374555587777https://leetcode.com/problems/find-the-difference
8264Minimum Path Sum54.5%Medium0.03769479893530684https://leetcode.com/problems/minimum-path-sum
8345Jump Game II30.6%Hard0.037651506203688394https://leetcode.com/problems/jump-game-ii
84402Remove K Digits28.4%Medium0.03755134565213245https://leetcode.com/problems/remove-k-digits
8595Unique Binary Search Trees II40.6%Medium0.037535682530377985https://leetcode.com/problems/unique-binary-search-trees-ii
8646Permutations63.5%Medium0.03732163223353564https://leetcode.com/problems/permutations
87375Guess Number Higher or Lower II40.3%Medium0.036634133179780384https://leetcode.com/problems/guess-number-higher-or-lower-ii
8851N-Queens46.6%Hard0.03651521297509749https://leetcode.com/problems/n-queens
89279Perfect Squares47.4%Medium0.03636764417087485https://leetcode.com/problems/perfect-squares
9020Valid Parentheses39.0%Easy0.03618871742239114https://leetcode.com/problems/valid-parentheses
91875Koko Eating Bananas52.1%Medium0.0359751024582779https://leetcode.com/problems/koko-eating-bananas
9232Longest Valid Parentheses28.4%Hard0.03595893038744387https://leetcode.com/problems/longest-valid-parentheses
93322Coin Change35.5%Medium0.03569682997206547https://leetcode.com/problems/coin-change
9459Spiral Matrix II53.9%Medium0.0351873674509732https://leetcode.com/problems/spiral-matrix-ii
95977Squares of a Sorted Array72.1%Easy0.0344861760711693https://leetcode.com/problems/squares-of-a-sorted-array
9649Group Anagrams56.9%Medium0.03372685005765885https://leetcode.com/problems/group-anagrams
97121Best Time to Buy and Sell Stock50.5%Easy0.033453179586686504https://leetcode.com/problems/best-time-to-buy-and-sell-stock
98198House Robber42.0%Easy0.033320991026093004https://leetcode.com/problems/house-robber
9978Subsets62.0%Medium0.03270937553603224https://leetcode.com/problems/subsets
100543Diameter of Binary Tree48.4%Easy0.032708305572393875https://leetcode.com/problems/diameter-of-binary-tree
101617Merge Two Binary Trees74.1%Easy0.03264929866766111https://leetcode.com/problems/merge-two-binary-trees
10248Rotate Image56.7%Medium0.03142936253029228https://leetcode.com/problems/rotate-image
103239Sliding Window Maximum43.0%Hard0.031228142547585713https://leetcode.com/problems/sliding-window-maximum
104131Palindrome Partitioning47.5%Medium0.03101558050692165https://leetcode.com/problems/palindrome-partitioning
10555Jump Game34.6%Medium0.030985252381807864https://leetcode.com/problems/jump-game
106460LFU Cache34.2%Hard0.030962225603966897https://leetcode.com/problems/lfu-cache
10744Wildcard Matching24.7%Hard0.030573033362282363https://leetcode.com/problems/wildcard-matching
10813Roman to Integer55.7%Easy0.030443751414723153https://leetcode.com/problems/roman-to-integer
109316Remove Duplicate Letters35.8%Hard0.030443751414723153https://leetcode.com/problems/remove-duplicate-letters
11070Climbing Stairs47.8%Easy0.03011156054328408https://leetcode.com/problems/climbing-stairs
111329Longest Increasing Path in a Matrix43.4%Hard0.029902560173869868https://leetcode.com/problems/longest-increasing-path-in-a-matrix
11285Maximal Rectangle37.7%Hard0.029754261081792705https://leetcode.com/problems/maximal-rectangle
113201Bitwise AND of Numbers Range39.4%Medium0.02969780239174205https://leetcode.com/problems/bitwise-and-of-numbers-range
1141108Defanging an IP Address87.5%Easy0.02901382119071579https://leetcode.com/problems/defanging-an-ip-address
11533Search in Rotated Sorted Array34.5%Medium0.0287009496170278https://leetcode.com/problems/search-in-rotated-sorted-array
11635Search Insert Position42.6%Easy0.028694726692013624https://leetcode.com/problems/search-insert-position
11710Regular Expression Matching26.8%Hard0.02844130559772196https://leetcode.com/problems/regular-expression-matching
118709To Lower Case79.3%Easy0.02780531308033682https://leetcode.com/problems/to-lower-case
119159Longest Substring with At Most Two Distinct Characters49.4%Medium0.02717558537896476https://leetcode.com/problems/longest-substring-with-at-most-two-distinct-characters
120343Integer Break50.4%Medium0.027157133968907482https://leetcode.com/problems/integer-break
12198Validate Binary Search Tree27.8%Medium0.026187123416340663https://leetcode.com/problems/validate-binary-search-tree
12254Spiral Matrix34.1%Medium0.02611966966892215https://leetcode.com/problems/spiral-matrix
12381Search in Rotated Sorted Array II33.0%Medium0.026111144003685752https://leetcode.com/problems/search-in-rotated-sorted-array-ii
124378Kth Smallest Element in a Sorted Matrix54.3%Medium0.02599048981653746https://leetcode.com/problems/kth-smallest-element-in-a-sorted-matrix
125143Reorder List37.1%Medium0.025870945598649286https://leetcode.com/problems/reorder-list
126107Binary Tree Level Order Traversal II53.5%Easy0.02545071360337261https://leetcode.com/problems/binary-tree-level-order-traversal-ii
127220Contains Duplicate III20.9%Medium0.024876904755404577https://leetcode.com/problems/contains-duplicate-iii
128877Stone Game64.8%Medium0.02486144206532915https://leetcode.com/problems/stone-game
129138Copy List with Random Pointer36.4%Medium0.02453734514188008https://leetcode.com/problems/copy-list-with-random-pointer
130139Word Break40.1%Medium0.024095228922591846https://leetcode.com/problems/word-break
13191Decode Ways24.7%Medium0.023662742620848144https://leetcode.com/problems/decode-ways
13265Valid Number15.3%Hard0.022858138076050194https://leetcode.com/problems/valid-number
133199Binary Tree Right Side View54.1%Medium0.022539339846061532https://leetcode.com/problems/binary-tree-right-side-view
13472Edit Distance44.8%Hard0.022400140173127806https://leetcode.com/problems/edit-distance
135185Department Top Three Salaries34.5%Hard0.02218615681552263https://leetcode.com/problems/department-top-three-salaries
136152Maximum Product Subarray31.7%Medium0.022176931045949227https://leetcode.com/problems/maximum-product-subarray
137221Maximal Square37.7%Medium0.022108490754203434https://leetcode.com/problems/maximal-square
138112Path Sum41.2%Easy0.021701651897460775https://leetcode.com/problems/path-sum
13956Merge Intervals39.3%Medium0.02150990613527447https://leetcode.com/problems/merge-intervals
140224Basic Calculator36.8%Hard0.020965128465044926https://leetcode.com/problems/basic-calculator
14196Unique Binary Search Trees52.9%Medium0.02067613283842731https://leetcode.com/problems/unique-binary-search-trees
14293Restore IP Addresses35.6%Medium0.019763489118839635https://leetcode.com/problems/restore-ip-addresses
143525Contiguous Array42.8%Medium0.01975372873623256https://leetcode.com/problems/contiguous-array
144399Evaluate Division51.6%Medium0.019380451549662482https://leetcode.com/problems/evaluate-division
145229Majority Element II35.6%Medium0.019057270410286146https://leetcode.com/problems/majority-element-ii
146236Lowest Common Ancestor of a Binary Tree45.7%Medium0.018724947332324816https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree
147169Majority Element58.7%Easy0.018694317054881164https://leetcode.com/problems/majority-element
148235Lowest Common Ancestor of a Binary Search Tree49.9%Easy0.018394142155974434https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree
149197Rising Temperature38.4%Easy0.018198864417406563https://leetcode.com/problems/rising-temperature
150234Palindrome Linked List39.3%Easy0.01801241989645556https://leetcode.com/problems/palindrome-linked-list
151314Binary Tree Vertical Order Traversal45.3%Medium0.018010392274465332https://leetcode.com/problems/binary-tree-vertical-order-traversal
152136Single Number65.5%Easy0.017801666336826266https://leetcode.com/problems/single-number
153993Cousins in Binary Tree52.0%Easy0.017414458368636587https://leetcode.com/problems/cousins-in-binary-tree
154168Excel Sheet Column Title31.1%Easy0.01734648872385377https://leetcode.com/problems/excel-sheet-column-title
155994Rotting Oranges49.2%Medium0.017087941897195622https://leetcode.com/problems/rotting-oranges
156415Add Strings47.5%Easy0.016991158247219373https://leetcode.com/problems/add-strings
157191Number of 1 Bits49.8%Easy0.01673523624045844https://leetcode.com/problems/number-of-1-bits
15871Simplify Path32.6%Medium0.016260520871780308https://leetcode.com/problems/simplify-path
159110Balanced Binary Tree43.5%Easy0.015742847432510365https://leetcode.com/problems/balanced-binary-tree
160215Kth Largest Element in an Array55.4%Medium0.015519225147600912https://leetcode.com/problems/kth-largest-element-in-an-array
161114Flatten Binary Tree to Linked List49.3%Medium0.015450951155718977https://leetcode.com/problems/flatten-binary-tree-to-linked-list
1621002Find Common Characters67.6%Easy0.015273301861833809https://leetcode.com/problems/find-common-characters
163561Array Partition I72.0%Easy0.015186320707985562https://leetcode.com/problems/array-partition-i
16429Divide Two Integers16.4%Medium0.01517479801923515https://leetcode.com/problems/divide-two-integers
165217Contains Duplicate56.0%Easy0.015106027431013205https://leetcode.com/problems/contains-duplicate
166142Linked List Cycle II37.3%Medium0.014710955064667802https://leetcode.com/problems/linked-list-cycle-ii
167315Count of Smaller Numbers After Self41.5%Hard0.014352596574956585https://leetcode.com/problems/count-of-smaller-numbers-after-self
168404Sum of Left Leaves50.9%Easy0.013981353230340547https://leetcode.com/problems/sum-of-left-leaves
16924Swap Nodes in Pairs50.4%Medium0.013945066390122038https://leetcode.com/problems/swap-nodes-in-pairs
170703Kth Largest Element in a Stream49.7%Easy0.013898764390814973https://leetcode.com/problems/kth-largest-element-in-a-stream
1711192Critical Connections in a Network48.6%Hard0.01352742981715631https://leetcode.com/problems/critical-connections-in-a-network
172122Best Time to Buy and Sell Stock II57.0%Easy0.013351333174864208https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii
17357Insert Interval33.5%Hard0.013119243592498872https://leetcode.com/problems/insert-interval
174665Non-decreasing Array19.5%Easy0.013016779950191773https://leetcode.com/problems/non-decreasing-array
175695Max Area of Island62.7%Medium0.012686500631003836https://leetcode.com/problems/max-area-of-island
176181Employees Earning More Than Their Managers56.9%Easy0.012618463959211509https://leetcode.com/problems/employees-earning-more-than-their-managers
17777Combinations54.7%Medium0.01255115315451512https://leetcode.com/problems/combinations
178137Single Number II52.4%Medium0.012527567532662891https://leetcode.com/problems/single-number-ii
179287Find the Duplicate Number55.5%Medium0.012335682739188652https://leetcode.com/problems/find-the-duplicate-number
18019Remove Nth Node From End of List35.2%Medium0.012249425864399291https://leetcode.com/problems/remove-nth-node-from-end-of-list
181547Friend Circles58.6%Medium0.012228828639434596https://leetcode.com/problems/friend-circles
182278First Bad Version35.7%Easy0.012090421323816148https://leetcode.com/problems/first-bad-version
183205Isomorphic Strings39.8%Easy0.011544139746865315https://leetcode.com/problems/isomorphic-strings
1841051Height Checker71.1%Easy0.011468015591641189https://leetcode.com/problems/height-checker
185148Sort List42.3%Medium0.011204599012863078https://leetcode.com/problems/sort-list
186268Missing Number51.7%Easy0.010947682628191997https://leetcode.com/problems/missing-number
187257Binary Tree Paths51.5%Easy0.010457611643958139https://leetcode.com/problems/binary-tree-paths
188647Palindromic Substrings60.6%Medium0.010400509768078022https://leetcode.com/problems/palindromic-substrings
18962Unique Paths54.1%Medium0.010367562048856941https://leetcode.com/problems/unique-paths
19061Rotate List30.0%Medium0.009925639799969955https://leetcode.com/problems/rotate-list
191380Insert Delete GetRandom O(1)47.5%Medium0.009820849864094454https://leetcode.com/problems/insert-delete-getrandom-o1
192113Path Sum II46.7%Medium0.009784813879998279https://leetcode.com/problems/path-sum-ii
19347Permutations II46.4%Medium0.009673594178378379https://leetcode.com/problems/permutations-ii
19440Combination Sum II48.2%Medium0.009578617297069781https://leetcode.com/problems/combination-sum-ii
195387First Unique Character in a String53.4%Easy0.009392680199054166https://leetcode.com/problems/first-unique-character-in-a-string
196128Longest Consecutive Sequence45.1%Hard0.009051883485315484https://leetcode.com/problems/longest-consecutive-sequence
197295Find Median from Data Stream44.3%Hard0.00899893586856953https://leetcode.com/problems/find-median-from-data-stream
198125Valid Palindrome36.7%Easy0.008933948641551634https://leetcode.com/problems/valid-palindrome
199700Search in a Binary Search Tree73.1%Easy0.008512500860171227https://leetcode.com/problems/search-in-a-binary-search-tree
20084Largest Rectangle in Histogram35.2%Hard0.00833685528906183https://leetcode.com/problems/largest-rectangle-in-histogram
201102Binary Tree Level Order Traversal54.6%Medium0.008169238497129479https://leetcode.com/problems/binary-tree-level-order-traversal
202141Linked List Cycle41.1%Easy0.007843861028908454https://leetcode.com/problems/linked-list-cycle
20338Count and Say44.6%Easy0.007829360800435779https://leetcode.com/problems/count-and-say
204101Symmetric Tree46.8%Easy0.007646596306528098https://leetcode.com/problems/symmetric-tree
205876Middle of the Linked List68.4%Easy0.007624893975696915https://leetcode.com/problems/middle-of-the-linked-list
206240Search a 2D Matrix II43.2%Medium0.0075829747244553335https://leetcode.com/problems/search-a-2d-matrix-ii
207692Top K Frequent Words51.8%Medium0.007516006820935329https://leetcode.com/problems/top-k-frequent-words
208145Binary Tree Postorder Traversal55.0%Hard0.00751459482064135https://leetcode.com/problems/binary-tree-postorder-traversal
20936Valid Sudoku48.7%Medium0.007258242715805398https://leetcode.com/problems/valid-sudoku
210412Fizz Buzz62.3%Easy0.007165921026143679https://leetcode.com/problems/fizz-buzz
2111365How Many Numbers Are Smaller Than the Current Number85.6%Easy0.007109877088701047https://leetcode.com/problems/how-many-numbers-are-smaller-than-the-current-number
21273Set Matrix Zeroes43.1%Medium0.0070151111959223245https://leetcode.com/problems/set-matrix-zeroes
2139Palindrome Number48.4%Easy0.006822343017166543https://leetcode.com/problems/palindrome-number
214118Pascal's Triangle52.5%Easy0.006749941254175012https://leetcode.com/problems/pascals-triangle
21567Add Binary45.2%Easy0.006631598888145552https://leetcode.com/problems/add-binary
21683Remove Duplicates from Sorted List45.4%Easy0.006353261522609498https://leetcode.com/problems/remove-duplicates-from-sorted-list
217104Maximum Depth of Binary Tree66.0%Easy0.006261761223976207https://leetcode.com/problems/maximum-depth-of-binary-tree
218105Construct Binary Tree from Preorder and Inorder Traversal48.8%Medium0.005628268691614718https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal
21950Pow(x;n)30.3%Medium0.0055950070772402055https://leetcode.com/problems/powx-n
220124Binary Tree Maximum Path Sum34.3%Hard0.005531752454833179https://leetcode.com/problems/binary-tree-maximum-path-sum
221237Delete Node in a Linked List63.8%Easy0.005144705881237697https://leetcode.com/problems/delete-node-in-a-linked-list
2221470Shuffle the Array88.9%Easy0.004527967890154029https://leetcode.com/problems/shuffle-the-array
22326Remove Duplicates from Sorted Array45.1%Easy0.004385117141850828https://leetcode.com/problems/remove-duplicates-from-sorted-array
22428Implement strStr()34.5%Easy0.003943222775040032https://leetcode.com/problems/implement-strstr
22566Plus One43.0%Easy0.00326211347832938https://leetcode.com/problems/plus-one
226283Move Zeroes57.8%Easy0.0028853803470673955https://leetcode.com/problems/move-zeroes
227154Find Minimum in Rotated Sorted Array II41.6%Hard0.0021273209107578427https://leetcode.com/problems/find-minimum-in-rotated-sorted-array-ii
22879Word Search35.6%Medium0.0016647248725526849https://leetcode.com/problems/word-search
229203Remove Linked List Elements38.6%Easy0.0016237064659255223https://leetcode.com/problems/remove-linked-list-elements