Files
LeetCode-Questions-CompanyWise/adobe_alltime.csv
Krishna Kumar Dey fb5f78b55e Chore: Add headers to all the files (#54)
## Description
- Add headers to all the CSV files

## Script used
```py
import csv
import os

# Set the path of the folder containing the CSV files
folder_path = "./LeetCode-Questions-CompanyWise"
headers = [
    "ID",
    "Title",
    "Acceptance",
    "Difficulty",
    "Frequency",
    "Leetcode Question Link",
]

# Loop through all the CSV files in the folder
for file_name in os.listdir(folder_path):
    if file_name.endswith(".csv"):
        # Read the CSV file into a list of rows
        file_path = os.path.join(folder_path, file_name)
        with open(file_path, "r") as f:
            reader = csv.reader(f)
            rows = list(reader)

        has_headers = False
        if len(rows) > 0 and rows[0] == headers:
            has_headers = True

        if not has_headers:
            rows.insert(0, headers)

            # Write the list of rows back to the CSV file
            with open(file_path, "w", newline="") as f:
                writer = csv.writer(f)
                writer.writerows(rows)

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

26 KiB

1IDTitleAcceptanceDifficultyFrequencyLeetcode Question Link
21Two Sum45.6%Easy2.4883960324530268https://leetcode.com/problems/two-sum
32Add Two Numbers33.9%Medium2.269636101391722https://leetcode.com/problems/add-two-numbers
44Median of Two Sorted Arrays29.6%Hard2.050876170330417https://leetcode.com/problems/median-of-two-sorted-arrays
5741Cherry Pickup33.9%Hard1.8321162392691122https://leetcode.com/problems/cherry-pickup
63Longest Substring Without Repeating Characters30.4%Medium1.8014105894541743https://leetcode.com/problems/longest-substring-without-repeating-characters
77Reverse Integer25.8%Easy1.73297236373911https://leetcode.com/problems/reverse-integer
8175Combine Two Tables60.8%Easy1.6956988952705778https://leetcode.com/problems/combine-two-tables
921Merge Two Sorted Lists53.5%Easy1.5676206155174264https://leetcode.com/problems/merge-two-sorted-lists
105Longest Palindromic Substring29.5%Medium1.5174071915824883https://leetcode.com/problems/longest-palindromic-substring
11153Sum26.8%Medium1.4894785973551214https://leetcode.com/problems/3sum
1213Roman to Integer55.7%Easy1.4339144225059055https://leetcode.com/problems/roman-to-integer
136ZigZag Conversion36.3%Medium1.2151544914446004https://leetcode.com/problems/zigzag-conversion
14195Tenth Line33.0%Easy1.1862816902916034https://leetcode.com/problems/tenth-line
1553Maximum Subarray46.5%Easy1.1698468033916782https://leetcode.com/problems/maximum-subarray
16192Word Frequency25.8%Medium1.1542304443345712https://leetcode.com/problems/word-frequency
1711Container With Most Water50.8%Medium1.1498172467169137https://leetcode.com/problems/container-with-most-water
18146LRU Cache33.2%Medium1.1414840541705635https://leetcode.com/problems/lru-cache
1914Longest Common Prefix35.4%Easy1.0701063949652634https://leetcode.com/problems/longest-common-prefix
209Palindrome Number48.4%Easy1.0389585830023096https://leetcode.com/problems/palindrome-number
21292Nim Game54.9%Easy1.0340435601569165https://leetcode.com/problems/nim-game
22206Reverse Linked List62.5%Easy0.9491844552172142https://leetcode.com/problems/reverse-linked-list
2322Generate Parentheses62.7%Medium0.9146285119909732https://leetcode.com/problems/generate-parentheses
24312Burst Balloons51.8%Hard0.8978937096587362https://leetcode.com/problems/burst-balloons
25771Jewels and Stones86.4%Easy0.8045122974235372https://leetcode.com/problems/jewels-and-stones
26184Sum33.7%Medium0.7870176048739561https://leetcode.com/problems/4sum
27344Reverse String68.5%Easy0.7803563983565922https://leetcode.com/problems/reverse-string
2820Valid Parentheses39.0%Easy0.7728842221115333https://leetcode.com/problems/valid-parentheses
2923Merge k Sorted Lists40.2%Hard0.744432863023671https://leetcode.com/problems/merge-k-sorted-lists
3042Trapping Rain Water48.9%Hard0.7166320474707057https://leetcode.com/problems/trapping-rain-water
31274H-Index36.1%Medium0.7105315488308892https://leetcode.com/problems/h-index
32595Big Countries77.3%Easy0.6960898016141428https://leetcode.com/problems/big-countries
3376Minimum Window Substring34.6%Hard0.641927908156958https://leetcode.com/problems/minimum-window-substring
3410Regular Expression Matching26.8%Hard0.6273817982285409https://leetcode.com/problems/regular-expression-matching
35386Lexicographical Numbers51.6%Medium0.626946543403964https://leetcode.com/problems/lexicographical-numbers
36214Shortest Palindrome29.8%Hard0.6257058997644127https://leetcode.com/problems/shortest-palindrome
37561Array Partition I72.0%Easy0.6209795294618357https://leetcode.com/problems/array-partition-i
3812Integer to Roman55.1%Medium0.618907369249803https://leetcode.com/problems/integer-to-roman
3988Merge Sorted Array39.4%Easy0.5992604670982806https://leetcode.com/problems/merge-sorted-array
40177Nth Highest Salary31.4%Medium0.5957174923400869https://leetcode.com/problems/nth-highest-salary
418String to Integer (atoi)15.4%Medium0.5871742950115802https://leetcode.com/problems/string-to-integer-atoi
4246Permutations63.5%Medium0.5710040142718329https://leetcode.com/problems/permutations
43201Bitwise AND of Numbers Range39.4%Medium0.5616591289700842https://leetcode.com/problems/bitwise-and-of-numbers-range
44176Second Highest Salary31.6%Easy0.5550999082992657https://leetcode.com/problems/second-highest-salary
4554Spiral Matrix34.1%Medium0.5477790799646545https://leetcode.com/problems/spiral-matrix
46238Product of Array Except Self60.1%Medium0.5410045911404007https://leetcode.com/problems/product-of-array-except-self
47315Count of Smaller Numbers After Self41.5%Hard0.5355270510063105https://leetcode.com/problems/count-of-smaller-numbers-after-self
4885Maximal Rectangle37.7%Hard0.505442030682518https://leetcode.com/problems/maximal-rectangle
4941First Missing Positive32.0%Hard0.4966396105083198https://leetcode.com/problems/first-missing-positive
5038Count and Say44.6%Easy0.4926620533465078https://leetcode.com/problems/count-and-say
51322Coin Change35.5%Medium0.48915086353512044https://leetcode.com/problems/coin-change
52237Delete Node in a Linked List63.8%Easy0.4849621131760714https://leetcode.com/problems/delete-node-in-a-linked-list
53121Best Time to Buy and Sell Stock50.5%Easy0.47900593564253346https://leetcode.com/problems/best-time-to-buy-and-sell-stock
5432Longest Valid Parentheses28.4%Hard0.4610968040943131https://leetcode.com/problems/longest-valid-parentheses
55420Strong Password Checker14.0%Hard0.4491177382659011https://leetcode.com/problems/strong-password-checker
56136Single Number65.5%Easy0.44677265180412157https://leetcode.com/problems/single-number
57148Sort List42.3%Medium0.4396170196774987https://leetcode.com/problems/sort-list
5882Remove Duplicates from Sorted List II36.8%Medium0.4392651170596573https://leetcode.com/problems/remove-duplicates-from-sorted-list-ii
59163Sum Closest46.0%Medium0.43554023176972845https://leetcode.com/problems/3sum-closest
6045Jump Game II30.6%Hard0.4315020818911597https://leetcode.com/problems/jump-game-ii
61535Encode and Decode TinyURL79.9%Medium0.4221173972425086https://leetcode.com/problems/encode-and-decode-tinyurl
6296Unique Binary Search Trees52.9%Medium0.42021191912831435https://leetcode.com/problems/unique-binary-search-trees
6392Reverse Linked List II38.8%Medium0.414508648004485https://leetcode.com/problems/reverse-linked-list-ii
6430Substring with Concatenation of All Words25.4%Hard0.41194709630297865https://leetcode.com/problems/substring-with-concatenation-of-all-words
6533Search in Rotated Sorted Array34.5%Medium0.40912496149364885https://leetcode.com/problems/search-in-rotated-sorted-array
6664Minimum Path Sum54.5%Medium0.4040299464061684https://leetcode.com/problems/minimum-path-sum
67279Perfect Squares47.4%Medium0.3741145782240884https://leetcode.com/problems/perfect-squares
6824Swap Nodes in Pairs50.4%Medium0.3722036149739704https://leetcode.com/problems/swap-nodes-in-pairs
69343Integer Break50.4%Medium0.3649680588757168https://leetcode.com/problems/integer-break
7031Next Permutation32.6%Medium0.3605125693237505https://leetcode.com/problems/next-permutation
71131Palindrome Partitioning47.5%Medium0.35313350367645147https://leetcode.com/problems/palindrome-partitioning
72141Linked List Cycle41.1%Easy0.3531074716115724https://leetcode.com/problems/linked-list-cycle
73200Number of Islands46.8%Medium0.348349251262677https://leetcode.com/problems/number-of-islands
7471Simplify Path32.6%Medium0.3434734320801965https://leetcode.com/problems/simplify-path
75138Copy List with Random Pointer36.4%Medium0.33465187471019453https://leetcode.com/problems/copy-list-with-random-pointer
7674Search a 2D Matrix36.5%Medium0.3339887638543654https://leetcode.com/problems/search-a-2d-matrix
77155Min Stack44.5%Easy0.32611635610879774https://leetcode.com/problems/min-stack
7826Remove Duplicates from Sorted Array45.1%Easy0.32413298661344175https://leetcode.com/problems/remove-duplicates-from-sorted-array
79169Majority Element58.7%Easy0.32361893795459934https://leetcode.com/problems/majority-element
8037Sudoku Solver43.6%Hard0.31644637012330246https://leetcode.com/problems/sudoku-solver
8148Rotate Image56.7%Medium0.31414864563994416https://leetcode.com/problems/rotate-image
82152Maximum Product Subarray31.7%Medium0.3065980377658154https://leetcode.com/problems/maximum-product-subarray
83706Design HashMap61.3%Easy0.30607943759149703https://leetcode.com/problems/design-hashmap
84378Kth Smallest Element in a Sorted Matrix54.3%Medium0.303069224638031https://leetcode.com/problems/kth-smallest-element-in-a-sorted-matrix
85115Distinct Subsequences38.3%Hard0.29662714656570494https://leetcode.com/problems/distinct-subsequences
8644Wildcard Matching24.7%Hard0.29635426006094184https://leetcode.com/problems/wildcard-matching
87198House Robber42.0%Easy0.29249400591952035https://leetcode.com/problems/house-robber
88329Longest Increasing Path in a Matrix43.4%Hard0.29062882263712253https://leetcode.com/problems/longest-increasing-path-in-a-matrix
8978Subsets62.0%Medium0.28775134131891633https://leetcode.com/problems/subsets
90234Palindrome Linked List39.3%Easy0.2838977996794123https://leetcode.com/problems/palindrome-linked-list
91139Word Break40.1%Medium0.2746475346554156https://leetcode.com/problems/word-break
9225Reverse Nodes in k-Group42.1%Hard0.2704051213089347https://leetcode.com/problems/reverse-nodes-in-k-group
93929Unique Email Addresses67.4%Easy0.26920579628420777https://leetcode.com/problems/unique-email-addresses
94204Count Primes31.5%Easy0.2622550703201888https://leetcode.com/problems/count-primes
95543Diameter of Binary Tree48.4%Easy0.26178095627491565https://leetcode.com/problems/diameter-of-binary-tree
96197Rising Temperature38.4%Easy0.2576203889657197https://leetcode.com/problems/rising-temperature
97448Find All Numbers Disappeared in an Array55.9%Easy0.2554000407912253https://leetcode.com/problems/find-all-numbers-disappeared-in-an-array
98446Arithmetic Slices II - Subsequence32.7%Hard0.25416851512733507https://leetcode.com/problems/arithmetic-slices-ii-subsequence
99101Symmetric Tree46.8%Easy0.24399082697231922https://leetcode.com/problems/symmetric-tree
10070Climbing Stairs47.8%Easy0.24304459408434126https://leetcode.com/problems/climbing-stairs
101389Find the Difference55.3%Easy0.2421400520048648https://leetcode.com/problems/find-the-difference
1021096Brace Expansion II62.2%Hard0.2363887780642304https://leetcode.com/problems/brace-expansion-ii
10351N-Queens46.6%Hard0.2346473757956944https://leetcode.com/problems/n-queens
104137Single Number II52.4%Medium0.22735779159844866https://leetcode.com/problems/single-number-ii
10556Merge Intervals39.3%Medium0.22422141863227835https://leetcode.com/problems/merge-intervals
10619Remove Nth Node From End of List35.2%Medium0.22280456303687612https://leetcode.com/problems/remove-nth-node-from-end-of-list
10749Group Anagrams56.9%Medium0.21827224887849583https://leetcode.com/problems/group-anagrams
108795Number of Subarrays with Bounded Maximum46.3%Medium0.2171959803892134https://leetcode.com/problems/number-of-subarrays-with-bounded-maximum
109268Missing Number51.7%Easy0.2148904095574893https://leetcode.com/problems/missing-number
110105Construct Binary Tree from Preorder and Inorder Traversal48.8%Medium0.2138725437818616https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal
11181Search in Rotated Sorted Array II33.0%Medium0.21357410029805904https://leetcode.com/problems/search-in-rotated-sorted-array-ii
112142Linked List Cycle II37.3%Medium0.21278213647158528https://leetcode.com/problems/linked-list-cycle-ii
113143Reorder List37.1%Medium0.21178045827645292https://leetcode.com/problems/reorder-list
114229Majority Element II35.6%Medium0.21162970925187066https://leetcode.com/problems/majority-element-ii
115124Binary Tree Maximum Path Sum34.3%Hard0.21055599204217199https://leetcode.com/problems/binary-tree-maximum-path-sum
116236Lowest Common Ancestor of a Binary Tree45.7%Medium0.2082667520997665https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree
117240Search a 2D Matrix II43.2%Medium0.20722300789490636https://leetcode.com/problems/search-a-2d-matrix-ii
118128Longest Consecutive Sequence45.1%Hard0.20483650886956722https://leetcode.com/problems/longest-consecutive-sequence
119220Contains Duplicate III20.9%Medium0.20432784239539936https://leetcode.com/problems/contains-duplicate-iii
120202Happy Number50.4%Easy0.2040083108839691https://leetcode.com/problems/happy-number
121728Self Dividing Numbers74.3%Easy0.20271151249700387https://leetcode.com/problems/self-dividing-numbers
122395Longest Substring with At Least K Repeating Characters41.4%Medium0.19944370144318244https://leetcode.com/problems/longest-substring-with-at-least-k-repeating-characters
123836Rectangle Overlap48.6%Easy0.19944370144318244https://leetcode.com/problems/rectangle-overlap
12465Valid Number15.3%Hard0.18904265746703205https://leetcode.com/problems/valid-number
125178Rank Scores45.8%Medium0.18843907402659216https://leetcode.com/problems/rank-scores
126219Contains Duplicate II37.7%Easy0.18696862869341266https://leetcode.com/problems/contains-duplicate-ii
12729Divide Two Integers16.4%Medium0.18695459519599733https://leetcode.com/problems/divide-two-integers
128199Binary Tree Right Side View54.1%Medium0.18661020557359304https://leetcode.com/problems/binary-tree-right-side-view
129739Daily Temperatures63.3%Medium0.1858025928756317https://leetcode.com/problems/daily-temperatures
13072Edit Distance44.8%Hard0.18554648786569794https://leetcode.com/problems/edit-distance
131181Employees Earning More Than Their Managers56.9%Easy0.18496356625679328https://leetcode.com/problems/employees-earning-more-than-their-managers
13261Rotate List30.0%Medium0.18398268674403112https://leetcode.com/problems/rotate-list
13350Pow(x;n)30.3%Medium0.18397417464169494https://leetcode.com/problems/powx-n
134221Maximal Square37.7%Medium0.1833146055349465https://leetcode.com/problems/maximal-square
135239Sliding Window Maximum43.0%Hard0.18086662630782https://leetcode.com/problems/sliding-window-maximum
136112Path Sum41.2%Easy0.18019396942949986https://leetcode.com/problems/path-sum
137368Largest Divisible Subset38.0%Medium0.17613915688563714https://leetcode.com/problems/largest-divisible-subset
138415Add Strings47.5%Easy0.17429245611868044https://leetcode.com/problems/add-strings
139300Longest Increasing Subsequence42.6%Medium0.17397326740248337https://leetcode.com/problems/longest-increasing-subsequence
140122Best Time to Buy and Sell Stock II57.0%Easy0.17312279156285693https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii
141725Split Linked List in Parts52.2%Medium0.17265583404226165https://leetcode.com/problems/split-linked-list-in-parts
142856Score of Parentheses60.5%Medium0.17135825199668508https://leetcode.com/problems/score-of-parentheses
143560Subarray Sum Equals K43.9%Medium0.1665261146132014https://leetcode.com/problems/subarray-sum-equals-k
14491Decode Ways24.7%Medium0.1664322442258041https://leetcode.com/problems/decode-ways
145412Fizz Buzz62.3%Easy0.16533767872713678https://leetcode.com/problems/fizz-buzz
1461010Pairs of Songs With Total Durations Divisible by 6047.4%Easy0.15765117803680806https://leetcode.com/problems/pairs-of-songs-with-total-durations-divisible-by-60
14728Implement strStr()34.5%Easy0.15437642620216585https://leetcode.com/problems/implement-strstr
14862Unique Paths54.1%Medium0.15421684583780285https://leetcode.com/problems/unique-paths
149218The Skyline Problem34.6%Hard0.14953173397096375https://leetcode.com/problems/the-skyline-problem
150217Contains Duplicate56.0%Easy0.149082410987406https://leetcode.com/problems/contains-duplicate
15183Remove Duplicates from Sorted List45.4%Easy0.14784842578508967https://leetcode.com/problems/remove-duplicates-from-sorted-list
152168Excel Sheet Column Title31.1%Easy0.14624550032014502https://leetcode.com/problems/excel-sheet-column-title
15395Unique Binary Search Trees II40.6%Medium0.14236392393156927https://leetcode.com/problems/unique-binary-search-trees-ii
15455Jump Game34.6%Medium0.14177401548857888https://leetcode.com/problems/jump-game
155375Guess Number Higher or Lower II40.3%Medium0.1391128024627178https://leetcode.com/problems/guess-number-higher-or-lower-ii
156554Brick Wall50.0%Medium0.1384696742651052https://leetcode.com/problems/brick-wall
157726Number of Atoms49.0%Hard0.13804422079620546https://leetcode.com/problems/number-of-atoms
158125Valid Palindrome36.7%Easy0.13416684727631417https://leetcode.com/problems/valid-palindrome
159987Vertical Order Traversal of a Binary Tree36.6%Medium0.13360431878681564https://leetcode.com/problems/vertical-order-traversal-of-a-binary-tree
160110Balanced Binary Tree43.5%Easy0.13348731548952925https://leetcode.com/problems/balanced-binary-tree
16135Search Insert Position42.6%Easy0.13181240319984847https://leetcode.com/problems/search-insert-position
1621190Reverse Substrings Between Each Pair of Parentheses61.5%Medium0.1304306149462744https://leetcode.com/problems/reverse-substrings-between-each-pair-of-parentheses
163287Find the Duplicate Number55.5%Medium0.1291950147327505https://leetcode.com/problems/find-the-duplicate-number
164278First Bad Version35.7%Easy0.1267677952000762https://leetcode.com/problems/first-bad-version
16584Largest Rectangle in Histogram35.2%Hard0.12570469475928556https://leetcode.com/problems/largest-rectangle-in-histogram
166224Basic Calculator36.8%Hard0.12435274487954455https://leetcode.com/problems/basic-calculator
167235Lowest Common Ancestor of a Binary Search Tree49.9%Easy0.12399764165657076https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree
168107Binary Tree Level Order Traversal II53.5%Easy0.122658088838636https://leetcode.com/problems/binary-tree-level-order-traversal-ii
1691114Print in Order65.7%Easy0.12136085700426744https://leetcode.com/problems/print-in-order
17093Restore IP Addresses35.6%Medium0.11756123239496619https://leetcode.com/problems/restore-ip-addresses
171316Remove Duplicate Letters35.8%Hard0.1165801830326188https://leetcode.com/problems/remove-duplicate-letters
172191Number of 1 Bits49.8%Easy0.11333538213170377https://leetcode.com/problems/number-of-1-bits
173104Maximum Depth of Binary Tree66.0%Easy0.11149742514307986https://leetcode.com/problems/maximum-depth-of-binary-tree
17440Combination Sum II48.2%Medium0.11145356111123644https://leetcode.com/problems/combination-sum-ii
1751108Defanging an IP Address87.5%Easy0.1113224686534394https://leetcode.com/problems/defanging-an-ip-address
176295Find Median from Data Stream44.3%Hard0.10502147513923703https://leetcode.com/problems/find-median-from-data-stream
17798Validate Binary Search Tree27.8%Medium0.1008693132143216https://leetcode.com/problems/validate-binary-search-tree
178283Move Zeroes57.8%Easy0.09896140984010138https://leetcode.com/problems/move-zeroes
179617Merge Two Binary Trees74.1%Easy0.09679876601677688https://leetcode.com/problems/merge-two-binary-trees
18059Spiral Matrix II53.9%Medium0.09483978737982436https://leetcode.com/problems/spiral-matrix-ii
18166Plus One43.0%Easy0.09425513144914506https://leetcode.com/problems/plus-one
182215Kth Largest Element in an Array55.4%Medium0.09326418878681669https://leetcode.com/problems/kth-largest-element-in-an-array
183257Binary Tree Paths51.5%Easy0.09040028430515686https://leetcode.com/problems/binary-tree-paths
184185Department Top Three Salaries34.5%Hard0.08593583151429968https://leetcode.com/problems/department-top-three-salaries
18573Set Matrix Zeroes43.1%Medium0.08271965106891821https://leetcode.com/problems/set-matrix-zeroes
186387First Unique Character in a String53.4%Easy0.08151765202603821https://leetcode.com/problems/first-unique-character-in-a-string
187118Pascal's Triangle52.5%Easy0.07970401164997687https://leetcode.com/problems/pascals-triangle
188875Koko Eating Bananas52.1%Medium0.07919704166119315https://leetcode.com/problems/koko-eating-bananas
18979Word Search35.6%Medium0.07847790263416941https://leetcode.com/problems/word-search
19067Add Binary45.2%Easy0.07835548390827937https://leetcode.com/problems/add-binary
191525Contiguous Array42.8%Medium0.07677630069592066https://leetcode.com/problems/contiguous-array
192399Evaluate Division51.6%Medium0.07536521894921006https://leetcode.com/problems/evaluate-division
193669Trim a Binary Search Tree63.0%Easy0.07445297819474968https://leetcode.com/problems/trim-a-binary-search-tree
194460LFU Cache34.2%Hard0.06836374280939023https://leetcode.com/problems/lfu-cache
195258Add Digits57.6%Easy0.06075860721222717https://leetcode.com/problems/add-digits
196114Flatten Binary Tree to Linked List49.3%Medium0.06042105947476499https://leetcode.com/problems/flatten-binary-tree-to-linked-list
197113Path Sum II46.7%Medium0.05964085390630209https://leetcode.com/problems/path-sum-ii
198102Binary Tree Level Order Traversal54.6%Medium0.056692473087026664https://leetcode.com/problems/binary-tree-level-order-traversal
199601Human Traffic of Stadium41.7%Hard0.05223119222544569https://leetcode.com/problems/human-traffic-of-stadium
200665Non-decreasing Array19.5%Easy0.05108036638098062https://leetcode.com/problems/non-decreasing-array
201681Next Closest Time45.0%Medium0.05045206096038863https://leetcode.com/problems/next-closest-time
20277Combinations54.7%Medium0.04928622947983693https://leetcode.com/problems/combinations
203547Friend Circles58.6%Medium0.04804286211474039https://leetcode.com/problems/friend-circles
204876Middle of the Linked List68.4%Easy0.046728740327781716https://leetcode.com/problems/middle-of-the-linked-list
205977Squares of a Sorted Array72.1%Easy0.046652914831048324https://leetcode.com/problems/squares-of-a-sorted-array
206205Isomorphic Strings39.8%Easy0.045397866271290506https://leetcode.com/problems/isomorphic-strings
2071051Height Checker71.1%Easy0.04510347333459475https://leetcode.com/problems/height-checker
20836Valid Sudoku48.7%Medium0.04452302288876419https://leetcode.com/problems/valid-sudoku
209545Boundary of Binary Tree38.9%Medium0.04158603377810283https://leetcode.com/problems/boundary-of-binary-tree
210647Palindromic Substrings60.6%Medium0.040968350772541844https://leetcode.com/problems/palindromic-substrings
211314Binary Tree Vertical Order Traversal45.3%Medium0.04007660092703385https://leetcode.com/problems/binary-tree-vertical-order-traversal
212686Repeated String Match32.3%Easy0.03984590854719967https://leetcode.com/problems/repeated-string-match
213203Remove Linked List Elements38.6%Easy0.0398221041810017https://leetcode.com/problems/remove-linked-list-elements
214380Insert Delete GetRandom O(1)47.5%Medium0.038717635350707984https://leetcode.com/problems/insert-delete-getrandom-o1
21547Permutations II46.4%Medium0.038145268259690404https://leetcode.com/problems/permutations-ii
216402Remove K Digits28.4%Medium0.03755134565213245https://leetcode.com/problems/remove-k-digits
2171002Find Common Characters67.6%Easy0.03404262162737441https://leetcode.com/problems/find-common-characters
218404Sum of Left Leaves50.9%Easy0.031187558856704493https://leetcode.com/problems/sum-of-left-leaves
219703Kth Largest Element in a Stream49.7%Easy0.031004894819414507https://leetcode.com/problems/kth-largest-element-in-a-stream
220994Rotting Oranges49.2%Medium0.030179582027776965https://leetcode.com/problems/rotting-oranges
221695Max Area of Island62.7%Medium0.028321590863246118https://leetcode.com/problems/max-area-of-island
222709To Lower Case79.3%Easy0.02780531308033682https://leetcode.com/problems/to-lower-case
223159Longest Substring with At Most Two Distinct Characters49.4%Medium0.02717558537896476https://leetcode.com/problems/longest-substring-with-at-most-two-distinct-characters
224877Stone Game64.8%Medium0.02486144206532915https://leetcode.com/problems/stone-game
225154Find Minimum in Rotated Sorted Array II41.6%Hard0.01898490812303644https://leetcode.com/problems/find-minimum-in-rotated-sorted-array-ii
226993Cousins in Binary Tree52.0%Easy0.017414458368636587https://leetcode.com/problems/cousins-in-binary-tree
2271365How Many Numbers Are Smaller Than the Current Number85.6%Easy0.015926721367078105https://leetcode.com/problems/how-many-numbers-are-smaller-than-the-current-number
2281192Critical Connections in a Network48.6%Hard0.01352742981715631https://leetcode.com/problems/critical-connections-in-a-network
22957Insert Interval33.5%Hard0.013119243592498872https://leetcode.com/problems/insert-interval
230700Search in a Binary Search Tree73.1%Easy0.008512500860171227https://leetcode.com/problems/search-in-a-binary-search-tree
231692Top K Frequent Words51.8%Medium0.007516006820935329https://leetcode.com/problems/top-k-frequent-words
232145Binary Tree Postorder Traversal55.0%Hard0.00751459482064135https://leetcode.com/problems/binary-tree-postorder-traversal
2331470Shuffle the Array88.9%Easy0.004527967890154029https://leetcode.com/problems/shuffle-the-array
234793Preimage Size of Factorial Zeroes Function40.3%Hard0https://leetcode.com/problems/preimage-size-of-factorial-zeroes-function
235908Smallest Range I65.8%Easy0https://leetcode.com/problems/smallest-range-i
236910Smallest Range II26.6%Medium0https://leetcode.com/problems/smallest-range-ii