LeetCode-Questions-CompanyWise/amazon_1year.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

69 KiB

1IDTitleAcceptanceDifficultyFrequencyLeetcode Question Link
2937Reorder Data in Log Files54.3%Easy3.9944355947998136https://leetcode.com/problems/reorder-data-in-log-files
31192Critical Connections in a Network48.6%Hard3.925598813161921https://leetcode.com/problems/critical-connections-in-a-network
4200Number of Islands46.8%Medium3.7781578407565197https://leetcode.com/problems/number-of-islands
5994Rotting Oranges49.2%Medium3.6307168683511186https://leetcode.com/problems/rotting-oranges
6819Most Common Word44.8%Easy3.4832758959457175https://leetcode.com/problems/most-common-word
7138Copy List with Random Pointer36.4%Medium3.452672602379887https://leetcode.com/problems/copy-list-with-random-pointer
8763Partition Labels76.1%Medium3.305231629974486https://leetcode.com/problems/partition-labels
9692Top K Frequent Words51.8%Medium3.256820919958484https://leetcode.com/problems/top-k-frequent-words
10146LRU Cache33.2%Medium3.109379947553083https://leetcode.com/problems/lru-cache
111Two Sum45.6%Easy2.9619389751476817https://leetcode.com/problems/two-sum
12572Subtree of Another Tree44.1%Easy2.945568993322194https://leetcode.com/problems/subtree-of-another-tree
13240Search a 2D Matrix II43.2%Medium2.798128020916793https://leetcode.com/problems/search-a-2d-matrix-ii
145Longest Palindromic Substring29.5%Medium2.7358200747627843https://leetcode.com/problems/longest-palindromic-substring
1521Merge Two Sorted Lists53.5%Easy2.678307039145778https://leetcode.com/problems/merge-two-sorted-lists
16472Concatenated Words43.7%Hard2.636650106787832https://leetcode.com/problems/concatenated-words
17973K Closest Points to Origin63.8%Medium2.6240138122465444https://leetcode.com/problems/k-closest-points-to-origin
1823Merge k Sorted Lists40.2%Hard2.5524109933277668https://leetcode.com/problems/merge-k-sorted-lists
191167Minimum Cost to Connect Sticks62.8%Medium2.423130930639536https://leetcode.com/problems/minimum-cost-to-connect-sticks
20957Prison Cells After N Days40.7%Medium2.42269136604331https://leetcode.com/problems/prison-cells-after-n-days
21295Find Median from Data Stream44.3%Hard2.3279113755186978https://leetcode.com/problems/find-median-from-data-stream
2242Trapping Rain Water48.9%Hard2.204080367616883https://leetcode.com/problems/trapping-rain-water
231152Analyze User Website Visit Pattern43.5%Medium2.1610636126719283https://leetcode.com/problems/analyze-user-website-visit-pattern
241268Search Suggestions System63.2%Medium2.157831912757614https://leetcode.com/problems/search-suggestions-system
25588Design In-Memory File System45.9%Hard2.113625008500926https://leetcode.com/problems/design-in-memory-file-system
26460LFU Cache34.2%Hard2.029678026599572https://leetcode.com/problems/lfu-cache
27297Serialize and Deserialize Binary Tree47.5%Hard1.882237054194171https://leetcode.com/problems/serialize-and-deserialize-binary-tree
28642Design Search Autocomplete System44.7%Hard1.850014447447311https://leetcode.com/problems/design-search-autocomplete-system
29348Design Tic-Tac-Toe54.3%Medium1.8169700410705985https://leetcode.com/problems/design-tic-tac-toe
30127Word Ladder29.6%Medium1.798979717201542https://leetcode.com/problems/word-ladder
31694Number of Distinct Islands56.0%Medium1.6879409739220441https://leetcode.com/problems/number-of-distinct-islands
32212Word Search II34.9%Hard1.679541552723447https://leetcode.com/problems/word-search-ii
33126Word Ladder II22.1%Hard1.6793805521461769https://leetcode.com/problems/word-ladder-ii
34253Meeting Rooms II45.7%Medium1.6660486200337488https://leetcode.com/problems/meeting-rooms-ii
35273Integer to English Words27.1%Hard1.5969629753826686https://leetcode.com/problems/integer-to-english-words
361102Path With Maximum Minimum Value49.2%Medium1.586376093728572https://leetcode.com/problems/path-with-maximum-minimum-value
37866Prime Palindrome24.9%Medium1.5508753832260214https://leetcode.com/problems/prime-palindrome
38380Insert Delete GetRandom O(1)47.5%Medium1.4345204100538291https://leetcode.com/problems/insert-delete-getrandom-o1
391099Two Sum Less Than K60.6%Easy1.374401545094067https://leetcode.com/problems/two-sum-less-than-k
402Add Two Numbers33.9%Medium1.309433027705025https://leetcode.com/problems/add-two-numbers
41121Best Time to Buy and Sell Stock50.5%Easy1.3027850571141735https://leetcode.com/problems/best-time-to-buy-and-sell-stock
4249Group Anagrams56.9%Medium1.2743748777523694https://leetcode.com/problems/group-anagrams
43139Word Break40.1%Medium1.2351186358489528https://leetcode.com/problems/word-break
4420Valid Parentheses39.0%Easy1.1894789144026565https://leetcode.com/problems/valid-parentheses
45863All Nodes Distance K in Binary Tree55.4%Medium1.1822332875060502https://leetcode.com/problems/all-nodes-distance-k-in-binary-tree
461000Minimum Cost to Merge Stones39.8%Hard1.1653622592057065https://leetcode.com/problems/minimum-cost-to-merge-stones
47153Sum26.8%Medium1.1582544171399092https://leetcode.com/problems/3sum
48269Alien Dictionary33.3%Hard1.152241098330318https://leetcode.com/problems/alien-dictionary
49239Sliding Window Maximum43.0%Hard1.1502557728555012https://leetcode.com/problems/sliding-window-maximum
50545Boundary of Binary Tree38.9%Medium1.1251501588677701https://leetcode.com/problems/boundary-of-binary-tree
51909Snakes and Ladders38.4%Medium1.0669891002375975https://leetcode.com/problems/snakes-and-ladders
52733Flood Fill55.3%Easy1.0669060422540164https://leetcode.com/problems/flood-fill
5399Recover Binary Search Tree39.7%Hard1.0625115814692296https://leetcode.com/problems/recover-binary-search-tree
54238Product of Array Except Self60.1%Medium1.0368856026788111https://leetcode.com/problems/product-of-array-except-self
55155Min Stack44.5%Easy1.0332086228823416https://leetcode.com/problems/min-stack
563Longest Substring Without Repeating Characters30.4%Medium0.9915478841688382https://leetcode.com/problems/longest-substring-without-repeating-characters
57490The Maze51.4%Medium0.9467105081323941https://leetcode.com/problems/the-maze
58353Design Snake Game34.2%Medium0.9400316341694208https://leetcode.com/problems/design-snake-game
59322Coin Change35.5%Medium0.930364459085817https://leetcode.com/problems/coin-change
6017Letter Combinations of a Phone Number46.8%Medium0.9202313417131626https://leetcode.com/problems/letter-combinations-of-a-phone-number
61140Word Break II32.6%Hard0.915097284840888https://leetcode.com/problems/word-break-ii
6254Spiral Matrix34.1%Medium0.9117152787807635https://leetcode.com/problems/spiral-matrix
6353Maximum Subarray46.5%Easy0.9028149401651969https://leetcode.com/problems/maximum-subarray
6474Search a 2D Matrix36.5%Medium0.9027789280658293https://leetcode.com/problems/search-a-2d-matrix
6556Merge Intervals39.3%Medium0.8719401675539429https://leetcode.com/problems/merge-intervals
661155Number of Dice Rolls With Target Sum49.0%Medium0.8666032186425704https://leetcode.com/problems/number-of-dice-rolls-with-target-sum
67227Basic Calculator II36.9%Medium0.865227243301703https://leetcode.com/problems/basic-calculator-ii
6833Search in Rotated Sorted Array34.5%Medium0.8584888773941517https://leetcode.com/problems/search-in-rotated-sorted-array
69224Basic Calculator36.8%Hard0.8569364892249722https://leetcode.com/problems/basic-calculator
7012Integer to Roman55.1%Medium0.8496820889352563https://leetcode.com/problems/integer-to-roman
71815Bus Routes42.5%Hard0.8477684486311822https://leetcode.com/problems/bus-routes
72772Basic Calculator III41.3%Hard0.8430873278508602https://leetcode.com/problems/basic-calculator-iii
73706Design HashMap61.3%Easy0.8231356111081237https://leetcode.com/problems/design-hashmap
74981Time Based Key-Value Store53.1%Medium0.8180951326968029https://leetcode.com/problems/time-based-key-value-store
75456132 Pattern28.9%Medium0.8138174114576592https://leetcode.com/problems/132-pattern
76759Employee Free Time66.2%Hard0.8088525092565556https://leetcode.com/problems/employee-free-time
77437Path Sum III47.2%Medium0.7976226188683302https://leetcode.com/problems/path-sum-iii
78503Next Greater Element II56.5%Medium0.7968165955277405https://leetcode.com/problems/next-greater-element-ii
79208Implement Trie (Prefix Tree)49.4%Medium0.7928548865863879https://leetcode.com/problems/implement-trie-prefix-tree
80236Lowest Common Ancestor of a Binary Tree45.7%Medium0.7928508522150108https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree
8197Interleaving String31.5%Hard0.7716773297315191https://leetcode.com/problems/interleaving-string
821091Shortest Path in Binary Matrix38.2%Medium0.7689762247924476https://leetcode.com/problems/shortest-path-in-binary-matrix
83173Binary Search Tree Iterator56.6%Medium0.7549245402561885https://leetcode.com/problems/binary-search-tree-iterator
84980Unique Paths III73.3%Hard0.7472144018302211https://leetcode.com/problems/unique-paths-iii
85277Find the Celebrity41.8%Medium0.7348429454547184https://leetcode.com/problems/find-the-celebrity
86496Next Greater Element I63.8%Easy0.7306413849875257https://leetcode.com/problems/next-greater-element-i
87535Encode and Decode TinyURL79.9%Medium0.7284232783609871https://leetcode.com/problems/encode-and-decode-tinyurl
884Median of Two Sorted Arrays29.6%Hard0.7245935911034281https://leetcode.com/problems/median-of-two-sorted-arrays
8945Jump Game II30.6%Hard0.7215178776891609https://leetcode.com/problems/jump-game-ii
90726Number of Atoms49.0%Hard0.7191226669632059https://leetcode.com/problems/number-of-atoms
91211Add and Search Word - Data structure design38.1%Medium0.7175070272224768https://leetcode.com/problems/add-and-search-word-data-structure-design
9264Minimum Path Sum54.5%Medium0.7123229317280146https://leetcode.com/problems/minimum-path-sum
931044Longest Duplicate Substring31.9%Hard0.707512950361979https://leetcode.com/problems/longest-duplicate-substring
94314Binary Tree Vertical Order Traversal45.3%Medium0.7042169874893927https://leetcode.com/problems/binary-tree-vertical-order-traversal
95739Daily Temperatures63.3%Medium0.697297868866036https://leetcode.com/problems/daily-temperatures
96394Decode String50.0%Medium0.6892445361899827https://leetcode.com/problems/decode-string
97323Number of Connected Components in an Undirected Graph56.0%Medium0.6754476034605444https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph
98449Serialize and Deserialize BST52.0%Medium0.6727822146017972https://leetcode.com/problems/serialize-and-deserialize-bst
99403Frog Jump39.7%Hard0.6655201946784034https://leetcode.com/problems/frog-jump
100143Reorder List37.1%Medium0.6644936178538985https://leetcode.com/problems/reorder-list
10111Container With Most Water50.8%Medium0.6631685190860763https://leetcode.com/problems/container-with-most-water
1021038Binary Search Tree to Greater Sum Tree80.8%Medium0.6563976383512038https://leetcode.com/problems/binary-search-tree-to-greater-sum-tree
103640Solve the Equation42.0%Medium0.648363577932972https://leetcode.com/problems/solve-the-equation
104895Maximum Frequency Stack60.6%Hard0.6397557387655486https://leetcode.com/problems/maximum-frequency-stack
105165Compare Version Numbers27.4%Medium0.6394004632572682https://leetcode.com/problems/compare-version-numbers
106210Course Schedule II40.7%Medium0.6329329320920142https://leetcode.com/problems/course-schedule-ii
10791Decode Ways24.7%Medium0.6216605021582633https://leetcode.com/problems/decode-ways
108767Reorganize String48.7%Medium0.6188332351820143https://leetcode.com/problems/reorganize-string
1091219Path with Maximum Gold65.1%Medium0.6151572787436681https://leetcode.com/problems/path-with-maximum-gold
110543Diameter of Binary Tree48.4%Easy0.6049865380663455https://leetcode.com/problems/diameter-of-binary-tree
111399Evaluate Division51.6%Medium0.6025713727780729https://leetcode.com/problems/evaluate-division
112109Convert Sorted List to Binary Search Tree47.7%Medium0.5978370007556205https://leetcode.com/problems/convert-sorted-list-to-binary-search-tree
1131214Two Sum BSTs67.6%Medium0.5957174923400869https://leetcode.com/problems/two-sum-bsts
114721Accounts Merge48.8%Medium0.5908536653497264https://leetcode.com/problems/accounts-merge
115445Add Two Numbers II54.5%Medium0.5844726602120818https://leetcode.com/problems/add-two-numbers-ii
11655Jump Game34.6%Medium0.5804024133599197https://leetcode.com/problems/jump-game
117317Shortest Distance from All Buildings41.4%Hard0.5785023490481647https://leetcode.com/problems/shortest-distance-from-all-buildings
118362Design Hit Counter63.7%Medium0.5752838074863666https://leetcode.com/problems/design-hit-counter
119634Find the Derangement of An Array40.1%Medium0.5623075796011341https://leetcode.com/problems/find-the-derangement-of-an-array
120987Vertical Order Traversal of a Binary Tree36.6%Medium0.5577804658218486https://leetcode.com/problems/vertical-order-traversal-of-a-binary-tree
121105Construct Binary Tree from Preorder and Inorder Traversal48.8%Medium0.5575777917297663https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal
122289Game of Life54.5%Medium0.552915490474362https://leetcode.com/problems/game-of-life
123489Robot Room Cleaner69.7%Hard0.5479829869763493https://leetcode.com/problems/robot-room-cleaner
124341Flatten Nested List Iterator52.9%Medium0.5461187395622055https://leetcode.com/problems/flatten-nested-list-iterator
12593Restore IP Addresses35.6%Medium0.541488403342866https://leetcode.com/problems/restore-ip-addresses
126207Course Schedule43.1%Medium0.5403433580969076https://leetcode.com/problems/course-schedule
127770Basic Calculator IV48.1%Hard0.538996500732687https://leetcode.com/problems/basic-calculator-iv
128480Sliding Window Median37.2%Hard0.5274955113973754https://leetcode.com/problems/sliding-window-median
12976Minimum Window Substring34.6%Hard0.5242373922767427https://leetcode.com/problems/minimum-window-substring
1301429First Unique Number47.0%Medium0.5239621016713606https://leetcode.com/problems/first-unique-number
131622Design Circular Queue43.7%Medium0.5230167669664014https://leetcode.com/problems/design-circular-queue
132103Binary Tree Zigzag Level Order Traversal48.3%Medium0.5211513032333475https://leetcode.com/problems/binary-tree-zigzag-level-order-traversal
133206Reverse Linked List62.5%Easy0.5170143403889669https://leetcode.com/problems/reverse-linked-list
134215Kth Largest Element in an Array55.4%Medium0.5073003557203055https://leetcode.com/problems/kth-largest-element-in-an-array
135347Top K Frequent Elements61.2%Medium0.504202490273986https://leetcode.com/problems/top-k-frequent-elements
13622Generate Parentheses62.7%Medium0.4881938233057933https://leetcode.com/problems/generate-parentheses
1371236Web Crawler64.3%Medium0.48550781578170077https://leetcode.com/problems/web-crawler
138388Longest Absolute File Path41.8%Medium0.4754236967150748https://leetcode.com/problems/longest-absolute-file-path
139352Data Stream as Disjoint Intervals47.3%Hard0.47516062535545167https://leetcode.com/problems/data-stream-as-disjoint-intervals
140188Best Time to Buy and Sell Stock IV28.0%Hard0.46969134068857316https://leetcode.com/problems/best-time-to-buy-and-sell-stock-iv
141116Populating Next Right Pointers in Each Node45.2%Medium0.4677920544408954https://leetcode.com/problems/populating-next-right-pointers-in-each-node
14236Valid Sudoku48.7%Medium0.46376952253193504https://leetcode.com/problems/valid-sudoku
1431046Last Stone Weight62.2%Easy0.46111558994152596https://leetcode.com/problems/last-stone-weight
14498Validate Binary Search Tree27.8%Medium0.4560506048962707https://leetcode.com/problems/validate-binary-search-tree
14525Reverse Nodes in k-Group42.1%Hard0.4557571315683002https://leetcode.com/problems/reverse-nodes-in-k-group
146465Optimal Account Balancing46.9%Hard0.44746022914476763https://leetcode.com/problems/optimal-account-balancing
147221Maximal Square37.7%Medium0.4439595076531865https://leetcode.com/problems/maximal-square
148124Binary Tree Maximum Path Sum34.3%Hard0.44128780123683403https://leetcode.com/problems/binary-tree-maximum-path-sum
149384Shuffle an Array52.8%Medium0.4403223646462055https://leetcode.com/problems/shuffle-an-array
150564Find the Closest Palindrome19.7%Hard0.43712242797885603https://leetcode.com/problems/find-the-closest-palindrome
15184Largest Rectangle in Histogram35.2%Hard0.42904427702947245https://leetcode.com/problems/largest-rectangle-in-histogram
152737Sentence Similarity II45.8%Medium0.4265185173059967https://leetcode.com/problems/sentence-similarity-ii
153218The Skyline Problem34.6%Hard0.42040668810636345https://leetcode.com/problems/the-skyline-problem
154199Binary Tree Right Side View54.1%Medium0.41496535680316016https://leetcode.com/problems/binary-tree-right-side-view
155997Find the Town Judge50.1%Easy0.41333031719338453https://leetcode.com/problems/find-the-town-judge
15646Permutations63.5%Medium0.41293686083744285https://leetcode.com/problems/permutations
15779Word Search35.6%Medium0.41227293846941043https://leetcode.com/problems/word-search
158735Asteroid Collision41.0%Medium0.4100436801024917https://leetcode.com/problems/asteroid-collision
159675Cut Off Trees for Golf Event34.6%Hard0.40225040958769004https://leetcode.com/problems/cut-off-trees-for-golf-event
160378Kth Smallest Element in a Sorted Matrix54.3%Medium0.4017523534768937https://leetcode.com/problems/kth-smallest-element-in-a-sorted-matrix
1611011Capacity To Ship Packages Within D Days58.1%Medium0.3980529335976609https://leetcode.com/problems/capacity-to-ship-packages-within-d-days
1621335Minimum Difficulty of a Job Schedule57.6%Hard0.3963047387095001https://leetcode.com/problems/minimum-difficulty-of-a-job-schedule
16385Maximal Rectangle37.7%Hard0.3942163955722937https://leetcode.com/problems/maximal-rectangle
1641197Minimum Knight Moves36.1%Medium0.39358878405685155https://leetcode.com/problems/minimum-knight-moves
165688Knight Probability in Chessboard48.9%Medium0.38977851194046487https://leetcode.com/problems/knight-probability-in-chessboard
16657Insert Interval33.5%Hard0.3889321379062142https://leetcode.com/problems/insert-interval
1671215Stepping Numbers41.6%Medium0.3856624808119847https://leetcode.com/problems/stepping-numbers
1681057Campus Bikes57.7%Medium0.3787139017009125https://leetcode.com/problems/campus-bikes
16975Sort Colors47.3%Medium0.3727364556976202https://leetcode.com/problems/sort-colors
170101Symmetric Tree46.8%Easy0.372371993620526https://leetcode.com/problems/symmetric-tree
1711279Traffic Light Controlled Intersection74.3%Easy0.37117603462953225https://leetcode.com/problems/traffic-light-controlled-intersection
172336Palindrome Pairs33.7%Hard0.3591927799310734https://leetcode.com/problems/palindrome-pairs
173556Next Greater Element III31.7%Medium0.3584697395147556https://leetcode.com/problems/next-greater-element-iii
174978Longest Turbulent Subarray46.6%Medium0.3581093214258754https://leetcode.com/problems/longest-turbulent-subarray
1751032Stream of Characters48.3%Hard0.35736199308977074https://leetcode.com/problems/stream-of-characters
176387First Unique Character in a String53.4%Easy0.3502477066068738https://leetcode.com/problems/first-unique-character-in-a-string
177332Reconstruct Itinerary36.7%Medium0.3499348287861282https://leetcode.com/problems/reconstruct-itinerary
178628Maximum Product of Three Numbers47.1%Easy0.3483066942682158https://leetcode.com/problems/maximum-product-of-three-numbers
1791100Find K-Length Substrings With No Repeated Characters72.7%Medium0.3483066942682158https://leetcode.com/problems/find-k-length-substrings-with-no-repeated-characters
18013Roman to Integer55.7%Easy0.34754876247610755https://leetcode.com/problems/roman-to-integer
18139Combination Sum56.1%Medium0.34653485590252786https://leetcode.com/problems/combination-sum
182312Burst Balloons51.8%Hard0.3462131701037017https://leetcode.com/problems/burst-balloons
183529Minesweeper59.1%Medium0.3416302106614813https://leetcode.com/problems/minesweeper
1841130Minimum Cost Tree From Leaf Values66.1%Medium0.33787755363431937https://leetcode.com/problems/minimum-cost-tree-from-leaf-values
185133Clone Graph34.8%Medium0.33670563608545373https://leetcode.com/problems/clone-graph
186287Find the Duplicate Number55.5%Medium0.33544722224040363https://leetcode.com/problems/find-the-duplicate-number
187333Largest BST Subtree35.8%Medium0.32931497055013925https://leetcode.com/problems/largest-bst-subtree
188560Subarray Sum Equals K43.9%Medium0.3271780031910384https://leetcode.com/problems/subarray-sum-equals-k
18932Longest Valid Parentheses28.4%Hard0.3269467909737243https://leetcode.com/problems/longest-valid-parentheses
190794Valid Tic-Tac-Toe State32.6%Medium0.32676342249425205https://leetcode.com/problems/valid-tic-tac-toe-state
191695Max Area of Island62.7%Medium0.32657434158263016https://leetcode.com/problems/max-area-of-island
192518Coin Change 250.2%Medium0.32305590883561364https://leetcode.com/problems/coin-change-2
193901Online Stock Span60.2%Medium0.3225465062722876https://leetcode.com/problems/online-stock-span
194547Friend Circles58.6%Medium0.31641031482435944https://leetcode.com/problems/friend-circles
195135Candy31.6%Hard0.3148768941781284https://leetcode.com/problems/candy
196102Binary Tree Level Order Traversal54.6%Medium0.3108352169668257https://leetcode.com/problems/binary-tree-level-order-traversal
19772Edit Distance44.8%Hard0.30928199098237896https://leetcode.com/problems/edit-distance
19841First Missing Positive32.0%Hard0.3088033158177097https://leetcode.com/problems/first-missing-positive
199185Department Top Three Salaries34.5%Hard0.3067091029533853https://leetcode.com/problems/department-top-three-salaries
20010Regular Expression Matching26.8%Hard0.3026257535192428https://leetcode.com/problems/regular-expression-matching
201205Isomorphic Strings39.8%Easy0.30101800626340847https://leetcode.com/problems/isomorphic-strings
202854K-Similar Strings38.2%Hard0.3001856330111831https://leetcode.com/problems/k-similar-strings
203703Kth Largest Element in a Stream49.7%Easy0.3000268349758617https://leetcode.com/problems/kth-largest-element-in-a-stream
2041244Design A Leaderboard60.7%Medium0.29681946470121906https://leetcode.com/problems/design-a-leaderboard
2051229Meeting Scheduler52.7%Medium0.2955601745092634https://leetcode.com/problems/meeting-scheduler
206134Gas Station38.5%Medium0.29303035974511743https://leetcode.com/problems/gas-station
2071031Maximum Sum of Two Non-Overlapping Subarrays57.9%Medium0.2928670946738281https://leetcode.com/problems/maximum-sum-of-two-non-overlapping-subarrays
2081275Find Winner on a Tic Tac Toe Game52.8%Easy0.2924262358737592https://leetcode.com/problems/find-winner-on-a-tic-tac-toe-game
209261Graph Valid Tree42.2%Medium0.29095999624845137https://leetcode.com/problems/graph-valid-tree
2101166Design File System56.8%Medium0.28978070910870213https://leetcode.com/problems/design-file-system
211417Pacific Atlantic Water Flow41.1%Medium0.2794243872127994https://leetcode.com/problems/pacific-atlantic-water-flow
212410Split Array Largest Sum44.5%Hard0.2778297760087693https://leetcode.com/problems/split-array-largest-sum
2131172Dinner Plate Stacks38.2%Hard0.2711095169699942https://leetcode.com/problems/dinner-plate-stacks
2141120Maximum Average Subtree61.9%Medium0.2694761079552085https://leetcode.com/problems/maximum-average-subtree
215409Longest Palindrome50.3%Easy0.268782121321297https://leetcode.com/problems/longest-palindrome
21619Remove Nth Node From End of List35.2%Medium0.2685901769658948https://leetcode.com/problems/remove-nth-node-from-end-of-list
217426Convert Binary Search Tree to Sorted Doubly Linked List59.1%Medium0.2625527836498761https://leetcode.com/problems/convert-binary-search-tree-to-sorted-doubly-linked-list
218184Sum33.7%Medium0.26175539010512316https://leetcode.com/problems/4sum
2191139Largest 1-Bordered Square47.5%Medium0.26159729523649006https://leetcode.com/problems/largest-1-bordered-square
220300Longest Increasing Subsequence42.6%Medium0.25998614206252363https://leetcode.com/problems/longest-increasing-subsequence
22137Sudoku Solver43.6%Hard0.2578291093020998https://leetcode.com/problems/sudoku-solver
222632Smallest Range Covering Elements from K Lists52.4%Hard0.2574120081490246https://leetcode.com/problems/smallest-range-covering-elements-from-k-lists
223177Nth Highest Salary31.4%Medium0.25708853309999324https://leetcode.com/problems/nth-highest-salary
224315Count of Smaller Numbers After Self41.5%Hard0.2567607594720918https://leetcode.com/problems/count-of-smaller-numbers-after-self
225466Count The Repetitions28.2%Hard0.2561688067457042https://leetcode.com/problems/count-the-repetitions
226286Walls and Gates54.5%Medium0.2531417471996048https://leetcode.com/problems/walls-and-gates
227187Repeated DNA Sequences38.9%Medium0.2529118727100632https://leetcode.com/problems/repeated-dna-sequences
22848Rotate Image56.7%Medium0.2525907526405108https://leetcode.com/problems/rotate-image
22996Unique Binary Search Trees52.9%Medium0.24754171650095222https://leetcode.com/problems/unique-binary-search-trees
2301066Campus Bikes II54.2%Medium0.24445333790096083https://leetcode.com/problems/campus-bikes-ii
231128Longest Consecutive Sequence45.1%Hard0.24299520815961717https://leetcode.com/problems/longest-consecutive-sequence
232153Find Minimum in Rotated Sorted Array45.1%Medium0.24048987826096146https://leetcode.com/problems/find-minimum-in-rotated-sorted-array
233775Global and Local Inversions42.1%Medium0.23922968906583414https://leetcode.com/problems/global-and-local-inversions
234120Triangle44.2%Medium0.23887525258068545https://leetcode.com/problems/triangle
235176Second Highest Salary31.6%Easy0.2367792886617929https://leetcode.com/problems/second-highest-salary
236296Best Meeting Point57.5%Hard0.23670108287626285https://leetcode.com/problems/best-meeting-point
23751N-Queens46.6%Hard0.2346473757956944https://leetcode.com/problems/n-queens
2381188Design Bounded Blocking Queue70.5%Medium0.23300728083654992https://leetcode.com/problems/design-bounded-blocking-queue
2391094Car Pooling56.7%Medium0.2280495300830642https://leetcode.com/problems/car-pooling
240682Baseball Game63.7%Easy0.22057361810180773https://leetcode.com/problems/baseball-game
24129Divide Two Integers16.4%Medium0.2188530145453416https://leetcode.com/problems/divide-two-integers
2421122Relative Sort Array67.7%Easy0.21796115980722663https://leetcode.com/problems/relative-sort-array
243939Minimum Area Rectangle51.8%Medium0.2169226914391073https://leetcode.com/problems/minimum-area-rectangle
244192Word Frequency25.8%Medium0.21614863444241852https://leetcode.com/problems/word-frequency
245373Find K Pairs with Smallest Sums36.7%Medium0.21472498084861397https://leetcode.com/problems/find-k-pairs-with-smallest-sums
246442Find All Duplicates in an Array67.8%Medium0.21334822899856468https://leetcode.com/problems/find-all-duplicates-in-an-array
247152Maximum Product Subarray31.7%Medium0.21257635189056073https://leetcode.com/problems/maximum-product-subarray
248356Line Reflection31.8%Medium0.2124355370417375https://leetcode.com/problems/line-reflection
249229Majority Element II35.6%Medium0.21162970925187066https://leetcode.com/problems/majority-element-ii
2501135Connecting Cities With Minimum Cost57.5%Medium0.21056476910734964https://leetcode.com/problems/connecting-cities-with-minimum-cost
251117Populating Next Right Pointers in Each Node II39.1%Medium0.20860539286818253https://leetcode.com/problems/populating-next-right-pointers-in-each-node-ii
252169Majority Element58.7%Easy0.2079562741042954https://leetcode.com/problems/majority-element
253123Best Time to Buy and Sell Stock III37.5%Hard0.2064707887143865https://leetcode.com/problems/best-time-to-buy-and-sell-stock-iii
2541004Max Consecutive Ones III59.1%Medium0.20643953436639223https://leetcode.com/problems/max-consecutive-ones-iii
255148Sort List42.3%Medium0.20552445387361853https://leetcode.com/problems/sort-list
256179Largest Number28.8%Medium0.20162217031985052https://leetcode.com/problems/largest-number
25754201 Matrix39.8%Medium0.2005882722187499https://leetcode.com/problems/01-matrix
2581143Longest Common Subsequence58.4%Medium0.20038826657183323https://leetcode.com/problems/longest-common-subsequence
25963Unique Paths II34.6%Medium0.19784257168907113https://leetcode.com/problems/unique-paths-ii
260690Employee Importance57.3%Easy0.19768561861869782https://leetcode.com/problems/employee-importance
2611315Sum of Nodes with Even-Valued Grandparent83.5%Medium0.19757677034220278https://leetcode.com/problems/sum-of-nodes-with-even-valued-grandparent
26288Merge Sorted Array39.4%Easy0.19706016197271087https://leetcode.com/problems/merge-sorted-array
26331Next Permutation32.6%Medium0.19579797845713617https://leetcode.com/problems/next-permutation
2641360Number of Days Between Two Dates48.8%Easy0.19578302313828744https://leetcode.com/problems/number-of-days-between-two-dates
265122Best Time to Buy and Sell Stock II57.0%Easy0.19478832555908462https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii
26673Set Matrix Zeroes43.1%Medium0.19305803523368698https://leetcode.com/problems/set-matrix-zeroes
267272Closest Binary Search Tree Value II50.5%Hard0.1920777317393193https://leetcode.com/problems/closest-binary-search-tree-value-ii
2681198Find Smallest Common Element in All Rows74.9%Medium0.19105523676270922https://leetcode.com/problems/find-smallest-common-element-in-all-rows
269756Pyramid Transition Matrix54.6%Medium0.19105523676270922https://leetcode.com/problems/pyramid-transition-matrix
270678Valid Parenthesis String31.0%Medium0.1879537610768114https://leetcode.com/problems/valid-parenthesis-string
271438Find All Anagrams in a String43.3%Medium0.18564799141482685https://leetcode.com/problems/find-all-anagrams-in-a-string
272262Trips and Users32.7%Hard0.18557888866426112https://leetcode.com/problems/trips-and-users
27371Simplify Path32.6%Medium0.18300438372386543https://leetcode.com/problems/simplify-path
274113Path Sum II46.7%Medium0.181583821607415https://leetcode.com/problems/path-sum-ii
27559Spiral Matrix II53.9%Medium0.1781345304397381https://leetcode.com/problems/spiral-matrix-ii
276473Matchsticks to Square37.7%Medium0.17589066646366422https://leetcode.com/problems/matchsticks-to-square
277230Kth Smallest Element in a BST60.2%Medium0.17586503601879516https://leetcode.com/problems/kth-smallest-element-in-a-bst
278234Palindrome Linked List39.3%Easy0.17561579569700486https://leetcode.com/problems/palindrome-linked-list
279698Partition to K Equal Sum Subsets45.0%Medium0.1755467047088198https://leetcode.com/problems/partition-to-k-equal-sum-subsets
280701Insert into a Binary Search Tree77.7%Medium0.17532280369452244https://leetcode.com/problems/insert-into-a-binary-search-tree
281636Exclusive Time of Functions52.0%Medium0.17494800586305592https://leetcode.com/problems/exclusive-time-of-functions
282453Minimum Moves to Equal Array Elements50.2%Easy0.17435338714477774https://leetcode.com/problems/minimum-moves-to-equal-array-elements
283419Battleships in a Board70.0%Medium0.1724841713694404https://leetcode.com/problems/battleships-in-a-board
2848String to Integer (atoi)15.4%Medium0.1707447178638203https://leetcode.com/problems/string-to-integer-atoi
2851430Check If a String Is a Valid Sequence from Root to Leaves Path in a Binary Tree44.8%Medium0.16917873135476025https://leetcode.com/problems/check-if-a-string-is-a-valid-sequence-from-root-to-leaves-path-in-a-binary-tree
286805Split Array With Same Average26.4%Hard0.16635770580494058https://leetcode.com/problems/split-array-with-same-average
287963Minimum Area Rectangle II50.9%Medium0.16635770580494058https://leetcode.com/problems/minimum-area-rectangle-ii
288785Is Graph Bipartite?47.5%Medium0.16618451939098186https://leetcode.com/problems/is-graph-bipartite
289301Remove Invalid Parentheses43.3%Hard0.16424785299136993https://leetcode.com/problems/remove-invalid-parentheses
290715Range Module38.5%Hard0.1636294237818021https://leetcode.com/problems/range-module
291881Boats to Save People46.8%Medium0.16229864091884685https://leetcode.com/problems/boats-to-save-people
292242Valid Anagram56.9%Easy0.1620140669319784https://leetcode.com/problems/valid-anagram
293653Two Sum IV - Input is a BST55.5%Easy0.16169480776777312https://leetcode.com/problems/two-sum-iv-input-is-a-bst
29468Text Justification27.7%Hard0.16143214434637243https://leetcode.com/problems/text-justification
295540Single Element in a Sorted Array57.9%Medium0.16091725953613234https://leetcode.com/problems/single-element-in-a-sorted-array
296716Max Stack42.6%Easy0.16082720489992372https://leetcode.com/problems/max-stack
297150Evaluate Reverse Polish Notation36.3%Medium0.16073798512678014https://leetcode.com/problems/evaluate-reverse-polish-notation
298611Valid Triangle Number48.4%Medium0.1603426500751794https://leetcode.com/problems/valid-triangle-number
2991373Maximum Sum BST in Binary Tree40.2%Hard0.1599143845440084https://leetcode.com/problems/maximum-sum-bst-in-binary-tree
3001010Pairs of Songs With Total Durations Divisible by 6047.4%Easy0.15765117803680806https://leetcode.com/problems/pairs-of-songs-with-total-durations-divisible-by-60
301335Self Crossing28.0%Hard0.15535044001916237https://leetcode.com/problems/self-crossing
302647Palindromic Substrings60.6%Medium0.154673282399905https://leetcode.com/problems/palindromic-substrings
30362Unique Paths54.1%Medium0.15421684583780285https://leetcode.com/problems/unique-paths
3041074Number of Submatrices That Sum to Target60.4%Hard0.1536233927072112https://leetcode.com/problems/number-of-submatrices-that-sum-to-target
305329Longest Increasing Path in a Matrix43.4%Hard0.15294542476994444https://leetcode.com/problems/longest-increasing-path-in-a-matrix
3061084Sales Analysis III54.3%Easy0.15232085315018215https://leetcode.com/problems/sales-analysis-iii
3071242Web Crawler Multithreaded45.9%Medium0.14953173397096375https://leetcode.com/problems/web-crawler-multithreaded
30882Remove Duplicates from Sorted List II36.8%Medium0.1483524778541147https://leetcode.com/problems/remove-duplicates-from-sorted-list-ii
309538Convert BST to Greater Tree55.4%Easy0.14526651855317063https://leetcode.com/problems/convert-bst-to-greater-tree
310270Closest Binary Search Tree Value48.5%Easy0.1444815825552332https://leetcode.com/problems/closest-binary-search-tree-value
311310Minimum Height Trees32.3%Medium0.143926096421159https://leetcode.com/problems/minimum-height-trees
312415Add Strings47.5%Easy0.14343082219506165https://leetcode.com/problems/add-strings
313836Rectangle Overlap48.6%Easy0.14261022668001652https://leetcode.com/problems/rectangle-overlap
314163Sum Closest46.0%Medium0.14234512850929823https://leetcode.com/problems/3sum-closest
3151083Sales Analysis II50.5%Easy0.1417462887434142https://leetcode.com/problems/sales-analysis-ii
316992Subarrays with K Different Integers48.6%Hard0.14045833549672154https://leetcode.com/problems/subarrays-with-k-different-integers
317354Russian Doll Envelopes35.6%Hard0.13850969523609932https://leetcode.com/problems/russian-doll-envelopes
318130Surrounded Regions28.1%Medium0.13754829150296946https://leetcode.com/problems/surrounded-regions
319349Intersection of Two Arrays62.5%Easy0.13745763880299086https://leetcode.com/problems/intersection-of-two-arrays
3201161Maximum Level Sum of a Binary Tree72.2%Medium0.13727657783562877https://leetcode.com/problems/maximum-level-sum-of-a-binary-tree
321340Longest Substring with At Most K Distinct Characters44.1%Hard0.13652366061094043https://leetcode.com/problems/longest-substring-with-at-most-k-distinct-characters
322427Construct Quad Tree61.4%Medium0.13580154115906176https://leetcode.com/problems/construct-quad-tree
3231405Longest Happy String49.0%Medium0.1343297958605471https://leetcode.com/problems/longest-happy-string
324732My Calendar III60.0%Hard0.13397932096347895https://leetcode.com/problems/my-calendar-iii
32586Partition List41.5%Medium0.1338296774887775https://leetcode.com/problems/partition-list
3261007Minimum Domino Rotations For Equal Row50.0%Medium0.1318780442181351https://leetcode.com/problems/minimum-domino-rotations-for-equal-row
327307Range Sum Query - Mutable34.6%Medium0.1314916521599796https://leetcode.com/problems/range-sum-query-mutable
3281002Find Common Characters67.6%Easy0.12972461775871938https://leetcode.com/problems/find-common-characters
3291117Building H2O52.6%Medium0.12796988096337653https://leetcode.com/problems/building-h2o
330528Random Pick with Weight43.9%Medium0.12617342152539626https://leetcode.com/problems/random-pick-with-weight
33178Subsets62.0%Medium0.12486971572185374https://leetcode.com/problems/subsets
332873Length of Longest Fibonacci Subsequence48.0%Medium0.12378418901663191https://leetcode.com/problems/length-of-longest-fibonacci-subsequence
333844Backspace String Compare46.4%Easy0.12201137176590456https://leetcode.com/problems/backspace-string-compare
33492Reverse Linked List II38.8%Medium0.12080664535613118https://leetcode.com/problems/reverse-linked-list-ii
335202Happy Number50.4%Easy0.11982401289364229https://leetcode.com/problems/happy-number
336525Contiguous Array42.8%Medium0.11750591219610916https://leetcode.com/problems/contiguous-array
33744Wildcard Matching24.7%Hard0.11705454991590605https://leetcode.com/problems/wildcard-matching
3386ZigZag Conversion36.3%Medium0.11677183708486526https://leetcode.com/problems/zigzag-conversion
339368Largest Divisible Subset38.0%Medium0.11624101530456815https://leetcode.com/problems/largest-divisible-subset
340268Missing Number51.7%Easy0.11538834636572094https://leetcode.com/problems/missing-number
341283Move Zeroes57.8%Easy0.11518710330017225https://leetcode.com/problems/move-zeroes
3421375Bulb Switcher III62.6%Medium0.11506932978478719https://leetcode.com/problems/bulb-switcher-iii
343339Nested List Weight Sum74.0%Easy0.11351649636962678https://leetcode.com/problems/nested-list-weight-sum
344451Sort Characters By Frequency63.0%Medium0.11258362132121401https://leetcode.com/problems/sort-characters-by-frequency
345787Cheapest Flights Within K Stops39.3%Medium0.11222526033403632https://leetcode.com/problems/cheapest-flights-within-k-stops
3461008Construct Binary Search Tree from Preorder Traversal78.4%Medium0.11004936619718413https://leetcode.com/problems/construct-binary-search-tree-from-preorder-traversal
347181Employees Earning More Than Their Managers56.9%Easy0.10821358464023274https://leetcode.com/problems/employees-earning-more-than-their-managers
348321Create Maximum Number27.0%Hard0.10821358464023274https://leetcode.com/problems/create-maximum-number
349509Fibonacci Number67.2%Easy0.1081586674964596https://leetcode.com/problems/fibonacci-number
350969Pancake Sorting67.5%Medium0.10724553035359762https://leetcode.com/problems/pancake-sorting
351966Vowel Spellchecker47.2%Medium0.10676797542570607https://leetcode.com/problems/vowel-spellchecker
3521153String Transforms Into Another String35.8%Hard0.10623186692973738https://leetcode.com/problems/string-transforms-into-another-string
353498Diagonal Traverse48.2%Medium0.10598924878133596https://leetcode.com/problems/diagonal-traverse
354112Path Sum41.2%Easy0.10531937947649221https://leetcode.com/problems/path-sum
355407Trapping Rain Water II42.4%Hard0.10486899438963619https://leetcode.com/problems/trapping-rain-water-ii
3561013Partition Array Into Three Parts With Equal Sum51.8%Easy0.10294796925244239https://leetcode.com/problems/partition-array-into-three-parts-with-equal-sum
357986Interval List Intersections67.3%Medium0.10288907161978299https://leetcode.com/problems/interval-list-intersections
358337House Robber III50.6%Medium0.10284435451079782https://leetcode.com/problems/house-robber-iii
359402Remove K Digits28.4%Medium0.10101435005393304https://leetcode.com/problems/remove-k-digits
360264Ugly Number II42.0%Medium0.09988890602718599https://leetcode.com/problems/ugly-number-ii
361843Guess the Word46.1%Hard0.09952959534703311https://leetcode.com/problems/guess-the-word
3621162As Far from Land as Possible43.5%Medium0.09876441467241241https://leetcode.com/problems/as-far-from-land-as-possible
3631202Smallest String With Swaps46.5%Medium0.09740053011838201https://leetcode.com/problems/smallest-string-with-swaps
364849Maximize Distance to Closest Person42.6%Easy0.09669362480247104https://leetcode.com/problems/maximize-distance-to-closest-person
365235Lowest Common Ancestor of a Binary Search Tree49.9%Easy0.09628480221531907https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree
36614Longest Common Prefix35.4%Easy0.09586181640315415https://leetcode.com/problems/longest-common-prefix
367390Elimination Game44.5%Medium0.09576690509200843https://leetcode.com/problems/elimination-game
368579Find Cumulative Salary of an Employee37.0%Hard0.0955379961853079https://leetcode.com/problems/find-cumulative-salary-of-an-employee
369983Minimum Cost For Tickets60.5%Medium0.09525339549949145https://leetcode.com/problems/minimum-cost-for-tickets
370233Number of Digit One31.3%Hard0.09463320809845266https://leetcode.com/problems/number-of-digit-one
371463Island Perimeter65.7%Easy0.0943601559822778https://leetcode.com/problems/island-perimeter
372132Palindrome Partitioning II30.2%Hard0.0943539685775445https://leetcode.com/problems/palindrome-partitioning-ii
373827Making A Large Island45.7%Hard0.09287412500644375https://leetcode.com/problems/making-a-large-island
37470Climbing Stairs47.8%Easy0.09222789908966633https://leetcode.com/problems/climbing-stairs
3751062Longest Repeating Substring57.2%Medium0.09201889872025212https://leetcode.com/problems/longest-repeating-substring
376430Flatten a Multilevel Doubly Linked List55.1%Medium0.09115618648618105https://leetcode.com/problems/flatten-a-multilevel-doubly-linked-list
377252Meeting Rooms54.6%Easy0.09020195522698488https://leetcode.com/problems/meeting-rooms
378516Longest Palindromic Subsequence53.2%Medium0.08985926725218181https://leetcode.com/problems/longest-palindromic-subsequence
379243Shortest Word Distance61.0%Easy0.08952296190665864https://leetcode.com/problems/shortest-word-distance
380652Find Duplicate Subtrees50.2%Medium0.08907963005368878https://leetcode.com/problems/find-duplicate-subtrees
381995Minimum Number of K Consecutive Bit Flips46.8%Hard0.08894748601649616https://leetcode.com/problems/minimum-number-of-k-consecutive-bit-flips
382686Repeated String Match32.3%Easy0.08751937801655657https://leetcode.com/problems/repeated-string-match
383285Inorder Successor in BST40.4%Medium0.08649364464568089https://leetcode.com/problems/inorder-successor-in-bst
3841247Minimum Swaps to Make Strings Equal60.1%Medium0.08626034428440695https://leetcode.com/problems/minimum-swaps-to-make-strings-equal
38561Rotate List30.0%Medium0.08597176778902096https://leetcode.com/problems/rotate-list
386916Word Subsets47.8%Medium0.08479653666007693https://leetcode.com/problems/word-subsets
387443String Compression41.3%Easy0.08391368024915737https://leetcode.com/problems/string-compression
388131Palindrome Partitioning47.5%Medium0.08388550716227433https://leetcode.com/problems/palindrome-partitioning
3891019Next Greater Node In Linked List57.4%Medium0.08373089291046797https://leetcode.com/problems/next-greater-node-in-linked-list
3901245Tree Diameter60.1%Medium0.08338160893905106https://leetcode.com/problems/tree-diameter
391110Balanced Binary Tree43.5%Easy0.0828596109446498https://leetcode.com/problems/balanced-binary-tree
39234Find First and Last Position of Element in Sorted Array36.2%Medium0.08268327002043342https://leetcode.com/problems/find-first-and-last-position-of-element-in-sorted-array
393359Logger Rate Limiter70.8%Easy0.08167803101426718https://leetcode.com/problems/logger-rate-limiter
39494Binary Tree Inorder Traversal63.3%Medium0.08067588488738961https://leetcode.com/problems/binary-tree-inorder-traversal
395581Shortest Unsorted Continuous Subarray31.1%Easy0.08061081614588511https://leetcode.com/problems/shortest-unsorted-continuous-subarray
396350Intersection of Two Arrays II51.4%Easy0.08027374155116185https://leetcode.com/problems/intersection-of-two-arrays-ii
397729My Calendar I51.8%Medium0.0801854119192299https://leetcode.com/problems/my-calendar-i
398279Perfect Squares47.4%Medium0.08004270767353643https://leetcode.com/problems/perfect-squares
3991249Minimum Remove to Make Valid Parentheses62.5%Medium0.07986504044378952https://leetcode.com/problems/minimum-remove-to-make-valid-parentheses
400161One Edit Distance32.3%Medium0.07982960165248484https://leetcode.com/problems/one-edit-distance
401875Koko Eating Bananas52.1%Medium0.07919704166119315https://leetcode.com/problems/koko-eating-bananas
4021047Remove All Adjacent Duplicates In String68.6%Easy0.0789551324793932https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string
40369Sqrt(x)33.9%Easy0.07866461906091221https://leetcode.com/problems/sqrtx
4041254Number of Closed Islands60.5%Medium0.07796154146971186https://leetcode.com/problems/number-of-closed-islands
4051104Path In Zigzag Labelled Binary Tree72.0%Medium0.07786032177227234https://leetcode.com/problems/path-in-zigzag-labelled-binary-tree
4061024Video Stitching49.2%Medium0.07710947515747849https://leetcode.com/problems/video-stitching
407129Sum Root to Leaf Numbers49.1%Medium0.07707974254287937https://leetcode.com/problems/sum-root-to-leaf-numbers
408852Peak Index in a Mountain Array71.6%Easy0.07637297878457401https://leetcode.com/problems/peak-index-in-a-mountain-array
409468Validate IP Address24.1%Medium0.07598590697792203https://leetcode.com/problems/validate-ip-address
410137Single Number II52.4%Medium0.07583984694698977https://leetcode.com/problems/single-number-ii
411214Shortest Palindrome29.8%Hard0.0753494372417868https://leetcode.com/problems/shortest-palindrome
412183Customers Who Never Order53.4%Easy0.07513295051837407https://leetcode.com/problems/customers-who-never-order
413515Find Largest Value in Each Tree Row61.1%Medium0.07428007438287054https://leetcode.com/problems/find-largest-value-in-each-tree-row
414974Subarray Sums Divisible by K48.9%Medium0.07423027387221347https://leetcode.com/problems/subarray-sums-divisible-by-k
4151022Sum of Root To Leaf Binary Numbers67.2%Easy0.07410797215372188https://leetcode.com/problems/sum-of-root-to-leaf-binary-numbers
416209Minimum Size Subarray Sum38.2%Medium0.07329286546547308https://leetcode.com/problems/minimum-size-subarray-sum
417184Department Highest Salary36.7%Medium0.07292523990467245https://leetcode.com/problems/department-highest-salary
418539Minimum Time Difference51.5%Medium0.07236429254889504https://leetcode.com/problems/minimum-time-difference
419860Lemonade Change51.6%Easy0.07208884919207953https://leetcode.com/problems/lemonade-change
420351Android Unlock Patterns48.4%Medium0.07197349962508924https://leetcode.com/problems/android-unlock-patterns
421523Continuous Subarray Sum24.6%Medium0.07166389251403688https://leetcode.com/problems/continuous-subarray-sum
42281Search in Rotated Sorted Array II33.0%Medium0.07091146875905202https://leetcode.com/problems/search-in-rotated-sorted-array-ii
423570Managers with at Least 5 Direct Reports66.0%Medium0.07020425867324853https://leetcode.com/problems/managers-with-at-least-5-direct-reports
4241146Snapshot Array37.0%Medium0.07017687679183775https://leetcode.com/problems/snapshot-array
425228Summary Ranges39.5%Medium0.06968763142190673https://leetcode.com/problems/summary-ranges
426136Single Number65.5%Easy0.0693807551554477https://leetcode.com/problems/single-number
42790Subsets II47.1%Medium0.06927977437229342https://leetcode.com/problems/subsets-ii
428432All O`one Data Structure32.4%Hard0.06887402901251127https://leetcode.com/problems/all-oone-data-structure
429284Peeking Iterator45.7%Medium0.06867686579621939https://leetcode.com/problems/peeking-iterator
430141Linked List Cycle41.1%Easy0.06847358948474051https://leetcode.com/problems/linked-list-cycle
4311081Smallest Subsequence of Distinct Characters50.4%Medium0.06840272688440052https://leetcode.com/problems/smallest-subsequence-of-distinct-characters
432232Implement Queue using Stacks49.6%Easy0.06827657958623828https://leetcode.com/problems/implement-queue-using-stacks
433163Missing Ranges24.3%Medium0.06820825002653358https://leetcode.com/problems/missing-ranges
4341060Missing Element in Sorted Array54.5%Medium0.06796670413163937https://leetcode.com/problems/missing-element-in-sorted-array
435993Cousins in Binary Tree52.0%Easy0.06790898756146661https://leetcode.com/problems/cousins-in-binary-tree
436316Remove Duplicate Letters35.8%Hard0.067239661116769https://leetcode.com/problems/remove-duplicate-letters
43750Pow(x;n)30.3%Medium0.06647190010502257https://leetcode.com/problems/powx-n
438584Find Customer Referee72.3%Easy0.06592172080482424https://leetcode.com/problems/find-customer-referee
439662Maximum Width of Binary Tree41.0%Medium0.06560589270959301https://leetcode.com/problems/maximum-width-of-binary-tree
440178Rank Scores45.8%Medium0.06551667145414991https://leetcode.com/problems/rank-scores
441226Invert Binary Tree65.0%Easy0.06547015000263501https://leetcode.com/problems/invert-binary-tree
442167Two Sum II - Input array is sorted54.1%Easy0.06546140041370939https://leetcode.com/problems/two-sum-ii-input-array-is-sorted
443298Binary Tree Longest Consecutive Sequence47.1%Medium0.065169635074581https://leetcode.com/problems/binary-tree-longest-consecutive-sequence
4441270All People Report to the Given Manager87.1%Medium0.06412452816953867https://leetcode.com/problems/all-people-report-to-the-given-manager
4451005Maximize Sum Of Array After K Negations51.3%Easy0.06371581438610768https://leetcode.com/problems/maximize-sum-of-array-after-k-negations
446257Binary Tree Paths51.5%Easy0.06363469625372709https://leetcode.com/problems/binary-tree-paths
447702Search in a Sorted Array of Unknown Size66.9%Medium0.06361444899419297https://leetcode.com/problems/search-in-a-sorted-array-of-unknown-size
448299Bulls and Cows42.4%Easy0.0633875522784949https://leetcode.com/problems/bulls-and-cows
449397Integer Replacement32.9%Medium0.06331227941432688https://leetcode.com/problems/integer-replacement
450413Arithmetic Slices57.9%Medium0.06286986221654821https://leetcode.com/problems/arithmetic-slices
4511299Replace Elements with Greatest Element on Right Side75.4%Easy0.06197770027589752https://leetcode.com/problems/replace-elements-with-greatest-element-on-right-side
452204Count Primes31.5%Easy0.06191798620391749https://leetcode.com/problems/count-primes
453801Minimum Swaps To Make Sequences Increasing38.9%Medium0.06146327443046864https://leetcode.com/problems/minimum-swaps-to-make-sequences-increasing
454938Range Sum of BST81.3%Easy0.06140035686425664https://leetcode.com/problems/range-sum-of-bst
45528Implement strStr()34.5%Easy0.061298390181781764https://leetcode.com/problems/implement-strstr
456420Strong Password Checker14.0%Hard0.061087691979838175https://leetcode.com/problems/strong-password-checker
457114Flatten Binary Tree to Linked List49.3%Medium0.06042105947476499https://leetcode.com/problems/flatten-binary-tree-to-linked-list
458567Permutation in String44.4%Medium0.05849620668160855https://leetcode.com/problems/permutation-in-string
459160Intersection of Two Linked Lists40.6%Easy0.05844735064567987https://leetcode.com/problems/intersection-of-two-linked-lists
46052N-Queens II57.9%Hard0.058155920157074034https://leetcode.com/problems/n-queens-ii
461164Maximum Gap35.5%Hard0.05790329283155908https://leetcode.com/problems/maximum-gap
4621233Remove Sub-Folders from the Filesystem59.5%Medium0.057076831135436705https://leetcode.com/problems/remove-sub-folders-from-the-filesystem
463106Construct Binary Tree from Inorder and Postorder Traversal47.2%Medium0.05692732601741117https://leetcode.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal
464586Customer Placing the Largest Number of Orders73.0%Easy0.0568334747631659https://leetcode.com/problems/customer-placing-the-largest-number-of-orders
465741Cherry Pickup33.9%Hard0.056512210263342307https://leetcode.com/problems/cherry-pickup
466862Shortest Subarray with Sum at Least K24.6%Hard0.056264838586137754https://leetcode.com/problems/shortest-subarray-with-sum-at-least-k
467541Reverse String II48.4%Easy0.05615948403872344https://leetcode.com/problems/reverse-string-ii
468951Flip Equivalent Binary Trees65.8%Medium0.05598476739954757https://leetcode.com/problems/flip-equivalent-binary-trees
46983Remove Duplicates from Sorted List45.4%Easy0.055776537457411894https://leetcode.com/problems/remove-duplicates-from-sorted-list
470421Maximum XOR of Two Numbers in an Array53.5%Medium0.055569851154810765https://leetcode.com/problems/maximum-xor-of-two-numbers-in-an-array
471366Find Leaves of Binary Tree70.6%Medium0.05526267867504946https://leetcode.com/problems/find-leaves-of-binary-tree
47230Substring with Concatenation of All Words25.4%Hard0.05509349054082484https://leetcode.com/problems/substring-with-concatenation-of-all-words
473149Max Points on a Line16.9%Hard0.0550597771830274https://leetcode.com/problems/max-points-on-a-line
474104Maximum Depth of Binary Tree66.0%Easy0.05499247412856504https://leetcode.com/problems/maximum-depth-of-binary-tree
475222Count Complete Tree Nodes46.8%Medium0.05492114472894792https://leetcode.com/problems/count-complete-tree-nodes
476839Similar String Groups38.6%Hard0.05480823649499502https://leetcode.com/problems/similar-string-groups
477304Range Sum Query 2D - Immutable38.6%Medium0.054527987071175225https://leetcode.com/problems/range-sum-query-2d-immutable
478395Longest Substring with At Least K Repeating Characters41.4%Medium0.05371219359052555https://leetcode.com/problems/longest-substring-with-at-least-k-repeating-characters
479708Insert into a Sorted Circular Linked List31.6%Medium0.05142521180743711https://leetcode.com/problems/insert-into-a-sorted-circular-linked-list
48065Valid Number15.3%Hard0.05071509257901641https://leetcode.com/problems/valid-number
4811339Maximum Product of Splitted Binary Tree37.2%Medium0.05064373281875492https://leetcode.com/problems/maximum-product-of-splitted-binary-tree
482681Next Closest Time45.0%Medium0.05045206096038863https://leetcode.com/problems/next-closest-time
483382Linked List Random Node52.1%Medium0.05045206096038863https://leetcode.com/problems/linked-list-random-node
484743Network Delay Time45.0%Medium0.05002606023684499https://leetcode.com/problems/network-delay-time
485100Same Tree53.4%Easy0.049479328471840896https://leetcode.com/problems/same-tree
486889Construct Binary Tree from Preorder and Postorder Traversal66.2%Medium0.04902942724031861https://leetcode.com/problems/construct-binary-tree-from-preorder-and-postorder-traversal
4871267Count Servers that Communicate57.9%Medium0.04902942724031861https://leetcode.com/problems/count-servers-that-communicate
488189Rotate Array34.7%Easy0.04828048261319787https://leetcode.com/problems/rotate-array
48938Count and Say44.6%Easy0.04795702191135356https://leetcode.com/problems/count-and-say
490841Keys and Rooms64.3%Medium0.04757768320775592https://leetcode.com/problems/keys-and-rooms
491486Predict the Winner47.9%Medium0.047122970130097065https://leetcode.com/problems/predict-the-winner
492977Squares of a Sorted Array72.1%Easy0.046652914831048324https://leetcode.com/problems/squares-of-a-sorted-array
493621Task Scheduler50.1%Medium0.04638413032188776https://leetcode.com/problems/task-scheduler
4941248Count Number of Nice Subarrays56.4%Medium0.04593229889743518https://leetcode.com/problems/count-number-of-nice-subarrays
495609Find Duplicate File in System59.5%Medium0.045205436768046794https://leetcode.com/problems/find-duplicate-file-in-system
496784Letter Case Permutation64.6%Medium0.045030118720867006https://leetcode.com/problems/letter-case-permutation
4971108Defanging an IP Address87.5%Easy0.044971606629326595https://leetcode.com/problems/defanging-an-ip-address
498325Maximum Size Subarray Sum Equals k46.8%Medium0.04495138786226632https://leetcode.com/problems/maximum-size-subarray-sum-equals-k
499180Consecutive Numbers39.7%Medium0.044917730294359005https://leetcode.com/problems/consecutive-numbers
5001382Balance a Binary Search Tree74.8%Medium0.04480032475536626https://leetcode.com/problems/balance-a-binary-search-tree
501412Fizz Buzz62.3%Easy0.04396698989626337https://leetcode.com/problems/fizz-buzz
502435Non-overlapping Intervals42.9%Medium0.04325518123147988https://leetcode.com/problems/non-overlapping-intervals
503559Maximum Depth of N-ary Tree68.7%Easy0.04319159858277399https://leetcode.com/problems/maximum-depth-of-n-ary-tree
504727Minimum Window Subsequence41.8%Hard0.04237922296886145https://leetcode.com/problems/minimum-window-subsequence
505266Palindrome Permutation61.9%Easy0.04158603377810283https://leetcode.com/problems/palindrome-permutation
506507Perfect Number35.5%Easy0.041499730906752734https://leetcode.com/problems/perfect-number
507450Delete Node in a BST43.1%Medium0.041233509462184105https://leetcode.com/problems/delete-node-in-a-bst
508918Maximum Sum Circular Subarray33.7%Medium0.04045040846284272https://leetcode.com/problems/maximum-sum-circular-subarray
509406Queue Reconstruction by Height66.9%Medium0.03949613834265583https://leetcode.com/problems/queue-reconstruction-by-height
510107Binary Tree Level Order Traversal II53.5%Easy0.03948712621281427https://leetcode.com/problems/binary-tree-level-order-traversal-ii
511637Average of Levels in Binary Tree63.1%Easy0.039272062353528786https://leetcode.com/problems/average-of-levels-in-binary-tree
5121049Last Stone Weight II44.2%Medium0.03902934390573525https://leetcode.com/problems/last-stone-weight-ii
513241Different Ways to Add Parentheses55.2%Medium0.03880215185647971https://leetcode.com/problems/different-ways-to-add-parentheses
51424Swap Nodes in Pairs50.4%Medium0.03826607060639552https://leetcode.com/problems/swap-nodes-in-pairs
51547Permutations II46.4%Medium0.038145268259690404https://leetcode.com/problems/permutations-ii
51640Combination Sum II48.2%Medium0.037775974158907266https://leetcode.com/problems/combination-sum-ii
5171110Delete Nodes And Return Forest67.0%Medium0.03698038470938097https://leetcode.com/problems/delete-nodes-and-return-forest
518646Maximum Length of Pair Chain51.9%Medium0.036870535808327706https://leetcode.com/problems/maximum-length-of-pair-chain
519626Exchange Seats62.3%Medium0.03676884778708897https://leetcode.com/problems/exchange-seats
520884Uncommon Words from Two Sentences63.3%Easy0.036301626676214796https://leetcode.com/problems/uncommon-words-from-two-sentences
521250Count Univalue Subtrees52.0%Medium0.036235848454044865https://leetcode.com/problems/count-univalue-subtrees
522334Increasing Triplet Subsequence40.0%Medium0.03577488021091517https://leetcode.com/problems/increasing-triplet-subsequence
523416Partition Equal Subset Sum43.7%Medium0.034301326353463016https://leetcode.com/problems/partition-equal-subset-sum
524217Contains Duplicate56.0%Easy0.03367321510658789https://leetcode.com/problems/contains-duplicate
525912Sort an Array63.9%Medium0.03218010960381167https://leetcode.com/problems/sort-an-array
5261114Print in Order65.7%Easy0.0317486983145803https://leetcode.com/problems/print-in-order
527345Reverse Vowels of a String44.2%Easy0.031112084201956228https://leetcode.com/problems/reverse-vowels-of-a-string
5281179Reformat Department Table80.6%Easy0.030653741091002412https://leetcode.com/problems/reformat-department-table
529557Reverse Words in a String III69.8%Easy0.03063547953861342https://leetcode.com/problems/reverse-words-in-a-string-iii
5301027Longest Arithmetic Sequence53.4%Medium0.03030534949532895https://leetcode.com/problems/longest-arithmetic-sequence
531671Second Minimum Node In a Binary Tree42.7%Easy0.02958795718549609https://leetcode.com/problems/second-minimum-node-in-a-binary-tree
532452Minimum Number of Arrows to Burst Balloons49.6%Medium0.029478921626711667https://leetcode.com/problems/minimum-number-of-arrows-to-burst-balloons
533344Reverse String68.5%Easy0.029048355159926334https://leetcode.com/problems/reverse-string
53477Combinations54.7%Medium0.028021758737593695https://leetcode.com/problems/combinations
535115Distinct Subsequences38.3%Hard0.027798871362742988https://leetcode.com/problems/distinct-subsequences
536249Group Shifted Strings55.1%Medium0.0276069982440099https://leetcode.com/problems/group-shifted-strings
537796Rotate String49.6%Easy0.02701041988276247https://leetcode.com/problems/rotate-string
538118Pascal's Triangle52.5%Easy0.02673062594465844https://leetcode.com/problems/pascals-triangle
539931Minimum Falling Path Sum62.5%Medium0.02672169681715245https://leetcode.com/problems/minimum-falling-path-sum
540158Read N Characters Given Read4 II - Call multiple times33.8%Hard0.026196651946570663https://leetcode.com/problems/read-n-characters-given-read4-ii-call-multiple-times
5411395Count Number of Teams82.0%Medium0.025462865161248044https://leetcode.com/problems/count-number-of-teams
542162Find Peak Element43.3%Medium0.02516251642407408https://leetcode.com/problems/find-peak-element
543171Excel Sheet Column Number55.9%Easy0.025015200987536713https://leetcode.com/problems/excel-sheet-column-number
544714Best Time to Buy and Sell Stock with Transaction Fee54.7%Medium0.024258315059789946https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-transaction-fee
545704Binary Search52.1%Easy0.02368531774150923https://leetcode.com/problems/binary-search
546429N-ary Tree Level Order Traversal65.0%Medium0.023270392682351006https://leetcode.com/problems/n-ary-tree-level-order-traversal
547198House Robber42.0%Easy0.023256862164267263https://leetcode.com/problems/house-robber
548414Third Maximum Number30.5%Easy0.023155137938555212https://leetcode.com/problems/third-maximum-number
549684Redundant Connection57.4%Medium0.02262539951797868https://leetcode.com/problems/redundant-connection
5501160Find Words That Can Be Formed by Characters67.4%Easy0.02262539951797868https://leetcode.com/problems/find-words-that-can-be-formed-by-characters
5517Reverse Integer25.8%Easy0.022564965520585834https://leetcode.com/problems/reverse-integer
552108Convert Sorted Array to Binary Search Tree57.9%Easy0.022033389270751453https://leetcode.com/problems/convert-sorted-array-to-binary-search-tree
5531520Maximum Number of Non-Overlapping Substrings32.8%Hard0.021485667755491482https://leetcode.com/problems/maximum-number-of-non-overlapping-substrings
554905Sort Array By Parity74.1%Easy0.02148053951675942https://leetcode.com/problems/sort-array-by-parity
555921Minimum Add to Make Parentheses Valid73.7%Medium0.021425565169310254https://leetcode.com/problems/minimum-add-to-make-parentheses-valid
556459Repeated Substring Pattern42.2%Easy0.021402636114384706https://leetcode.com/problems/repeated-substring-pattern
557485Max Consecutive Ones54.6%Easy0.021092266245534258https://leetcode.com/problems/max-consecutive-ones
558654Maximum Binary Tree79.9%Medium0.02060866342778963https://leetcode.com/problems/maximum-binary-tree
55960Permutation Sequence38.4%Hard0.020471543980187256https://leetcode.com/problems/permutation-sequence
56043Multiply Strings33.9%Medium0.020459908965027862https://leetcode.com/problems/multiply-strings
561392Is Subsequence49.2%Easy0.02033508842008217https://leetcode.com/problems/is-subsequence
56267Add Binary45.2%Easy0.020171933774613085https://leetcode.com/problems/add-binary
5631048Longest String Chain54.7%Medium0.019361689049145963https://leetcode.com/problems/longest-string-chain
564674Longest Continuous Increasing Subsequence45.9%Easy0.01900294712561538https://leetcode.com/problems/longest-continuous-increasing-subsequence
5659Palindrome Number48.4%Easy0.018837205580381582https://leetcode.com/problems/palindrome-number
566965Univalued Binary Tree67.7%Easy0.018665964249802672https://leetcode.com/problems/univalued-binary-tree
567290Word Pattern37.0%Easy0.01839978311884168https://leetcode.com/problems/word-pattern
568590N-ary Tree Postorder Traversal72.1%Easy0.018182319083190436https://leetcode.com/problems/n-ary-tree-postorder-traversal
569346Moving Average from Data Stream70.9%Easy0.0176683041333139https://leetcode.com/problems/moving-average-from-data-stream
570953Verifying an Alien Dictionary54.1%Easy0.017654440483007624https://leetcode.com/problems/verifying-an-alien-dictionary
571383Ransom Note53.1%Easy0.017621601349819518https://leetcode.com/problems/ransom-note
572657Robot Return to Origin73.5%Easy0.017505917513614497https://leetcode.com/problems/robot-return-to-origin
5731266Minimum Time Visiting All Points79.6%Easy0.017354014693151613https://leetcode.com/problems/minimum-time-visiting-all-points
574876Middle of the Linked List68.4%Easy0.01707497375257815https://leetcode.com/problems/middle-of-the-linked-list
575389Find the Difference55.3%Easy0.016978336534417868https://leetcode.com/problems/find-the-difference
576145Binary Tree Postorder Traversal55.0%Hard0.01682911820009702https://leetcode.com/problems/binary-tree-postorder-traversal
577771Jewels and Stones86.4%Easy0.01631653312373806https://leetcode.com/problems/jewels-and-stones
5781304Find N Unique Integers Sum up to Zero76.3%Easy0.015892269319508656https://leetcode.com/problems/find-n-unique-integers-sum-up-to-zero
579125Valid Palindrome36.7%Easy0.01582781088607703https://leetcode.com/problems/valid-palindrome
580404Sum of Left Leaves50.9%Easy0.013981353230340547https://leetcode.com/problems/sum-of-left-leaves
581724Find Pivot Index44.0%Easy0.013850636933899008https://leetcode.com/problems/find-pivot-index
582151Reverse Words in a String21.9%Medium0.013753273019471011https://leetcode.com/problems/reverse-words-in-a-string
583144Binary Tree Preorder Traversal55.7%Medium0.013667638728663807https://leetcode.com/problems/binary-tree-preorder-traversal
584303Range Sum Query - Immutable44.7%Easy0.013240842236997532https://leetcode.com/problems/range-sum-query-immutable
585665Non-decreasing Array19.5%Easy0.013016779950191773https://leetcode.com/problems/non-decreasing-array
58666Plus One43.0%Easy0.012985087498808112https://leetcode.com/problems/plus-one
587219Contains Duplicate II37.7%Easy0.01276748910345265https://leetcode.com/problems/contains-duplicate-ii
588213House Robber II36.5%Medium0.012654392210497564https://leetcode.com/problems/house-robber-ii
58926Remove Duplicates from Sorted Array45.1%Easy0.012133715163198892https://leetcode.com/problems/remove-duplicates-from-sorted-array
590338Counting Bits69.5%Medium0.01088446119842327https://leetcode.com/problems/counting-bits
5911221Split a String in Balanced Strings83.3%Easy0.008775835172724969https://leetcode.com/problems/split-a-string-in-balanced-strings
592154Find Minimum in Rotated Sorted Array II41.6%Hard0.008482264714858658https://leetcode.com/problems/find-minimum-in-rotated-sorted-array-ii
593461Hamming Distance72.8%Easy0.00833685528906183https://leetcode.com/problems/hamming-distance
594617Merge Two Binary Trees74.1%Easy0.008262802639833214https://leetcode.com/problems/merge-two-binary-trees
595260Single Number III64.3%Medium0.008090659020153698https://leetcode.com/problems/single-number-iii
5961344Angle Between Hands of a Clock61.4%Medium0.007795031188053973https://leetcode.com/problems/angle-between-hands-of-a-clock
597175Combine Two Tables60.8%Easy0.007696786120491369https://leetcode.com/problems/combine-two-tables
598328Odd Even Linked List55.7%Medium0.00764383618585562https://leetcode.com/problems/odd-even-linked-list
5991365How Many Numbers Are Smaller Than the Current Number85.6%Easy0.007109877088701047https://leetcode.com/problems/how-many-numbers-are-smaller-than-the-current-number
600142Linked List Cycle II37.3%Medium0.006564934131150057https://leetcode.com/problems/linked-list-cycle-ii
601203Remove Linked List Elements38.6%Easy0.006479067005887776https://leetcode.com/problems/remove-linked-list-elements
602309Best Time to Buy and Sell Stock with Cooldown47.4%Medium0.006400704591951834https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-cooldown
6031431Kids With the Greatest Number of Candies88.9%Easy0.005927699633275225https://leetcode.com/problems/kids-with-the-greatest-number-of-candies
604237Delete Node in a Linked List63.8%Easy0.005144705881237697https://leetcode.com/problems/delete-node-in-a-linked-list
60535Search Insert Position42.6%Easy0.004646848510375352https://leetcode.com/problems/search-insert-position
606797All Paths From Source to Target77.9%Medium0.0024703569875376783https://leetcode.com/problems/all-paths-from-source-to-target