mirror of
https://github.com/McSmog/LeetCode-Questions-CompanyWise.git
synced 2026-04-22 18:17:31 +00:00
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)
```
This commit is contained in:
committed by
GitHub
parent
0aeadbd612
commit
fb5f78b55e
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1,Two Sum,45.6%,Easy,0.3464144405513164, https://leetcode.com/problems/two-sum
|
1,Two Sum,45.6%,Easy,0.3464144405513164, https://leetcode.com/problems/two-sum
|
||||||
2,Add Two Numbers,33.9%,Medium,0.303844163691924, https://leetcode.com/problems/add-two-numbers
|
2,Add Two Numbers,33.9%,Medium,0.303844163691924, https://leetcode.com/problems/add-two-numbers
|
||||||
21,Merge Two Sorted Lists,53.5%,Easy,0.2612738868325316, https://leetcode.com/problems/merge-two-sorted-lists
|
21,Merge Two Sorted Lists,53.5%,Easy,0.2612738868325316, https://leetcode.com/problems/merge-two-sorted-lists
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1,Two Sum,45.6%,Easy,0.900096464956218, https://leetcode.com/problems/two-sum
|
1,Two Sum,45.6%,Easy,0.900096464956218, https://leetcode.com/problems/two-sum
|
||||||
2,Add Two Numbers,33.9%,Medium,0.7674901747071898, https://leetcode.com/problems/add-two-numbers
|
2,Add Two Numbers,33.9%,Medium,0.7674901747071898, https://leetcode.com/problems/add-two-numbers
|
||||||
741,Cherry Pickup,33.9%,Hard,0.6348838844581617, https://leetcode.com/problems/cherry-pickup
|
741,Cherry Pickup,33.9%,Hard,0.6348838844581617, https://leetcode.com/problems/cherry-pickup
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1,Two Sum,45.6%,Easy,0.1532849790864647, https://leetcode.com/problems/two-sum
|
1,Two Sum,45.6%,Easy,0.1532849790864647, https://leetcode.com/problems/two-sum
|
||||||
2,Add Two Numbers,33.9%,Medium,0.10270361758692534, https://leetcode.com/problems/add-two-numbers
|
2,Add Two Numbers,33.9%,Medium,0.10270361758692534, https://leetcode.com/problems/add-two-numbers
|
||||||
21,Merge Two Sorted Lists,53.5%,Easy,0.09110919511165776, https://leetcode.com/problems/merge-two-sorted-lists
|
21,Merge Two Sorted Lists,53.5%,Easy,0.09110919511165776, https://leetcode.com/problems/merge-two-sorted-lists
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1,Two Sum,45.6%,Easy,2.4883960324530268, https://leetcode.com/problems/two-sum
|
1,Two Sum,45.6%,Easy,2.4883960324530268, https://leetcode.com/problems/two-sum
|
||||||
2,Add Two Numbers,33.9%,Medium,2.269636101391722, https://leetcode.com/problems/add-two-numbers
|
2,Add Two Numbers,33.9%,Medium,2.269636101391722, https://leetcode.com/problems/add-two-numbers
|
||||||
4,Median of Two Sorted Arrays,29.6%,Hard,2.050876170330417, https://leetcode.com/problems/median-of-two-sorted-arrays
|
4,Median of Two Sorted Arrays,29.6%,Hard,2.050876170330417, https://leetcode.com/problems/median-of-two-sorted-arrays
|
||||||
|
|||||||
|
@@ -1,2 +1,3 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
2,Add Two Numbers,33.9%,Medium,0.001641227730374625, https://leetcode.com/problems/add-two-numbers
|
2,Add Two Numbers,33.9%,Medium,0.001641227730374625, https://leetcode.com/problems/add-two-numbers
|
||||||
1,Two Sum,45.6%,Easy,0.0008206138651873125, https://leetcode.com/problems/two-sum
|
1,Two Sum,45.6%,Easy,0.0008206138651873125, https://leetcode.com/problems/two-sum
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1,Two Sum,45.6%,Easy,0.04892286053064383, https://leetcode.com/problems/two-sum
|
1,Two Sum,45.6%,Easy,0.04892286053064383, https://leetcode.com/problems/two-sum
|
||||||
413,Arithmetic Slices,57.9%,Medium,0.028431197162004825, https://leetcode.com/problems/arithmetic-slices
|
413,Arithmetic Slices,57.9%,Medium,0.028431197162004825, https://leetcode.com/problems/arithmetic-slices
|
||||||
2,Add Two Numbers,33.9%,Medium,0.020491663368639005, https://leetcode.com/problems/add-two-numbers
|
2,Add Two Numbers,33.9%,Medium,0.020491663368639005, https://leetcode.com/problems/add-two-numbers
|
||||||
|
|||||||
|
@@ -1 +1,2 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1106,Parsing A Boolean Expression,58.5%,Hard,0, https://leetcode.com/problems/parsing-a-boolean-expression
|
1106,Parsing A Boolean Expression,58.5%,Hard,0, https://leetcode.com/problems/parsing-a-boolean-expression
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
381,Insert Delete GetRandom O(1) - Duplicates allowed,34.1%,Hard,0.10584435094403895, https://leetcode.com/problems/insert-delete-getrandom-o1-duplicates-allowed
|
381,Insert Delete GetRandom O(1) - Duplicates allowed,34.1%,Hard,0.10584435094403895, https://leetcode.com/problems/insert-delete-getrandom-o1-duplicates-allowed
|
||||||
380,Insert Delete GetRandom O(1),47.5%,Medium,0.057001980519332376, https://leetcode.com/problems/insert-delete-getrandom-o1
|
380,Insert Delete GetRandom O(1),47.5%,Medium,0.057001980519332376, https://leetcode.com/problems/insert-delete-getrandom-o1
|
||||||
49,Group Anagrams,56.9%,Medium,0.008159610094625805, https://leetcode.com/problems/group-anagrams
|
49,Group Anagrams,56.9%,Medium,0.008159610094625805, https://leetcode.com/problems/group-anagrams
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
736,Parse Lisp Expression,47.5%,Hard,0.7290367865107017, https://leetcode.com/problems/parse-lisp-expression
|
736,Parse Lisp Expression,47.5%,Hard,0.7290367865107017, https://leetcode.com/problems/parse-lisp-expression
|
||||||
381,Insert Delete GetRandom O(1) - Duplicates allowed,34.1%,Hard,0.49586980740929654, https://leetcode.com/problems/insert-delete-getrandom-o1-duplicates-allowed
|
381,Insert Delete GetRandom O(1) - Duplicates allowed,34.1%,Hard,0.49586980740929654, https://leetcode.com/problems/insert-delete-getrandom-o1-duplicates-allowed
|
||||||
695,Max Area of Island,62.7%,Medium,0.31425595727716876, https://leetcode.com/problems/max-area-of-island
|
695,Max Area of Island,62.7%,Medium,0.31425595727716876, https://leetcode.com/problems/max-area-of-island
|
||||||
|
|||||||
|
@@ -1,2 +1,3 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
381,Insert Delete GetRandom O(1) - Duplicates allowed,34.1%,Hard,0.01868299433822582, https://leetcode.com/problems/insert-delete-getrandom-o1-duplicates-allowed
|
381,Insert Delete GetRandom O(1) - Duplicates allowed,34.1%,Hard,0.01868299433822582, https://leetcode.com/problems/insert-delete-getrandom-o1-duplicates-allowed
|
||||||
380,Insert Delete GetRandom O(1),47.5%,Medium,0.00934149716911291, https://leetcode.com/problems/insert-delete-getrandom-o1
|
380,Insert Delete GetRandom O(1),47.5%,Medium,0.00934149716911291, https://leetcode.com/problems/insert-delete-getrandom-o1
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
736,Parse Lisp Expression,47.5%,Hard,1.0065947176467498, https://leetcode.com/problems/parse-lisp-expression
|
736,Parse Lisp Expression,47.5%,Hard,1.0065947176467498, https://leetcode.com/problems/parse-lisp-expression
|
||||||
381,Insert Delete GetRandom O(1) - Duplicates allowed,34.1%,Hard,0.6946505634539769, https://leetcode.com/problems/insert-delete-getrandom-o1-duplicates-allowed
|
381,Insert Delete GetRandom O(1) - Duplicates allowed,34.1%,Hard,0.6946505634539769, https://leetcode.com/problems/insert-delete-getrandom-o1-duplicates-allowed
|
||||||
695,Max Area of Island,62.7%,Medium,0.5227168031344483, https://leetcode.com/problems/max-area-of-island
|
695,Max Area of Island,62.7%,Medium,0.5227168031344483, https://leetcode.com/problems/max-area-of-island
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
755,Pour Water,43.3%,Medium,1.6549959634129805, https://leetcode.com/problems/pour-water
|
755,Pour Water,43.3%,Medium,1.6549959634129805, https://leetcode.com/problems/pour-water
|
||||||
1166,Design File System,56.8%,Medium,1.578042968988746, https://leetcode.com/problems/design-file-system
|
1166,Design File System,56.8%,Medium,1.578042968988746, https://leetcode.com/problems/design-file-system
|
||||||
336,Palindrome Pairs,33.7%,Hard,1.3086247857193076, https://leetcode.com/problems/palindrome-pairs
|
336,Palindrome Pairs,33.7%,Hard,1.3086247857193076, https://leetcode.com/problems/palindrome-pairs
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
755,Pour Water,43.3%,Medium,4.694392422785564, https://leetcode.com/problems/pour-water
|
755,Pour Water,43.3%,Medium,4.694392422785564, https://leetcode.com/problems/pour-water
|
||||||
336,Palindrome Pairs,33.7%,Hard,4.005323090387116, https://leetcode.com/problems/palindrome-pairs
|
336,Palindrome Pairs,33.7%,Hard,4.005323090387116, https://leetcode.com/problems/palindrome-pairs
|
||||||
751,IP to CIDR,61.7%,Medium,3.3596034843633182, https://leetcode.com/problems/ip-to-cidr
|
751,IP to CIDR,61.7%,Medium,3.3596034843633182, https://leetcode.com/problems/ip-to-cidr
|
||||||
|
|||||||
|
@@ -1,2 +1,3 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
864,Shortest Path to Get All Keys,40.1%,Hard,0.13271866487392153, https://leetcode.com/problems/shortest-path-to-get-all-keys
|
864,Shortest Path to Get All Keys,40.1%,Hard,0.13271866487392153, https://leetcode.com/problems/shortest-path-to-get-all-keys
|
||||||
251,Flatten 2D Vector,45.7%,Medium,0.06635933243696077, https://leetcode.com/problems/flatten-2d-vector
|
251,Flatten 2D Vector,45.7%,Medium,0.06635933243696077, https://leetcode.com/problems/flatten-2d-vector
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
336,Palindrome Pairs,33.7%,Hard,5.9749009408191585, https://leetcode.com/problems/palindrome-pairs
|
336,Palindrome Pairs,33.7%,Hard,5.9749009408191585, https://leetcode.com/problems/palindrome-pairs
|
||||||
755,Pour Water,43.3%,Medium,5.821525282662105, https://leetcode.com/problems/pour-water
|
755,Pour Water,43.3%,Medium,5.821525282662105, https://leetcode.com/problems/pour-water
|
||||||
751,IP to CIDR,61.7%,Medium,4.677479721248074, https://leetcode.com/problems/ip-to-cidr
|
751,IP to CIDR,61.7%,Medium,4.677479721248074, https://leetcode.com/problems/ip-to-cidr
|
||||||
|
|||||||
|
@@ -1 +1,2 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1310,XOR Queries of a Subarray,68.7%,Medium,0, https://leetcode.com/problems/xor-queries-of-a-subarray
|
1310,XOR Queries of a Subarray,68.7%,Medium,0, https://leetcode.com/problems/xor-queries-of-a-subarray
|
||||||
|
|||||||
|
@@ -1 +1,2 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
961,N-Repeated Element in Size 2N Array,73.7%,Easy,0, https://leetcode.com/problems/n-repeated-element-in-size-2n-array
|
961,N-Repeated Element in Size 2N Array,73.7%,Easy,0, https://leetcode.com/problems/n-repeated-element-in-size-2n-array
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1223,Dice Roll Simulation,45.6%,Medium,0.41544374201169354, https://leetcode.com/problems/dice-roll-simulation
|
1223,Dice Roll Simulation,45.6%,Medium,0.41544374201169354, https://leetcode.com/problems/dice-roll-simulation
|
||||||
713,Subarray Product Less Than K,39.1%,Medium,0.31165179311372015, https://leetcode.com/problems/subarray-product-less-than-k
|
713,Subarray Product Less Than K,39.1%,Medium,0.31165179311372015, https://leetcode.com/problems/subarray-product-less-than-k
|
||||||
1411,Number of Ways to Paint N × 3 Grid,61.1%,Hard,0.2567382244712564, https://leetcode.com/problems/number-of-ways-to-paint-n-3-grid
|
1411,Number of Ways to Paint N × 3 Grid,61.1%,Hard,0.2567382244712564, https://leetcode.com/problems/number-of-ways-to-paint-n-3-grid
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
713,Subarray Product Less Than K,39.1%,Medium,0.6727517560064701, https://leetcode.com/problems/subarray-product-less-than-k
|
713,Subarray Product Less Than K,39.1%,Medium,0.6727517560064701, https://leetcode.com/problems/subarray-product-less-than-k
|
||||||
1223,Dice Roll Simulation,45.6%,Medium,0.5140462384660329, https://leetcode.com/problems/dice-roll-simulation
|
1223,Dice Roll Simulation,45.6%,Medium,0.5140462384660329, https://leetcode.com/problems/dice-roll-simulation
|
||||||
1411,Number of Ways to Paint N × 3 Grid,61.1%,Hard,0.35534072092559577, https://leetcode.com/problems/number-of-ways-to-paint-n-3-grid
|
1411,Number of Ways to Paint N × 3 Grid,61.1%,Hard,0.35534072092559577, https://leetcode.com/problems/number-of-ways-to-paint-n-3-grid
|
||||||
|
|||||||
|
@@ -1,2 +1,3 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1411,Number of Ways to Paint N × 3 Grid,61.1%,Hard,0.20425899015275967, https://leetcode.com/problems/number-of-ways-to-paint-n-3-grid
|
1411,Number of Ways to Paint N × 3 Grid,61.1%,Hard,0.20425899015275967, https://leetcode.com/problems/number-of-ways-to-paint-n-3-grid
|
||||||
1223,Dice Roll Simulation,45.6%,Medium,0.10212949507637983, https://leetcode.com/problems/dice-roll-simulation
|
1223,Dice Roll Simulation,45.6%,Medium,0.10212949507637983, https://leetcode.com/problems/dice-roll-simulation
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
713,Subarray Product Less Than K,39.1%,Medium,1.072475096007634, https://leetcode.com/problems/subarray-product-less-than-k
|
713,Subarray Product Less Than K,39.1%,Medium,1.072475096007634, https://leetcode.com/problems/subarray-product-less-than-k
|
||||||
1223,Dice Roll Simulation,45.6%,Medium,0.8403614163905465, https://leetcode.com/problems/dice-roll-simulation
|
1223,Dice Roll Simulation,45.6%,Medium,0.8403614163905465, https://leetcode.com/problems/dice-roll-simulation
|
||||||
995,Minimum Number of K Consecutive Bit Flips,46.8%,Hard,0.6082477367734591, https://leetcode.com/problems/minimum-number-of-k-consecutive-bit-flips
|
995,Minimum Number of K Consecutive Bit Flips,46.8%,Hard,0.6082477367734591, https://leetcode.com/problems/minimum-number-of-k-consecutive-bit-flips
|
||||||
|
|||||||
|
@@ -1 +1,2 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
995,Minimum Number of K Consecutive Bit Flips,46.8%,Hard,0, https://leetcode.com/problems/minimum-number-of-k-consecutive-bit-flips
|
995,Minimum Number of K Consecutive Bit Flips,46.8%,Hard,0, https://leetcode.com/problems/minimum-number-of-k-consecutive-bit-flips
|
||||||
|
|||||||
|
@@ -1 +1,2 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
3,Longest Substring Without Repeating Characters,30.4%,Medium,0.003496778759264278, https://leetcode.com/problems/longest-substring-without-repeating-characters
|
3,Longest Substring Without Repeating Characters,30.4%,Medium,0.003496778759264278, https://leetcode.com/problems/longest-substring-without-repeating-characters
|
||||||
|
|||||||
|
@@ -1 +1,2 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
3,Longest Substring Without Repeating Characters,30.4%,Medium,0.009683242444739549, https://leetcode.com/problems/longest-substring-without-repeating-characters
|
3,Longest Substring Without Repeating Characters,30.4%,Medium,0.009683242444739549, https://leetcode.com/problems/longest-substring-without-repeating-characters
|
||||||
|
|||||||
|
@@ -1 +1,2 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
3,Longest Substring Without Repeating Characters,30.4%,Medium,0.14469274653374686, https://leetcode.com/problems/longest-substring-without-repeating-characters
|
3,Longest Substring Without Repeating Characters,30.4%,Medium,0.14469274653374686, https://leetcode.com/problems/longest-substring-without-repeating-characters
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1,Two Sum,45.6%,Easy,0.002906760648617138, https://leetcode.com/problems/two-sum
|
1,Two Sum,45.6%,Easy,0.002906760648617138, https://leetcode.com/problems/two-sum
|
||||||
146,LRU Cache,33.2%,Medium,0.0023892905841572196, https://leetcode.com/problems/lru-cache
|
146,LRU Cache,33.2%,Medium,0.0023892905841572196, https://leetcode.com/problems/lru-cache
|
||||||
101,Symmetric Tree,46.8%,Easy,0.0011946452920786098, https://leetcode.com/problems/symmetric-tree
|
101,Symmetric Tree,46.8%,Easy,0.0011946452920786098, https://leetcode.com/problems/symmetric-tree
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
446,Arithmetic Slices II - Subsequence,32.7%,Hard,0.053390859053336806, https://leetcode.com/problems/arithmetic-slices-ii-subsequence
|
446,Arithmetic Slices II - Subsequence,32.7%,Hard,0.053390859053336806, https://leetcode.com/problems/arithmetic-slices-ii-subsequence
|
||||||
1,Two Sum,45.6%,Easy,0.04514397697084252, https://leetcode.com/problems/two-sum
|
1,Two Sum,45.6%,Easy,0.04514397697084252, https://leetcode.com/problems/two-sum
|
||||||
146,LRU Cache,33.2%,Medium,0.040660598211268925, https://leetcode.com/problems/lru-cache
|
146,LRU Cache,33.2%,Medium,0.040660598211268925, https://leetcode.com/problems/lru-cache
|
||||||
|
|||||||
|
@@ -1,2 +1,3 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
146,LRU Cache,33.2%,Medium,0.00369087024717462, https://leetcode.com/problems/lru-cache
|
146,LRU Cache,33.2%,Medium,0.00369087024717462, https://leetcode.com/problems/lru-cache
|
||||||
1,Two Sum,45.6%,Easy,0.00184543512358731, https://leetcode.com/problems/two-sum
|
1,Two Sum,45.6%,Easy,0.00184543512358731, https://leetcode.com/problems/two-sum
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1,Two Sum,45.6%,Easy,1.8426731183805538, https://leetcode.com/problems/two-sum
|
1,Two Sum,45.6%,Easy,1.8426731183805538, https://leetcode.com/problems/two-sum
|
||||||
4,Median of Two Sorted Arrays,29.6%,Hard,1.3202175987487612, https://leetcode.com/problems/median-of-two-sorted-arrays
|
4,Median of Two Sorted Arrays,29.6%,Hard,1.3202175987487612, https://leetcode.com/problems/median-of-two-sorted-arrays
|
||||||
3,Longest Substring Without Repeating Characters,30.4%,Medium,0.7977620791169685, https://leetcode.com/problems/longest-substring-without-repeating-characters
|
3,Longest Substring Without Repeating Characters,30.4%,Medium,0.7977620791169685, https://leetcode.com/problems/longest-substring-without-repeating-characters
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
937,Reorder Data in Log Files,54.3%,Easy,3.9944355947998136, https://leetcode.com/problems/reorder-data-in-log-files
|
937,Reorder Data in Log Files,54.3%,Easy,3.9944355947998136, https://leetcode.com/problems/reorder-data-in-log-files
|
||||||
1192,Critical Connections in a Network,48.6%,Hard,3.925598813161921, https://leetcode.com/problems/critical-connections-in-a-network
|
1192,Critical Connections in a Network,48.6%,Hard,3.925598813161921, https://leetcode.com/problems/critical-connections-in-a-network
|
||||||
200,Number of Islands,46.8%,Medium,3.7781578407565197, https://leetcode.com/problems/number-of-islands
|
200,Number of Islands,46.8%,Medium,3.7781578407565197, https://leetcode.com/problems/number-of-islands
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
937,Reorder Data in Log Files,54.3%,Easy,4.767247308723531, https://leetcode.com/problems/reorder-data-in-log-files
|
937,Reorder Data in Log Files,54.3%,Easy,4.767247308723531, https://leetcode.com/problems/reorder-data-in-log-files
|
||||||
1192,Critical Connections in a Network,48.6%,Hard,4.608392488817646, https://leetcode.com/problems/critical-connections-in-a-network
|
1192,Critical Connections in a Network,48.6%,Hard,4.608392488817646, https://leetcode.com/problems/critical-connections-in-a-network
|
||||||
200,Number of Islands,46.8%,Medium,4.5237927479658, https://leetcode.com/problems/number-of-islands
|
200,Number of Islands,46.8%,Medium,4.5237927479658, https://leetcode.com/problems/number-of-islands
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
937,Reorder Data in Log Files,54.3%,Easy,3.9547702430822818, https://leetcode.com/problems/reorder-data-in-log-files
|
937,Reorder Data in Log Files,54.3%,Easy,3.9547702430822818, https://leetcode.com/problems/reorder-data-in-log-files
|
||||||
200,Number of Islands,46.8%,Medium,3.6590323855166846, https://leetcode.com/problems/number-of-islands
|
200,Number of Islands,46.8%,Medium,3.6590323855166846, https://leetcode.com/problems/number-of-islands
|
||||||
1192,Critical Connections in a Network,48.6%,Hard,3.3632945279510875, https://leetcode.com/problems/critical-connections-in-a-network
|
1192,Critical Connections in a Network,48.6%,Hard,3.3632945279510875, https://leetcode.com/problems/critical-connections-in-a-network
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
937,Reorder Data in Log Files,54.3%,Easy,5.669086974531991, https://leetcode.com/problems/reorder-data-in-log-files
|
937,Reorder Data in Log Files,54.3%,Easy,5.669086974531991, https://leetcode.com/problems/reorder-data-in-log-files
|
||||||
200,Number of Islands,46.8%,Medium,5.5619953379074385, https://leetcode.com/problems/number-of-islands
|
200,Number of Islands,46.8%,Medium,5.5619953379074385, https://leetcode.com/problems/number-of-islands
|
||||||
1192,Critical Connections in a Network,48.6%,Hard,5.451163696788967, https://leetcode.com/problems/critical-connections-in-a-network
|
1192,Critical Connections in a Network,48.6%,Hard,5.451163696788967, https://leetcode.com/problems/critical-connections-in-a-network
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1201,Ugly Number III,25.9%,Medium,0.2586674025861649, https://leetcode.com/problems/ugly-number-iii
|
1201,Ugly Number III,25.9%,Medium,0.2586674025861649, https://leetcode.com/problems/ugly-number-iii
|
||||||
1224,Maximum Equal Frequency,33.5%,Hard,0, https://leetcode.com/problems/maximum-equal-frequency
|
1224,Maximum Equal Frequency,33.5%,Hard,0, https://leetcode.com/problems/maximum-equal-frequency
|
||||||
1521,Find a Value of a Mysterious Function Closest to Target,43.2%,Hard,0, https://leetcode.com/problems/find-a-value-of-a-mysterious-function-closest-to-target
|
1521,Find a Value of a Mysterious Function Closest to Target,43.2%,Hard,0, https://leetcode.com/problems/find-a-value-of-a-mysterious-function-closest-to-target
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
346,Moving Average from Data Stream,70.9%,Easy,0.019707237852649603, https://leetcode.com/problems/moving-average-from-data-stream
|
346,Moving Average from Data Stream,70.9%,Easy,0.019707237852649603, https://leetcode.com/problems/moving-average-from-data-stream
|
||||||
221,Maximal Square,37.7%,Medium,0.00988638798855515, https://leetcode.com/problems/maximal-square
|
221,Maximal Square,37.7%,Medium,0.00988638798855515, https://leetcode.com/problems/maximal-square
|
||||||
380,Insert Delete GetRandom O(1),47.5%,Medium,0.009820849864094454, https://leetcode.com/problems/insert-delete-getrandom-o1
|
380,Insert Delete GetRandom O(1),47.5%,Medium,0.009820849864094454, https://leetcode.com/problems/insert-delete-getrandom-o1
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
346,Moving Average from Data Stream,70.9%,Easy,0.02398572412300405, https://leetcode.com/problems/moving-average-from-data-stream
|
346,Moving Average from Data Stream,70.9%,Easy,0.02398572412300405, https://leetcode.com/problems/moving-average-from-data-stream
|
||||||
394,Decode String,50.0%,Medium,0.0169360560557796, https://leetcode.com/problems/decode-string
|
394,Decode String,50.0%,Medium,0.0169360560557796, https://leetcode.com/problems/decode-string
|
||||||
221,Maximal Square,37.7%,Medium,0.00988638798855515, https://leetcode.com/problems/maximal-square
|
221,Maximal Square,37.7%,Medium,0.00988638798855515, https://leetcode.com/problems/maximal-square
|
||||||
|
|||||||
|
@@ -1,2 +1,3 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
346,Moving Average from Data Stream,70.9%,Easy,0.015694908538438895, https://leetcode.com/problems/moving-average-from-data-stream
|
346,Moving Average from Data Stream,70.9%,Easy,0.015694908538438895, https://leetcode.com/problems/moving-average-from-data-stream
|
||||||
380,Insert Delete GetRandom O(1),47.5%,Medium,0.007847454269219447, https://leetcode.com/problems/insert-delete-getrandom-o1
|
380,Insert Delete GetRandom O(1),47.5%,Medium,0.007847454269219447, https://leetcode.com/problems/insert-delete-getrandom-o1
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
394,Decode String,50.0%,Medium,0.06713782998723788, https://leetcode.com/problems/decode-string
|
394,Decode String,50.0%,Medium,0.06713782998723788, https://leetcode.com/problems/decode-string
|
||||||
346,Moving Average from Data Stream,70.9%,Easy,0.03932354620391436, https://leetcode.com/problems/moving-average-from-data-stream
|
346,Moving Average from Data Stream,70.9%,Easy,0.03932354620391436, https://leetcode.com/problems/moving-average-from-data-stream
|
||||||
200,Number of Islands,46.8%,Medium,0.011509262420590827, https://leetcode.com/problems/number-of-islands
|
200,Number of Islands,46.8%,Medium,0.011509262420590827, https://leetcode.com/problems/number-of-islands
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
284,Peeking Iterator,45.7%,Medium,0.9541838033314709, https://leetcode.com/problems/peeking-iterator
|
284,Peeking Iterator,45.7%,Medium,0.9541838033314709, https://leetcode.com/problems/peeking-iterator
|
||||||
1,Two Sum,45.6%,Easy,0.8672052300421611, https://leetcode.com/problems/two-sum
|
1,Two Sum,45.6%,Easy,0.8672052300421611, https://leetcode.com/problems/two-sum
|
||||||
1095,Find in Mountain Array,35.8%,Hard,0.7768088090462424, https://leetcode.com/problems/find-in-mountain-array
|
1095,Find in Mountain Array,35.8%,Hard,0.7768088090462424, https://leetcode.com/problems/find-in-mountain-array
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1,Two Sum,45.6%,Easy,1.3239393390446, https://leetcode.com/problems/two-sum
|
1,Two Sum,45.6%,Easy,1.3239393390446, https://leetcode.com/problems/two-sum
|
||||||
284,Peeking Iterator,45.7%,Medium,1.225806299790293, https://leetcode.com/problems/peeking-iterator
|
284,Peeking Iterator,45.7%,Medium,1.225806299790293, https://leetcode.com/problems/peeking-iterator
|
||||||
146,LRU Cache,33.2%,Medium,1.1817054748912657, https://leetcode.com/problems/lru-cache
|
146,LRU Cache,33.2%,Medium,1.1817054748912657, https://leetcode.com/problems/lru-cache
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1095,Find in Mountain Array,35.8%,Hard,0.5901861366220961, https://leetcode.com/problems/find-in-mountain-array
|
1095,Find in Mountain Array,35.8%,Hard,0.5901861366220961, https://leetcode.com/problems/find-in-mountain-array
|
||||||
284,Peeking Iterator,45.7%,Medium,0.540892616315496, https://leetcode.com/problems/peeking-iterator
|
284,Peeking Iterator,45.7%,Medium,0.540892616315496, https://leetcode.com/problems/peeking-iterator
|
||||||
1,Two Sum,45.6%,Easy,0.5261466153527387, https://leetcode.com/problems/two-sum
|
1,Two Sum,45.6%,Easy,0.5261466153527387, https://leetcode.com/problems/two-sum
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1,Two Sum,45.6%,Easy,2.44165352519978, https://leetcode.com/problems/two-sum
|
1,Two Sum,45.6%,Easy,2.44165352519978, https://leetcode.com/problems/two-sum
|
||||||
146,LRU Cache,33.2%,Medium,2.288507627845124, https://leetcode.com/problems/lru-cache
|
146,LRU Cache,33.2%,Medium,2.288507627845124, https://leetcode.com/problems/lru-cache
|
||||||
403,Frog Jump,39.7%,Hard,2.1353617304904677, https://leetcode.com/problems/frog-jump
|
403,Frog Jump,39.7%,Hard,2.1353617304904677, https://leetcode.com/problems/frog-jump
|
||||||
|
|||||||
|
@@ -1,2 +1,3 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
165,Compare Version Numbers,27.4%,Medium,0.005779515653180723, https://leetcode.com/problems/compare-version-numbers
|
165,Compare Version Numbers,27.4%,Medium,0.005779515653180723, https://leetcode.com/problems/compare-version-numbers
|
||||||
200,Number of Islands,46.8%,Medium,0.0028897578265903614, https://leetcode.com/problems/number-of-islands
|
200,Number of Islands,46.8%,Medium,0.0028897578265903614, https://leetcode.com/problems/number-of-islands
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
37,Sudoku Solver,43.6%,Hard,0.0346243462817872, https://leetcode.com/problems/sudoku-solver
|
37,Sudoku Solver,43.6%,Hard,0.0346243462817872, https://leetcode.com/problems/sudoku-solver
|
||||||
165,Compare Version Numbers,27.4%,Medium,0.029283880120642022, https://leetcode.com/problems/compare-version-numbers
|
165,Compare Version Numbers,27.4%,Medium,0.029283880120642022, https://leetcode.com/problems/compare-version-numbers
|
||||||
21,Merge Two Sorted Lists,53.5%,Easy,0.02011578137441701, https://leetcode.com/problems/merge-two-sorted-lists
|
21,Merge Two Sorted Lists,53.5%,Easy,0.02011578137441701, https://leetcode.com/problems/merge-two-sorted-lists
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
268,Missing Number,51.7%,Easy,0.2527134652732994, https://leetcode.com/problems/missing-number
|
268,Missing Number,51.7%,Easy,0.2527134652732994, https://leetcode.com/problems/missing-number
|
||||||
165,Compare Version Numbers,27.4%,Medium,0.2071910405067907, https://leetcode.com/problems/compare-version-numbers
|
165,Compare Version Numbers,27.4%,Medium,0.2071910405067907, https://leetcode.com/problems/compare-version-numbers
|
||||||
37,Sudoku Solver,43.6%,Hard,0.1087554815281622, https://leetcode.com/problems/sudoku-solver
|
37,Sudoku Solver,43.6%,Hard,0.1087554815281622, https://leetcode.com/problems/sudoku-solver
|
||||||
|
|||||||
|
@@ -1 +1,2 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
997,Find the Town Judge,50.1%,Easy,0, https://leetcode.com/problems/find-the-town-judge
|
997,Find the Town Judge,50.1%,Easy,0, https://leetcode.com/problems/find-the-town-judge
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
98,Validate Binary Search Tree,27.8%,Medium,0.15946580717044478, https://leetcode.com/problems/validate-binary-search-tree
|
98,Validate Binary Search Tree,27.8%,Medium,0.15946580717044478, https://leetcode.com/problems/validate-binary-search-tree
|
||||||
238,Product of Array Except Self,60.1%,Medium,0.14381651020193786, https://leetcode.com/problems/product-of-array-except-self
|
238,Product of Array Except Self,60.1%,Medium,0.14381651020193786, https://leetcode.com/problems/product-of-array-except-self
|
||||||
973,K Closest Points to Origin,63.8%,Medium,0.0846954809648288, https://leetcode.com/problems/k-closest-points-to-origin
|
973,K Closest Points to Origin,63.8%,Medium,0.0846954809648288, https://leetcode.com/problems/k-closest-points-to-origin
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
238,Product of Array Except Self,60.1%,Medium,0.14079121889577595, https://leetcode.com/problems/product-of-array-except-self
|
238,Product of Array Except Self,60.1%,Medium,0.14079121889577595, https://leetcode.com/problems/product-of-array-except-self
|
||||||
146,LRU Cache,33.2%,Medium,0.09466027715846642, https://leetcode.com/problems/lru-cache
|
146,LRU Cache,33.2%,Medium,0.09466027715846642, https://leetcode.com/problems/lru-cache
|
||||||
98,Validate Binary Search Tree,27.8%,Medium,0.08515143211698117, https://leetcode.com/problems/validate-binary-search-tree
|
98,Validate Binary Search Tree,27.8%,Medium,0.08515143211698117, https://leetcode.com/problems/validate-binary-search-tree
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
238,Product of Array Except Self,60.1%,Medium,0.04853298095508739, https://leetcode.com/problems/product-of-array-except-self
|
238,Product of Array Except Self,60.1%,Medium,0.04853298095508739, https://leetcode.com/problems/product-of-array-except-self
|
||||||
98,Validate Binary Search Tree,27.8%,Medium,0.030442797394926606, https://leetcode.com/problems/validate-binary-search-tree
|
98,Validate Binary Search Tree,27.8%,Medium,0.030442797394926606, https://leetcode.com/problems/validate-binary-search-tree
|
||||||
973,K Closest Points to Origin,63.8%,Medium,0.012352613834765824, https://leetcode.com/problems/k-closest-points-to-origin
|
973,K Closest Points to Origin,63.8%,Medium,0.012352613834765824, https://leetcode.com/problems/k-closest-points-to-origin
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
238,Product of Array Except Self,60.1%,Medium,0.33156908645744715, https://leetcode.com/problems/product-of-array-except-self
|
238,Product of Array Except Self,60.1%,Medium,0.33156908645744715, https://leetcode.com/problems/product-of-array-except-self
|
||||||
98,Validate Binary Search Tree,27.8%,Medium,0.3036517978812848, https://leetcode.com/problems/validate-binary-search-tree
|
98,Validate Binary Search Tree,27.8%,Medium,0.3036517978812848, https://leetcode.com/problems/validate-binary-search-tree
|
||||||
146,LRU Cache,33.2%,Medium,0.20247490080112324, https://leetcode.com/problems/lru-cache
|
146,LRU Cache,33.2%,Medium,0.20247490080112324, https://leetcode.com/problems/lru-cache
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
366,Find Leaves of Binary Tree,70.6%,Medium,0.22834203521080285, https://leetcode.com/problems/find-leaves-of-binary-tree
|
366,Find Leaves of Binary Tree,70.6%,Medium,0.22834203521080285, https://leetcode.com/problems/find-leaves-of-binary-tree
|
||||||
860,Lemonade Change,51.6%,Easy,0.18866903222469833, https://leetcode.com/problems/lemonade-change
|
860,Lemonade Change,51.6%,Easy,0.18866903222469833, https://leetcode.com/problems/lemonade-change
|
||||||
362,Design Hit Counter,63.7%,Medium,0.1489960292385938, https://leetcode.com/problems/design-hit-counter
|
362,Design Hit Counter,63.7%,Medium,0.1489960292385938, https://leetcode.com/problems/design-hit-counter
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
366,Find Leaves of Binary Tree,70.6%,Medium,0.4396812191548194, https://leetcode.com/problems/find-leaves-of-binary-tree
|
366,Find Leaves of Binary Tree,70.6%,Medium,0.4396812191548194, https://leetcode.com/problems/find-leaves-of-binary-tree
|
||||||
860,Lemonade Change,51.6%,Easy,0.34144324934323333, https://leetcode.com/problems/lemonade-change
|
860,Lemonade Change,51.6%,Easy,0.34144324934323333, https://leetcode.com/problems/lemonade-change
|
||||||
821,Shortest Distance to a Character,66.9%,Easy,0.24320527953164725, https://leetcode.com/problems/shortest-distance-to-a-character
|
821,Shortest Distance to a Character,66.9%,Easy,0.24320527953164725, https://leetcode.com/problems/shortest-distance-to-a-character
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1071,Greatest Common Divisor of Strings,52.9%,Easy,0.11954237676819192, https://leetcode.com/problems/greatest-common-divisor-of-strings
|
1071,Greatest Common Divisor of Strings,52.9%,Easy,0.11954237676819192, https://leetcode.com/problems/greatest-common-divisor-of-strings
|
||||||
366,Find Leaves of Binary Tree,70.6%,Medium,0.1180240366638968, https://leetcode.com/problems/find-leaves-of-binary-tree
|
366,Find Leaves of Binary Tree,70.6%,Medium,0.1180240366638968, https://leetcode.com/problems/find-leaves-of-binary-tree
|
||||||
1223,Dice Roll Simulation,45.6%,Medium,0.10212949507637983, https://leetcode.com/problems/dice-roll-simulation
|
1223,Dice Roll Simulation,45.6%,Medium,0.10212949507637983, https://leetcode.com/problems/dice-roll-simulation
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
366,Find Leaves of Binary Tree,70.6%,Medium,0.5289140003341137, https://leetcode.com/problems/find-leaves-of-binary-tree
|
366,Find Leaves of Binary Tree,70.6%,Medium,0.5289140003341137, https://leetcode.com/problems/find-leaves-of-binary-tree
|
||||||
981,Time Based Key-Value Store,53.1%,Medium,0.40162982547051973, https://leetcode.com/problems/time-based-key-value-store
|
981,Time Based Key-Value Store,53.1%,Medium,0.40162982547051973, https://leetcode.com/problems/time-based-key-value-store
|
||||||
860,Lemonade Change,51.6%,Easy,0.3967602828188025, https://leetcode.com/problems/lemonade-change
|
860,Lemonade Change,51.6%,Easy,0.3967602828188025, https://leetcode.com/problems/lemonade-change
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1228,Missing Number In Arithmetic Progression,52.6%,Easy,0.14893621100754167, https://leetcode.com/problems/missing-number-in-arithmetic-progression
|
1228,Missing Number In Arithmetic Progression,52.6%,Easy,0.14893621100754167, https://leetcode.com/problems/missing-number-in-arithmetic-progression
|
||||||
545,Boundary of Binary Tree,38.9%,Medium,0.0877756108823857, https://leetcode.com/problems/boundary-of-binary-tree
|
545,Boundary of Binary Tree,38.9%,Medium,0.0877756108823857, https://leetcode.com/problems/boundary-of-binary-tree
|
||||||
472,Concatenated Words,43.7%,Hard,0.026615010757229714, https://leetcode.com/problems/concatenated-words
|
472,Concatenated Words,43.7%,Hard,0.026615010757229714, https://leetcode.com/problems/concatenated-words
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1228,Missing Number In Arithmetic Progression,52.6%,Easy,0.14893621100754167, https://leetcode.com/problems/missing-number-in-arithmetic-progression
|
1228,Missing Number In Arithmetic Progression,52.6%,Easy,0.14893621100754167, https://leetcode.com/problems/missing-number-in-arithmetic-progression
|
||||||
545,Boundary of Binary Tree,38.9%,Medium,0.0877756108823857, https://leetcode.com/problems/boundary-of-binary-tree
|
545,Boundary of Binary Tree,38.9%,Medium,0.0877756108823857, https://leetcode.com/problems/boundary-of-binary-tree
|
||||||
472,Concatenated Words,43.7%,Hard,0.026615010757229714, https://leetcode.com/problems/concatenated-words
|
472,Concatenated Words,43.7%,Hard,0.026615010757229714, https://leetcode.com/problems/concatenated-words
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
545,Boundary of Binary Tree,38.9%,Medium,0.03736177747025919, https://leetcode.com/problems/boundary-of-binary-tree
|
545,Boundary of Binary Tree,38.9%,Medium,0.03736177747025919, https://leetcode.com/problems/boundary-of-binary-tree
|
||||||
472,Concatenated Words,43.7%,Hard,0.024011429628186427, https://leetcode.com/problems/concatenated-words
|
472,Concatenated Words,43.7%,Hard,0.024011429628186427, https://leetcode.com/problems/concatenated-words
|
||||||
140,Word Break II,32.6%,Hard,0.010661081786113668, https://leetcode.com/problems/word-break-ii
|
140,Word Break II,32.6%,Hard,0.010661081786113668, https://leetcode.com/problems/word-break-ii
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1228,Missing Number In Arithmetic Progression,52.6%,Easy,0.13219868307194554, https://leetcode.com/problems/missing-number-in-arithmetic-progression
|
1228,Missing Number In Arithmetic Progression,52.6%,Easy,0.13219868307194554, https://leetcode.com/problems/missing-number-in-arithmetic-progression
|
||||||
545,Boundary of Binary Tree,38.9%,Medium,0.0877756108823857, https://leetcode.com/problems/boundary-of-binary-tree
|
545,Boundary of Binary Tree,38.9%,Medium,0.0877756108823857, https://leetcode.com/problems/boundary-of-binary-tree
|
||||||
200,Number of Islands,46.8%,Medium,0.04335253869282585, https://leetcode.com/problems/number-of-islands
|
200,Number of Islands,46.8%,Medium,0.04335253869282585, https://leetcode.com/problems/number-of-islands
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
871,Minimum Number of Refueling Stops,31.4%,Hard,0.021853241177366825, https://leetcode.com/problems/minimum-number-of-refueling-stops
|
871,Minimum Number of Refueling Stops,31.4%,Hard,0.021853241177366825, https://leetcode.com/problems/minimum-number-of-refueling-stops
|
||||||
146,LRU Cache,33.2%,Medium,0.017369086240613615, https://leetcode.com/problems/lru-cache
|
146,LRU Cache,33.2%,Medium,0.017369086240613615, https://leetcode.com/problems/lru-cache
|
||||||
91,Decode Ways,24.7%,Medium,0.012884931303860403, https://leetcode.com/problems/decode-ways
|
91,Decode Ways,24.7%,Medium,0.012884931303860403, https://leetcode.com/problems/decode-ways
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1,Two Sum,45.6%,Easy,0.7025051399779716, https://leetcode.com/problems/two-sum
|
1,Two Sum,45.6%,Easy,0.7025051399779716, https://leetcode.com/problems/two-sum
|
||||||
146,LRU Cache,33.2%,Medium,0.521413265967313, https://leetcode.com/problems/lru-cache
|
146,LRU Cache,33.2%,Medium,0.521413265967313, https://leetcode.com/problems/lru-cache
|
||||||
72,Edit Distance,44.8%,Hard,0.4324285917613152, https://leetcode.com/problems/edit-distance
|
72,Edit Distance,44.8%,Hard,0.4324285917613152, https://leetcode.com/problems/edit-distance
|
||||||
|
|||||||
|
@@ -1,2 +1,3 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
509,Fibonacci Number,67.2%,Easy,0.010337721155330612, https://leetcode.com/problems/fibonacci-number
|
509,Fibonacci Number,67.2%,Easy,0.010337721155330612, https://leetcode.com/problems/fibonacci-number
|
||||||
20,Valid Parentheses,39.0%,Easy,0.005168860577665306, https://leetcode.com/problems/valid-parentheses
|
20,Valid Parentheses,39.0%,Easy,0.005168860577665306, https://leetcode.com/problems/valid-parentheses
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
509,Fibonacci Number,67.2%,Easy,0.03801871583399193, https://leetcode.com/problems/fibonacci-number
|
509,Fibonacci Number,67.2%,Easy,0.03801871583399193, https://leetcode.com/problems/fibonacci-number
|
||||||
115,Distinct Subsequences,38.3%,Hard,0.027798871362742988, https://leetcode.com/problems/distinct-subsequences
|
115,Distinct Subsequences,38.3%,Hard,0.027798871362742988, https://leetcode.com/problems/distinct-subsequences
|
||||||
20,Valid Parentheses,39.0%,Easy,0.020517047266669974, https://leetcode.com/problems/valid-parentheses
|
20,Valid Parentheses,39.0%,Easy,0.020517047266669974, https://leetcode.com/problems/valid-parentheses
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
115,Distinct Subsequences,38.3%,Hard,0.10259092868139033, https://leetcode.com/problems/distinct-subsequences
|
115,Distinct Subsequences,38.3%,Hard,0.10259092868139033, https://leetcode.com/problems/distinct-subsequences
|
||||||
509,Fibonacci Number,67.2%,Easy,0.07958999426900074, https://leetcode.com/problems/fibonacci-number
|
509,Fibonacci Number,67.2%,Easy,0.07958999426900074, https://leetcode.com/problems/fibonacci-number
|
||||||
273,Integer to English Words,27.1%,Hard,0.06896929475435468, https://leetcode.com/problems/integer-to-english-words
|
273,Integer to English Words,27.1%,Hard,0.06896929475435468, https://leetcode.com/problems/integer-to-english-words
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
322,Coin Change,35.5%,Medium,0.014188948418642346, https://leetcode.com/problems/coin-change
|
322,Coin Change,35.5%,Medium,0.014188948418642346, https://leetcode.com/problems/coin-change
|
||||||
12,Integer to Roman,55.1%,Medium,0.008113634774169721, https://leetcode.com/problems/integer-to-roman
|
12,Integer to Roman,55.1%,Medium,0.008113634774169721, https://leetcode.com/problems/integer-to-roman
|
||||||
121,Best Time to Buy and Sell Stock,50.5%,Easy,0.0020383211296970956, https://leetcode.com/problems/best-time-to-buy-and-sell-stock
|
121,Best Time to Buy and Sell Stock,50.5%,Easy,0.0020383211296970956, https://leetcode.com/problems/best-time-to-buy-and-sell-stock
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
322,Coin Change,35.5%,Medium,0.03257065710568334, https://leetcode.com/problems/coin-change
|
322,Coin Change,35.5%,Medium,0.03257065710568334, https://leetcode.com/problems/coin-change
|
||||||
12,Integer to Roman,55.1%,Medium,0.018163970627671163, https://leetcode.com/problems/integer-to-roman
|
12,Integer to Roman,55.1%,Medium,0.018163970627671163, https://leetcode.com/problems/integer-to-roman
|
||||||
238,Product of Array Except Self,60.1%,Medium,0.003757284149658983, https://leetcode.com/problems/product-of-array-except-self
|
238,Product of Array Except Self,60.1%,Medium,0.003757284149658983, https://leetcode.com/problems/product-of-array-except-self
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
322,Coin Change,35.5%,Medium,0.04715183980861924, https://leetcode.com/problems/coin-change
|
322,Coin Change,35.5%,Medium,0.04715183980861924, https://leetcode.com/problems/coin-change
|
||||||
1,Two Sum,45.6%,Easy,0.03267443218434049, https://leetcode.com/problems/two-sum
|
1,Two Sum,45.6%,Easy,0.03267443218434049, https://leetcode.com/problems/two-sum
|
||||||
121,Best Time to Buy and Sell Stock,50.5%,Easy,0.018197024560061743, https://leetcode.com/problems/best-time-to-buy-and-sell-stock
|
121,Best Time to Buy and Sell Stock,50.5%,Easy,0.018197024560061743, https://leetcode.com/problems/best-time-to-buy-and-sell-stock
|
||||||
|
|||||||
|
@@ -1 +1,2 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
20,Valid Parentheses,39.0%,Easy,0.0023005704055949323, https://leetcode.com/problems/valid-parentheses
|
20,Valid Parentheses,39.0%,Easy,0.0023005704055949323, https://leetcode.com/problems/valid-parentheses
|
||||||
|
|||||||
|
@@ -1 +1,2 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
20,Valid Parentheses,39.0%,Easy,0.055983722381420686, https://leetcode.com/problems/valid-parentheses
|
20,Valid Parentheses,39.0%,Easy,0.055983722381420686, https://leetcode.com/problems/valid-parentheses
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1396,Design Underground System,64.7%,Medium,2.155218657865939, https://leetcode.com/problems/design-underground-system
|
1396,Design Underground System,64.7%,Medium,2.155218657865939, https://leetcode.com/problems/design-underground-system
|
||||||
1169,Invalid Transactions,31.2%,Medium,1.8705521944133323, https://leetcode.com/problems/invalid-transactions
|
1169,Invalid Transactions,31.2%,Medium,1.8705521944133323, https://leetcode.com/problems/invalid-transactions
|
||||||
430,Flatten a Multilevel Doubly Linked List,55.1%,Medium,1.8386285548491934, https://leetcode.com/problems/flatten-a-multilevel-doubly-linked-list
|
430,Flatten a Multilevel Doubly Linked List,55.1%,Medium,1.8386285548491934, https://leetcode.com/problems/flatten-a-multilevel-doubly-linked-list
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1396,Design Underground System,64.7%,Medium,2.1135252465771397, https://leetcode.com/problems/design-underground-system
|
1396,Design Underground System,64.7%,Medium,2.1135252465771397, https://leetcode.com/problems/design-underground-system
|
||||||
430,Flatten a Multilevel Doubly Linked List,55.1%,Medium,2.069920145220796, https://leetcode.com/problems/flatten-a-multilevel-doubly-linked-list
|
430,Flatten a Multilevel Doubly Linked List,55.1%,Medium,2.069920145220796, https://leetcode.com/problems/flatten-a-multilevel-doubly-linked-list
|
||||||
394,Decode String,50.0%,Medium,1.922952973608821, https://leetcode.com/problems/decode-string
|
394,Decode String,50.0%,Medium,1.922952973608821, https://leetcode.com/problems/decode-string
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1396,Design Underground System,64.7%,Medium,1.6336239764997664, https://leetcode.com/problems/design-underground-system
|
1396,Design Underground System,64.7%,Medium,1.6336239764997664, https://leetcode.com/problems/design-underground-system
|
||||||
1274,Number of Ships in a Rectangle,66.3%,Hard,1.3841012723467938, https://leetcode.com/problems/number-of-ships-in-a-rectangle
|
1274,Number of Ships in a Rectangle,66.3%,Hard,1.3841012723467938, https://leetcode.com/problems/number-of-ships-in-a-rectangle
|
||||||
1169,Invalid Transactions,31.2%,Medium,1.1345785681938212, https://leetcode.com/problems/invalid-transactions
|
1169,Invalid Transactions,31.2%,Medium,1.1345785681938212, https://leetcode.com/problems/invalid-transactions
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
138,Copy List with Random Pointer,36.4%,Medium,2.9916072330367776, https://leetcode.com/problems/copy-list-with-random-pointer
|
138,Copy List with Random Pointer,36.4%,Medium,2.9916072330367776, https://leetcode.com/problems/copy-list-with-random-pointer
|
||||||
146,LRU Cache,33.2%,Medium,2.88011930741835, https://leetcode.com/problems/lru-cache
|
146,LRU Cache,33.2%,Medium,2.88011930741835, https://leetcode.com/problems/lru-cache
|
||||||
1396,Design Underground System,64.7%,Medium,2.7686313817999224, https://leetcode.com/problems/design-underground-system
|
1396,Design Underground System,64.7%,Medium,2.7686313817999224, https://leetcode.com/problems/design-underground-system
|
||||||
|
|||||||
|
@@ -1 +1,2 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1111,Maximum Nesting Depth of Two Valid Parentheses Strings,70.4%,Medium,0, https://leetcode.com/problems/maximum-nesting-depth-of-two-valid-parentheses-strings
|
1111,Maximum Nesting Depth of Two Valid Parentheses Strings,70.4%,Medium,0, https://leetcode.com/problems/maximum-nesting-depth-of-two-valid-parentheses-strings
|
||||||
|
|||||||
|
@@ -1 +1,2 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1034,Coloring A Border,44.7%,Medium,0, https://leetcode.com/problems/coloring-a-border
|
1034,Coloring A Border,44.7%,Medium,0, https://leetcode.com/problems/coloring-a-border
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
362,Design Hit Counter,63.7%,Medium,0.013911076949000302, https://leetcode.com/problems/design-hit-counter
|
362,Design Hit Counter,63.7%,Medium,0.013911076949000302, https://leetcode.com/problems/design-hit-counter
|
||||||
49,Group Anagrams,56.9%,Medium,0.008538951314232168, https://leetcode.com/problems/group-anagrams
|
49,Group Anagrams,56.9%,Medium,0.008538951314232168, https://leetcode.com/problems/group-anagrams
|
||||||
253,Meeting Rooms II,45.7%,Medium,0.008079219870546493, https://leetcode.com/problems/meeting-rooms-ii
|
253,Meeting Rooms II,45.7%,Medium,0.008079219870546493, https://leetcode.com/problems/meeting-rooms-ii
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
49,Group Anagrams,56.9%,Medium,0.04730812692103113, https://leetcode.com/problems/group-anagrams
|
49,Group Anagrams,56.9%,Medium,0.04730812692103113, https://leetcode.com/problems/group-anagrams
|
||||||
253,Meeting Rooms II,45.7%,Medium,0.03193246767820989, https://leetcode.com/problems/meeting-rooms-ii
|
253,Meeting Rooms II,45.7%,Medium,0.03193246767820989, https://leetcode.com/problems/meeting-rooms-ii
|
||||||
362,Design Hit Counter,63.7%,Medium,0.025382073271417165, https://leetcode.com/problems/design-hit-counter
|
362,Design Hit Counter,63.7%,Medium,0.025382073271417165, https://leetcode.com/problems/design-hit-counter
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
965,Univalued Binary Tree,67.7%,Easy,0.17568822959180388, https://leetcode.com/problems/univalued-binary-tree
|
965,Univalued Binary Tree,67.7%,Easy,0.17568822959180388, https://leetcode.com/problems/univalued-binary-tree
|
||||||
250,Count Univalue Subtrees,52.0%,Medium,0.17554347025042502, https://leetcode.com/problems/count-univalue-subtrees
|
250,Count Univalue Subtrees,52.0%,Medium,0.17554347025042502, https://leetcode.com/problems/count-univalue-subtrees
|
||||||
191,Number of 1 Bits,49.8%,Easy,0.172501270043584, https://leetcode.com/problems/number-of-1-bits
|
191,Number of 1 Bits,49.8%,Easy,0.172501270043584, https://leetcode.com/problems/number-of-1-bits
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
250,Count Univalue Subtrees,52.0%,Medium,1.1142520926168622, https://leetcode.com/problems/count-univalue-subtrees
|
250,Count Univalue Subtrees,52.0%,Medium,1.1142520926168622, https://leetcode.com/problems/count-univalue-subtrees
|
||||||
965,Univalued Binary Tree,67.7%,Easy,0.8592043555602473, https://leetcode.com/problems/univalued-binary-tree
|
965,Univalued Binary Tree,67.7%,Easy,0.8592043555602473, https://leetcode.com/problems/univalued-binary-tree
|
||||||
68,Text Justification,27.7%,Hard,0.6976918484065334, https://leetcode.com/problems/text-justification
|
68,Text Justification,27.7%,Hard,0.6976918484065334, https://leetcode.com/problems/text-justification
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
191,Number of 1 Bits,49.8%,Easy,0.0973962103257407, https://leetcode.com/problems/number-of-1-bits
|
191,Number of 1 Bits,49.8%,Easy,0.0973962103257407, https://leetcode.com/problems/number-of-1-bits
|
||||||
68,Text Justification,27.7%,Hard,0.06116036187169583, https://leetcode.com/problems/text-justification
|
68,Text Justification,27.7%,Hard,0.06116036187169583, https://leetcode.com/problems/text-justification
|
||||||
965,Univalued Binary Tree,67.7%,Easy,0.04151887834779356, https://leetcode.com/problems/univalued-binary-tree
|
965,Univalued Binary Tree,67.7%,Easy,0.04151887834779356, https://leetcode.com/problems/univalued-binary-tree
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
250,Count Univalue Subtrees,52.0%,Medium,1.7195134036164268, https://leetcode.com/problems/count-univalue-subtrees
|
250,Count Univalue Subtrees,52.0%,Medium,1.7195134036164268, https://leetcode.com/problems/count-univalue-subtrees
|
||||||
965,Univalued Binary Tree,67.7%,Easy,1.2504050329534637, https://leetcode.com/problems/univalued-binary-tree
|
965,Univalued Binary Tree,67.7%,Easy,1.2504050329534637, https://leetcode.com/problems/univalued-binary-tree
|
||||||
68,Text Justification,27.7%,Hard,0.7812966622905007, https://leetcode.com/problems/text-justification
|
68,Text Justification,27.7%,Hard,0.7812966622905007, https://leetcode.com/problems/text-justification
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
407,Trapping Rain Water II,42.4%,Hard,0.4512959462757127, https://leetcode.com/problems/trapping-rain-water-ii
|
407,Trapping Rain Water II,42.4%,Hard,0.4512959462757127, https://leetcode.com/problems/trapping-rain-water-ii
|
||||||
403,Frog Jump,39.7%,Hard,0.40653748891792285, https://leetcode.com/problems/frog-jump
|
403,Frog Jump,39.7%,Hard,0.40653748891792285, https://leetcode.com/problems/frog-jump
|
||||||
1202,Smallest String With Swaps,46.5%,Medium,0.3430272491675487, https://leetcode.com/problems/smallest-string-with-swaps
|
1202,Smallest String With Swaps,46.5%,Medium,0.3430272491675487, https://leetcode.com/problems/smallest-string-with-swaps
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
407,Trapping Rain Water II,42.4%,Hard,0.4558904036597034, https://leetcode.com/problems/trapping-rain-water-ii
|
407,Trapping Rain Water II,42.4%,Hard,0.4558904036597034, https://leetcode.com/problems/trapping-rain-water-ii
|
||||||
403,Frog Jump,39.7%,Hard,0.4111319463019136, https://leetcode.com/problems/frog-jump
|
403,Frog Jump,39.7%,Hard,0.4111319463019136, https://leetcode.com/problems/frog-jump
|
||||||
25,Reverse Nodes in k-Group,42.1%,Hard,0.35618539084316814, https://leetcode.com/problems/reverse-nodes-in-k-group
|
25,Reverse Nodes in k-Group,42.1%,Hard,0.35618539084316814, https://leetcode.com/problems/reverse-nodes-in-k-group
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
407,Trapping Rain Water II,42.4%,Hard,0.4353602275534239, https://leetcode.com/problems/trapping-rain-water-ii
|
407,Trapping Rain Water II,42.4%,Hard,0.4353602275534239, https://leetcode.com/problems/trapping-rain-water-ii
|
||||||
403,Frog Jump,39.7%,Hard,0.3149429241272629, https://leetcode.com/problems/frog-jump
|
403,Frog Jump,39.7%,Hard,0.3149429241272629, https://leetcode.com/problems/frog-jump
|
||||||
493,Reverse Pairs,25.2%,Hard,0.29808060746524384, https://leetcode.com/problems/reverse-pairs
|
493,Reverse Pairs,25.2%,Hard,0.29808060746524384, https://leetcode.com/problems/reverse-pairs
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
440,K-th Smallest in Lexicographical Order,29.1%,Hard,0.6255531303521535, https://leetcode.com/problems/k-th-smallest-in-lexicographical-order
|
440,K-th Smallest in Lexicographical Order,29.1%,Hard,0.6255531303521535, https://leetcode.com/problems/k-th-smallest-in-lexicographical-order
|
||||||
465,Optimal Account Balancing,46.9%,Hard,0.5742250229838192, https://leetcode.com/problems/optimal-account-balancing
|
465,Optimal Account Balancing,46.9%,Hard,0.5742250229838192, https://leetcode.com/problems/optimal-account-balancing
|
||||||
42,Trapping Rain Water,48.9%,Hard,0.5642428619989066, https://leetcode.com/problems/trapping-rain-water
|
42,Trapping Rain Water,48.9%,Hard,0.5642428619989066, https://leetcode.com/problems/trapping-rain-water
|
||||||
|
|||||||
|
@@ -1 +1,2 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1140,Stone Game II,63.3%,Medium,0, https://leetcode.com/problems/stone-game-ii
|
1140,Stone Game II,63.3%,Medium,0, https://leetcode.com/problems/stone-game-ii
|
||||||
|
|||||||
|
@@ -1,2 +1,3 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
930,Binary Subarrays With Sum,43.2%,Medium,0, https://leetcode.com/problems/binary-subarrays-with-sum
|
930,Binary Subarrays With Sum,43.2%,Medium,0, https://leetcode.com/problems/binary-subarrays-with-sum
|
||||||
976,Largest Perimeter Triangle,57.6%,Easy,0, https://leetcode.com/problems/largest-perimeter-triangle
|
976,Largest Perimeter Triangle,57.6%,Easy,0, https://leetcode.com/problems/largest-perimeter-triangle
|
||||||
|
|||||||
|
@@ -1,2 +1,3 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1220,Count Vowels Permutation,54.0%,Hard,0.6794349186959634, https://leetcode.com/problems/count-vowels-permutation
|
1220,Count Vowels Permutation,54.0%,Hard,0.6794349186959634, https://leetcode.com/problems/count-vowels-permutation
|
||||||
1419,Minimum Number of Frogs Croaking,46.3%,Medium,0, https://leetcode.com/problems/minimum-number-of-frogs-croaking
|
1419,Minimum Number of Frogs Croaking,46.3%,Medium,0, https://leetcode.com/problems/minimum-number-of-frogs-croaking
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
228,Summary Ranges,39.5%,Medium,1.2150060644991902, https://leetcode.com/problems/summary-ranges
|
228,Summary Ranges,39.5%,Medium,1.2150060644991902, https://leetcode.com/problems/summary-ranges
|
||||||
814,Binary Tree Pruning,74.5%,Medium,0.9358608280682522, https://leetcode.com/problems/binary-tree-pruning
|
814,Binary Tree Pruning,74.5%,Medium,0.9358608280682522, https://leetcode.com/problems/binary-tree-pruning
|
||||||
328,Odd Even Linked List,55.7%,Medium,0.6567155916373142, https://leetcode.com/problems/odd-even-linked-list
|
328,Odd Even Linked List,55.7%,Medium,0.6567155916373142, https://leetcode.com/problems/odd-even-linked-list
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
228,Summary Ranges,39.5%,Medium,1.7946310215245758, https://leetcode.com/problems/summary-ranges
|
228,Summary Ranges,39.5%,Medium,1.7946310215245758, https://leetcode.com/problems/summary-ranges
|
||||||
814,Binary Tree Pruning,74.5%,Medium,1.2701157688808176, https://leetcode.com/problems/binary-tree-pruning
|
814,Binary Tree Pruning,74.5%,Medium,1.2701157688808176, https://leetcode.com/problems/binary-tree-pruning
|
||||||
328,Odd Even Linked List,55.7%,Medium,1.0030015329709059, https://leetcode.com/problems/odd-even-linked-list
|
328,Odd Even Linked List,55.7%,Medium,1.0030015329709059, https://leetcode.com/problems/odd-even-linked-list
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
228,Summary Ranges,39.5%,Medium,0.16290155097997208, https://leetcode.com/problems/summary-ranges
|
228,Summary Ranges,39.5%,Medium,0.16290155097997208, https://leetcode.com/problems/summary-ranges
|
||||||
1071,Greatest Common Divisor of Strings,52.9%,Easy,0.12182344519338843, https://leetcode.com/problems/greatest-common-divisor-of-strings
|
1071,Greatest Common Divisor of Strings,52.9%,Easy,0.12182344519338843, https://leetcode.com/problems/greatest-common-divisor-of-strings
|
||||||
290,Word Pattern,37.0%,Easy,0.10980743793876432, https://leetcode.com/problems/word-pattern
|
290,Word Pattern,37.0%,Easy,0.10980743793876432, https://leetcode.com/problems/word-pattern
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
228,Summary Ranges,39.5%,Medium,2.379243547602478, https://leetcode.com/problems/summary-ranges
|
228,Summary Ranges,39.5%,Medium,2.379243547602478, https://leetcode.com/problems/summary-ranges
|
||||||
814,Binary Tree Pruning,74.5%,Medium,1.714403093040326, https://leetcode.com/problems/binary-tree-pruning
|
814,Binary Tree Pruning,74.5%,Medium,1.714403093040326, https://leetcode.com/problems/binary-tree-pruning
|
||||||
328,Odd Even Linked List,55.7%,Medium,1.514446116622737, https://leetcode.com/problems/odd-even-linked-list
|
328,Odd Even Linked List,55.7%,Medium,1.514446116622737, https://leetcode.com/problems/odd-even-linked-list
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1290,Convert Binary Number in a Linked List to Integer,80.4%,Easy,0.15748072194904283, https://leetcode.com/problems/convert-binary-number-in-a-linked-list-to-integer
|
1290,Convert Binary Number in a Linked List to Integer,80.4%,Easy,0.15748072194904283, https://leetcode.com/problems/convert-binary-number-in-a-linked-list-to-integer
|
||||||
394,Decode String,50.0%,Medium,0.1232801760013658, https://leetcode.com/problems/decode-string
|
394,Decode String,50.0%,Medium,0.1232801760013658, https://leetcode.com/problems/decode-string
|
||||||
1235,Maximum Profit in Job Scheduling,44.0%,Hard,0.08907963005368878, https://leetcode.com/problems/maximum-profit-in-job-scheduling
|
1235,Maximum Profit in Job Scheduling,44.0%,Hard,0.08907963005368878, https://leetcode.com/problems/maximum-profit-in-job-scheduling
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1290,Convert Binary Number in a Linked List to Integer,80.4%,Easy,0.1661053170661279, https://leetcode.com/problems/convert-binary-number-in-a-linked-list-to-integer
|
1290,Convert Binary Number in a Linked List to Integer,80.4%,Easy,0.1661053170661279, https://leetcode.com/problems/convert-binary-number-in-a-linked-list-to-integer
|
||||||
3,Longest Substring Without Repeating Characters,30.4%,Medium,0.14469274653374686, https://leetcode.com/problems/longest-substring-without-repeating-characters
|
3,Longest Substring Without Repeating Characters,30.4%,Medium,0.14469274653374686, https://leetcode.com/problems/longest-substring-without-repeating-characters
|
||||||
394,Decode String,50.0%,Medium,0.1232801760013658, https://leetcode.com/problems/decode-string
|
394,Decode String,50.0%,Medium,0.1232801760013658, https://leetcode.com/problems/decode-string
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
1290,Convert Binary Number in a Linked List to Integer,80.4%,Easy,0.06956650156993308, https://leetcode.com/problems/convert-binary-number-in-a-linked-list-to-integer
|
1290,Convert Binary Number in a Linked List to Integer,80.4%,Easy,0.06956650156993308, https://leetcode.com/problems/convert-binary-number-in-a-linked-list-to-integer
|
||||||
1235,Maximum Profit in Job Scheduling,44.0%,Hard,0.06732797308883445, https://leetcode.com/problems/maximum-profit-in-job-scheduling
|
1235,Maximum Profit in Job Scheduling,44.0%,Hard,0.06732797308883445, https://leetcode.com/problems/maximum-profit-in-job-scheduling
|
||||||
909,Snakes and Ladders,38.4%,Medium,0.06217455073507972, https://leetcode.com/problems/snakes-and-ladders
|
909,Snakes and Ladders,38.4%,Medium,0.06217455073507972, https://leetcode.com/problems/snakes-and-ladders
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
206,Reverse Linked List,62.5%,Easy,0.5096020824537725, https://leetcode.com/problems/reverse-linked-list
|
206,Reverse Linked List,62.5%,Easy,0.5096020824537725, https://leetcode.com/problems/reverse-linked-list
|
||||||
1,Two Sum,45.6%,Easy,0.47406700041221206, https://leetcode.com/problems/two-sum
|
1,Two Sum,45.6%,Easy,0.47406700041221206, https://leetcode.com/problems/two-sum
|
||||||
1235,Maximum Profit in Job Scheduling,44.0%,Hard,0.4102843945441133, https://leetcode.com/problems/maximum-profit-in-job-scheduling
|
1235,Maximum Profit in Job Scheduling,44.0%,Hard,0.4102843945441133, https://leetcode.com/problems/maximum-profit-in-job-scheduling
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
829,Consecutive Numbers Sum,37.5%,Hard,1.0192107113585394, https://leetcode.com/problems/consecutive-numbers-sum
|
829,Consecutive Numbers Sum,37.5%,Hard,1.0192107113585394, https://leetcode.com/problems/consecutive-numbers-sum
|
||||||
1048,Longest String Chain,54.7%,Medium,0.6021288528371614, https://leetcode.com/problems/longest-string-chain
|
1048,Longest String Chain,54.7%,Medium,0.6021288528371614, https://leetcode.com/problems/longest-string-chain
|
||||||
285,Inorder Successor in BST,40.4%,Medium,0.1850469943157836, https://leetcode.com/problems/inorder-successor-in-bst
|
285,Inorder Successor in BST,40.4%,Medium,0.1850469943157836, https://leetcode.com/problems/inorder-successor-in-bst
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
829,Consecutive Numbers Sum,37.5%,Hard,1.0192107113585394, https://leetcode.com/problems/consecutive-numbers-sum
|
829,Consecutive Numbers Sum,37.5%,Hard,1.0192107113585394, https://leetcode.com/problems/consecutive-numbers-sum
|
||||||
1048,Longest String Chain,54.7%,Medium,0.6021288528371614, https://leetcode.com/problems/longest-string-chain
|
1048,Longest String Chain,54.7%,Medium,0.6021288528371614, https://leetcode.com/problems/longest-string-chain
|
||||||
285,Inorder Successor in BST,40.4%,Medium,0.1850469943157836, https://leetcode.com/problems/inorder-successor-in-bst
|
285,Inorder Successor in BST,40.4%,Medium,0.1850469943157836, https://leetcode.com/problems/inorder-successor-in-bst
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
829,Consecutive Numbers Sum,37.5%,Hard,0.28481507092935865, https://leetcode.com/problems/consecutive-numbers-sum
|
829,Consecutive Numbers Sum,37.5%,Hard,0.28481507092935865, https://leetcode.com/problems/consecutive-numbers-sum
|
||||||
285,Inorder Successor in BST,40.4%,Medium,0.1850469943157836, https://leetcode.com/problems/inorder-successor-in-bst
|
285,Inorder Successor in BST,40.4%,Medium,0.1850469943157836, https://leetcode.com/problems/inorder-successor-in-bst
|
||||||
241,Different Ways to Add Parentheses,55.2%,Medium,0.08527891770220855, https://leetcode.com/problems/different-ways-to-add-parentheses
|
241,Different Ways to Add Parentheses,55.2%,Medium,0.08527891770220855, https://leetcode.com/problems/different-ways-to-add-parentheses
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
829,Consecutive Numbers Sum,37.5%,Hard,1.7290600615878309, https://leetcode.com/problems/consecutive-numbers-sum
|
829,Consecutive Numbers Sum,37.5%,Hard,1.7290600615878309, https://leetcode.com/problems/consecutive-numbers-sum
|
||||||
1048,Longest String Chain,54.7%,Medium,1.016830261064837, https://leetcode.com/problems/longest-string-chain
|
1048,Longest String Chain,54.7%,Medium,1.016830261064837, https://leetcode.com/problems/longest-string-chain
|
||||||
241,Different Ways to Add Parentheses,55.2%,Medium,0.304600460541843, https://leetcode.com/problems/different-ways-to-add-parentheses
|
241,Different Ways to Add Parentheses,55.2%,Medium,0.304600460541843, https://leetcode.com/problems/different-ways-to-add-parentheses
|
||||||
|
|||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
|
||||||
761,Special Binary String,54.7%,Hard,0.29495095529317067, https://leetcode.com/problems/special-binary-string
|
761,Special Binary String,54.7%,Hard,0.29495095529317067, https://leetcode.com/problems/special-binary-string
|
||||||
741,Cherry Pickup,33.9%,Hard,0.20909179785855941, https://leetcode.com/problems/cherry-pickup
|
741,Cherry Pickup,33.9%,Hard,0.20909179785855941, https://leetcode.com/problems/cherry-pickup
|
||||||
697,Degree of an Array,53.8%,Easy,0.12323264042394814, https://leetcode.com/problems/degree-of-an-array
|
697,Degree of an Array,53.8%,Easy,0.12323264042394814, https://leetcode.com/problems/degree-of-an-array
|
||||||
|
|||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user