-
Notifications
You must be signed in to change notification settings - Fork 0
/
documents.txt
2405 lines (2405 loc) · 72 KB
/
documents.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
delete the middle node of a linked list
minimum difference between largest and smallest value in three moves
minimum number of frogs croaking
replace words
remove all adjacent duplicates in string ii
longest path with different adjacent characters
roman to integer
smallest value of the rearranged number
contains duplicate
minimum swaps to make strings equal
longest common subsequence
strange printer ii
maximum ice cream bars
linked list in binary tree
find the student that will replace the chalk
median of two sorted arrays
decode ways
rotate image
find and replace pattern
time needed to buy tickets
pairs of songs with total durations divisible by 60
longest repeating character replacement
check if an original string exists given two encoded strings
add two numbers ii
construct quad tree
minimum window substring
maximum height by stacking cuboids
palindrome partitioning
sum of digits of string after convert
cells with odd values in a matrix
minimum genetic mutation
closest room
combine two tables
largest number at least twice of others
kth smallest product of two sorted arrays
vertical order traversal of a binary tree
last day where you can still cross
classes more than 5 students
coloring a border
count number of homogenous substrings
first bad version
valid perfect square
special positions in a binary matrix
k items with the maximum sum
make two arrays equal by reversing subarrays
minimum cost of buying candies with discount
construct the rectangle
number of sets of k non-overlapping line segments
circular array loop
minimum recolors to get k consecutive black blocks
best time to buy and sell stock
greatest sum divisible by three
remove digit from number to maximize result
check if number is a sum of powers of three
uncrossed lines
path sum ii
search a 2d matrix
prime in diagonal
second minimum node in a binary tree
non-overlapping intervals
freedom trail
super palindromes
course schedule iii
teemo attacking
determine if two events have conflict
calculate digit sum of a string
consecutive numbers sum
reorder data in log files
investments in 2016
display table of food orders in a restaurant
burst balloons
design underground system
smallest good base
count number of teams
employee importance
calculate amount paid in taxes
airplane seat assignment probability
closest nodes queries in a binary search tree
distribute money to maximum children
insertion sort list
number of longest increasing subsequence
query kth smallest trimmed number
plates between candles
find a peak element ii
number of ways to reorder array to get same bst
split linked list in parts
permutations
intersection of multiple arrays
minimum possible integer after at most k adjacent swaps on digits
lowest common ancestor of a binary search tree
count the number of beautiful subarrays
array of doubled pairs
encrypt and decrypt strings
time to cross a bridge
reach a number
the latest time to catch a bus
maximum sum with exactly k elements
sort integers by the power value
maximum tastiness of candy basket
rectangle overlap
self crossing
allocate mailboxes
stone game viii
employees earning more than their managers
maximize the confusion of an exam
percentage of letter in string
open the lock
remove stones to minimize the total
maximum frequency stack
finding 3-digit even numbers
get maximum in generated array
partition list
array partition
triangle
get equal substrings within budget
same tree
minimized maximum of products distributed to any store
all divisions with the highest score of a binary array
number of distinct roll sequences
find all good indices
stock price fluctuation
sliding subarray beauty
check if a string can break another string
average time of process per machine
integer to english words
count the number of good subarrays
find all lonely numbers in the array
spiral matrix iii
jump game vi
minimum adjacent swaps for k consecutive ones
rank transform of a matrix
patients with a condition
special binary string
minimum time visiting all points
managers with at least 5 direct reports
minimum average difference
set mismatch
swapping nodes in a linked list
design graph with shortest path calculator
decode the message
shortest cycle in a graph
binary tree coloring game
distribute candies to people
scramble string
sort the jumbled numbers
find minimum in rotated sorted array ii
split a string in balanced strings
range sum query - mutable
recyclable and low fat products
running sum of 1d array
customers who never order
patching array
find n unique integers sum up to zero
implement rand10() using rand7()
design a text editor
minimum number of vertices to reach all nodes
guess number higher or lower ii
min stack
number of different integers in a string
maximum xor for each query
distinct subsequences ii
divide a string into groups of size k
sort the matrix diagonally
check if there is a valid partition for the array
build an array with stack operations
find players with zero or one losses
design parking system
stone game
valid parentheses
flipping an image
minimum operations to reduce x to zero
adding two negabinary numbers
sentence similarity iii
separate the digits in an array
triples with bitwise and equal to zero
longest arithmetic subsequence of given difference
print in order
largest local values in a matrix
minimum moves to move a box to their target location
longest subsequence repeated k times
path with minimum effort
all ancestors of a node in a directed acyclic graph
magic squares in grid
maximum total importance of roads
check if numbers are ascending in a sentence
car pooling
can place flowers
count fertile pyramids in a land
day of the week
word ladder ii
dota2 senate
parallel courses ii
largest positive integer that exists with its negative
find substring with given hash value
maximal rectangle
evaluate boolean binary tree
binary tree level order traversal ii
verify preorder serialization of a binary tree
generate random point in a circle
minimum cost to make array equal
wiggle subsequence
number of wonderful substrings
edit distance
monotone increasing digits
count days spent together
di string match
numbers with repeated digits
number of unequal triplets in array
minimum swaps to make sequences increasing
minimum number of operations to reinitialize a permutation
intersection of two arrays ii
find the difference of two arrays
subarray product less than k
flower planting with no adjacent
maximum gap
maximum number of ways to partition an array
maximum score of a good subarray
factorial trailing zeroes
increasing triplet subsequence
counting words with a given prefix
check if all a's appears before all b's
subarrays with k different integers
tweet counts per frequency
lucky numbers in a matrix
water bottles
stream of characters
repeated string match
best time to buy and sell stock iv
reverse linked list
ugly number iii
find elements in a contaminated binary tree
capital gain/loss
cinema seat allocation
sliding puzzle
longest word in dictionary through deleting
snail traversal
univalued binary tree
create components with same value
largest perimeter triangle
concatenated words
shopping offers
maximum number of achievable transfer requests
self dividing numbers
check array formation through concatenation
slowest key
number of students doing homework at a given time
count vowel substrings of a string
convert bst to greater tree
escape the ghosts
maximum length of repeated subarray
letter combinations of a phone number
top k frequent elements
shifting letters
finding mk average
diagonal traverse ii
remove duplicates from sorted list
longest consecutive sequence
find the width of columns of a grid
data stream as disjoint intervals
the time when the network becomes idle
linked list components
find array given subset sums
container with most water
contain virus
reverse integer
vowels of all substrings
find the divisibility array of a string
binary tree preorder traversal
similar string groups
number of orders in the backlog
game play analysis i
sequential digits
knight probability in chessboard
check if a string contains all binary codes of size k
minimum number of operations to sort a binary tree by level
minimum number of operations to make string sorted
tree node
k inverse pairs array
find duplicate file in system
the score of students solving math expression
most stones removed with same row or column
integer to roman
customer who visited but did not make any transactions
robot bounded in circle
find the distance value between two arrays
maximum width of binary tree
design twitter
convert 1d array into 2d array
utf-8 validation
number of flowers in full bloom
count ways to make array with product
backspace string compare
check if string is transformable with substring sort operations
count all possible routes
last stone weight ii
divide nodes into the maximum number of groups
ugly number ii
detect pattern of length m repeated k or more times
binary trees with factors
minimum time to finish the race
second largest digit in a string
most common word
complex number multiplication
fair distribution of cookies
stamping the sequence
minimum add to make parentheses valid
remove invalid parentheses
not boring movies
binary tree tilt
count artifacts that can be extracted
number of pairs of interchangeable rectangles
number of students unable to eat lunch
maximum width ramp
find the kth smallest sum of a matrix with sorted rows
maximum number of removable characters
valid mountain array
find the town judge
minimum number of days to eat n oranges
path with maximum gold
count substrings that differ by one character
odd even jump
random pick with blacklist
make sum divisible by p
last person to fit in the bus
iterator for combination
merge strings alternately
longest binary subsequence less than or equal to k
minimum number of operations to make arrays similar
critical connections in a network
goat latin
number of pairs satisfying inequality
number of ways where square of number is equal to product of two numbers
smallest range i
wiggle sort ii
jump game vii
student attendance record ii
find the index of the first occurrence in a string
count primes
contains duplicate iii
reorder routes to make all paths lead to the city zero
smallest subtree with all the deepest nodes
minimum cost to reach destination in time
replace non-coprime numbers in array
palindrome partitioning iv
longest harmonious subsequence
avoid flood in the city
minimum penalty for a shop
redundant connection ii
watering plants
super ugly number
short encoding of words
minimum number of arrows to burst balloons
first missing positive
find longest awesome substring
number of ways to rearrange sticks with k sticks visible
reachable nodes in subdivided graph
recover binary search tree
print words vertically
number of ways to split a string
n-queens ii
largest 1-bordered square
design hashset
most frequent subtree sum
apply bitwise operations to make strings equal
triangle judgement
number of good pairs
check if a parentheses string can be valid
sort list
count good meals
maximum compatibility score sum
increment submatrices by one
cat and mouse
create sorted array through instructions
frog jump ii
increasing decreasing string
convert binary number in a linked list to integer
find the kth largest integer in the array
reverse odd levels of binary tree
minimum moves to equal array elements ii
range module
number of laser beams in a bank
substring xor queries
squares of a sorted array
find all people with secret
where will the ball fall
customers who bought all products
max difference you can get from changing an integer
minimum number of increments on subarrays to form a target array
combination sum iii
closest divisors
arranging coins
design linked list
minimum distance to type a word using two fingers
number of ways to form a target string given a dictionary
additive number
maximum candies allocated to k children
number of segments in a string
number of days between two dates
maximum rows covered by columns
restore ip addresses
word search ii
binary tree postorder traversal
count good numbers
longest arithmetic subsequence
card flipping game
height of binary tree after subtree removal queries
cells in a range on an excel sheet
largest number after mutating substring
count number of pairs with absolute difference k
smallest rotation with highest score
check if array is sorted and rotated
break a palindrome
count number of rectangles containing each point
stone game iv
prime number of set bits in binary representation
unique morse code words
reverse nodes in even length groups
sleep
maximum sum of two non-overlapping subarrays
odd string difference
minimum number of flips to make the binary string alternating
excel sheet column number
rearrange spaces between words
largest combination with bitwise and greater than zero
number of visible people in a queue
minimum cost to merge stones
maximum genetic difference query
rearrange words in a sentence
closest prime numbers in range
strange printer
count the number of complete components
minimum score triangulation of polygon
equal rational numbers
largest time for given digits
split the array to make coprime products
sliding window median
climbing stairs
minimum total distance traveled
find missing observations
count the digits that divide a number
collect coins in a tree
concatenation of array
check if all characters have equal number of occurrences
encode and decode tinyurl
binary prefix divisible by 5
minimum one bit operations to make integers zero
partition to k equal sum subsets
snakes and ladders
equal sum arrays with minimum number of operations
walking robot simulation
find the middle index in array
optimal partition of string
least operators to express number
merge sorted array
largest multiple of three
sell diminishing-valued colored balls
put marbles in bags
boats to save people
divide players into teams of equal skill
sorting the sentence
move pieces to obtain a string
string without aaa or bbb
split array with same average
soup servings
stamping the grid
maximum non negative product in a matrix
single-threaded cpu
candy
successful pairs of spells and potions
sum multiples
minimum rounds to complete all tasks
smallest missing non-negative integer after operations
champagne tower
rearrange array to maximize prefix score
solve the equation
word pattern
my calendar ii
sum of k-mirror numbers
split a string into the max number of unique substrings
trim a binary search tree
minimum time to type word using special typewriter
minimum number of removals to make mountain array
substring with largest variance
keep multiplying found values by two
check if the sentence is pangram
fizz buzz
unique binary search trees ii
number of substrings with only 1s
smallest index with equal value
bitwise and of numbers range
categorize box according to criteria
invert binary tree
longest univalue path
array nesting
maximum value after insertion
largest odd number in string
combination sum iv
make number of distinct characters equal
minimum absolute sum difference
sequentially ordinal rank tracker
count integers with even digit sum
gas station
bricks falling when hit
validate stack sequences
lowest common ancestor of deepest leaves
find the difference
asteroid collision
minimum operations to reduce an integer to 0
permutation sequence
binary subarrays with sum
largest sum of averages
search in a binary search tree
russian doll envelopes
number of distinct averages
maximum number of words found in sentences
groups of special-equivalent strings
word ladder
fair candy swap
user activity for the past 30 days i
3sum with multiplicity
find if path exists in graph
minimum number of food buckets to feed the hamsters
make the xor of all segments equal to zero
nth magical number
sum of square numbers
4sum
nearest exit from entrance in maze
distinct echo substrings
distance between bus stops
promise pool
remove boxes
find kth largest xor coordinate value
students and examinations
construct target array with multiple sums
pascal's triangle ii
design a food rating system
number complement
palindrome linked list
smallest missing genetic value in each subtree
design memory allocator
capitalize the title
valid permutations for di sequence
the kth factor of n
booking concert tickets in groups
people whose list of favorite companies is not a subset of another list
maximum white tiles covered by a carpet
different ways to add parentheses
super washing machines
count ways to build good strings
masking personal information
strong password checker
two best non-overlapping events
combination sum
minimum money required before transactions
minimum difference between highest and lowest of k scores
consecutive numbers
count triplets that can form two arrays of equal xor
remove duplicates from sorted list ii
poor pigs
surface area of 3d shapes
find right interval
sum of prefix scores of strings
number of ways to wear different hats to each other
cheapest flights within k stops
search in rotated sorted array ii
find good days to rob the bank
divide array into equal pairs
longest nice subarray
surrounded regions
count array pairs divisible by k
maximum trailing zeros in a cornered path
bulb switcher ii
design front middle back queue
three consecutive odds
the number of beautiful subsets
count binary substrings
minimum additions to make valid string
determine color of a chessboard square
remove k digits
painting a grid with three different colors
non-negative integers without consecutive ones
design circular queue
sort characters by frequency
valid palindrome
gray code
minimum operations to make the array increasing
find closest number to zero
check if a word occurs as a prefix of any word in a sentence
rotting oranges
number of boomerangs
find numbers with even number of digits
partition equal subset sum
minimum area rectangle ii
power of three
find xor sum of all pairs bitwise and
mini parser
kth smallest element in a sorted matrix
minimum deletions to make array beautiful
range sum of sorted subarray sums
finding the users active minutes
delete leaves with a given value
apply discount every n orders
valid square
remove nth node from end of list
reduce array size to the half
arithmetic subarrays
paths in matrix whose sum is divisible by k
palindrome partitioning ii
lfu cache
reverse substrings between each pair of parentheses
count the number of square-free subsets
valid boomerang
sort array by parity
longest happy prefix
shortest distance to target string in a circular array
pass the pillow
number of subarrays with gcd equal to k
maximum students taking exam
find the longest valid obstacle course at each position
merge triplets to form target triplet
koko eating bananas
maximum number of non-overlapping subarrays with sum equals target
frequency of the most frequent element
build array from permutation
remove comments
remove letter to equalize frequency
rle iterator
maximum number of coins you can get
count nodes equal to average of subtree
detonate the maximum bombs
shortest completing word
isomorphic strings
cousins in binary tree
parallel courses iii
minimum speed to arrive on time
partition array into two arrays to minimize sum difference
diameter of binary tree
number of paths with max score
jump game ii
maximum score after splitting a string
count the number of fair pairs
increasing order search tree
n-repeated element in size 2n array
biggest single number
subtree of another tree
greatest english letter in upper and lower case
merge bsts to create single bst
maximum depth of n-ary tree
excel sheet column title
minimum elements to add to form a given sum
product of array except self
unique email addresses
smallest integer divisible by k
maximum star sum of a graph
frog jump
majority element
truncate sentence
remove duplicates from sorted array ii
two furthest houses with different colors
filter elements from array
exclusive time of functions
count unguarded cells in the grid
html entity parser
maximum level sum of a binary tree
count words obtained after adding a letter
maximum of absolute value expression
handling sum queries after update
find a corresponding node of a binary tree in a clone of that tree
count pairs with xor in a range
maximum fruits harvested after at most k steps
delete columns to make sorted ii
calculate special bonus
find k closest elements
evaluate the bracket pairs of a string
corporate flight bookings
tree of coprimes
verbal arithmetic puzzle
single number ii
detect cycles in 2d grid
find in mountain array
largest 3-same-digit number in string
product price at a given date
fix names in a table
populating next right pointers in each node ii
maximum distance between a pair of values
degree of an array
count of smaller numbers after self
maximum 69 number
maximum number of tasks you can assign
count all valid pickup and delivery options
longest substring with at least k repeating characters
minimum operations to make the array alternating
neighboring bitwise xor
buddy strings
lexicographical numbers
maximum sum obtained of any permutation
recover a tree from preorder traversal
search in rotated sorted array
add edges to make degrees of all nodes even
partition string into substrings with values at most k
range sum query 2d - immutable
maximum number of consecutive values you can make
find the highest altitude
tenth line
minimum xor sum of two arrays
count the hidden sequences
minimum number of refueling stops
count integers in intervals
swap salary
maximum equal frequency
symmetric tree
smallest range covering elements from k lists
basic calculator iv
elimination game
minimum absolute difference in bst
sales person
ways to make a fair array
first day where you have been in all the rooms
kth largest sum in a binary tree
flip string to monotone increasing
remove all adjacent duplicates in string
get biggest three rhombus sums in a grid
number of senior citizens
goal parser interpretation
single element in a sorted array
primary department for each employee
next permutation
house robber iv
make array empty
possible bipartition
find lucky integer in an array
flood fill
reverse subarray to maximize array value
find greatest common divisor of array
find original array from doubled array
alert using same key-card three or more times in a one hour period
sum of total strength of wizards
minimize the total price of the trips
camelcase matching
vowel spellchecker
count number of bad pairs
copy list with random pointer
lemonade change
the skyline problem
contains duplicate ii
minimum obstacle removal to reach corner
the employee that worked on the longest task
n-queens
watering plants ii
erect the fence
groups of strings
minimum number of operations to convert time
spiral matrix
number of ways to select buildings
minimum cost to connect two groups of points
maximum matching of players with trainers
reverse nodes in k-group
minimum impossible or
execution of all suffix instructions staying in a grid
the earliest and latest rounds where players compete
convert sorted list to binary search tree
promise time limit
number of lines to write string
maximize greatness of an array
graph connectivity with threshold
path sum iii
reduction operations to make the array elements equal
find smallest letter greater than target
length of longest fibonacci subsequence
process tasks using servers
longest palindromic substring
daily leads and partners
search suggestions system
random pick with weight
snapshot array
number of steps to reduce a number to zero
minimum height trees
check if n and its double exist
unique paths ii
nth highest salary
number of rectangles that can form the largest square
valid palindrome ii
find the duplicate number
number of pairs of strings with concatenation equal to target
brace expansion ii
number of submatrices that sum to target
brick wall
random flip matrix
power of two
maximum bags with full capacity of rocks
implement stack using queues
create binary tree from descriptions
minimum path cost in a grid
basic calculator
minimum depth of binary tree
transform to chessboard
json deep equal
check if word is valid after substitutions
maximal square
longest cycle in a graph
baseball game
queue reconstruction by height
maximum product of splitted binary tree
maximum matrix sum
matrix block sum
minimum deletions to make array divisible
time based key-value store
find the k-sum of an array
kth largest element in an array
pascal's triangle
binary string with substrings representing 1 to n
throne inheritance
online election
memoize
hamming distance
subarray sums divisible by k
kth missing positive number
stone game iii
find resultant array after removing anagrams
count number of special subsequences
destroy sequential targets
numbers with same consecutive differences
accounts merge
rank teams by votes
maximum good people based on statements
check if word can be placed in crossword
minimum weighted subgraph with the required paths
minimum swaps to arrange a binary grid
cache with time limit
count subarrays with median k
minesweeper
maximum sum of distinct subarrays with length k
merge nodes in between zeros
smallest string with a given numeric value
number of ways to split array
subsets ii
bitwise ors of subarrays
race car
number of valid words in a sentence
delete and earn
chunk array
shuffle an array
longest subsequence with limited sum
check if there is a valid parentheses string path
path sum
earliest possible day of full bloom
reverse only letters
count anagrams
check if two string arrays are equivalent
subarray with elements greater than varying threshold
design authentication manager
number of closed islands
nim game
minimum subsequence in non-increasing order
assign cookies
finding pairs with a certain sum
fibonacci number
split array largest sum
print binary tree
integer break
sum of beauty in the array
find followers count
number of people aware of a secret
kids with the greatest number of candies
complete binary tree inserter
occurrences after bigram
serialize and deserialize bst
valid number
trapping rain water ii
jump game iv
number of ways to earn points
flatten binary tree to linked list
actors and directors who cooperated at least three times
maximize number of nice divisors
minimum cost to set cooking time
online stock span
minimum cost to hire k workers
minimum number of steps to make two strings anagram
count submatrices with all ones
maximum product after k increments
relative ranks
maximize number of subsequences in a string
three divisors
find the smallest divisor given a threshold
number of digit one
flip columns for maximum number of equal rows
sales analysis iii
smallest string starting from leaf
my calendar i
append k integers with minimal sum
can i win
construct binary search tree from preorder traversal
find the distinct difference array
student attendance record i
available captures for rook
group the people given the group size they belong to
sign of the product of an array
design bitset
sum root to leaf numbers
trips and users
interleaving string
peeking iterator
maximize win from two segments
frog position after t seconds
minimum distance between bst nodes
distribute candies
profitable schemes
linked list random node
maximum element after decreasing and rearranging
calculate money in leetcode bank
count subarrays with score less than k
find closest node to given two nodes
longest nice substring
valid triangle number
minimum score of a path between two cities
find consecutive integers from a data stream
design hashmap
maximum erasure value
exchange seats
maximum score of spliced array
daily temperatures
check completeness of a binary tree
group sold products by the date
find the string with lcp
remove colored pieces if both neighbors are the same color
top travellers
adding spaces to a string
naming a company
bank account summary ii
maximum subarray sum with one deletion
find critical and pseudo-critical edges in minimum spanning tree
count items matching a rule
sum of two integers
sum of distances in tree
two city scheduling
average of levels in binary tree
132 pattern
shift 2d grid
path with maximum probability
maximum number of darts inside of a circular dartboard
find bottom left tree value
find and replace in string
minimum number of visited cells in a grid
longest square streak in an array
rotated digits
longest increasing subsequence ii
binary watch
longest substring without repeating characters
make array zero by subtracting equal amounts
third maximum number
sum of beauty of all substrings
generate fibonacci sequence
longest turbulent subarray
last moment before all ants fall out of a plank
find score of an array after marking all elements
find first palindromic string in the array
counter
build array where you can find the maximum exactly k comparisons
take gifts from the richest pile
rotate string
maximize sum of array after k negations
best position for a service centre
minimum initial energy to finish tasks
range sum query - immutable
find servers that handled most number of requests
find three consecutive integers that sum to a given number
regions cut by slashes
maximum points you can obtain from cards
count special integers
domino and tromino tiling
maximum split of positive even integers
swap nodes in pairs
maximum number of visible points
print foobar alternately
maximum candies you can get from boxes
convert the temperature
maximum xor after operations
minimum numbers of function calls to make target array
minimum number of taps to open to water a garden
count common words with one occurrence
count good triplets
maximum repeating substring
sum game
number of nodes in the sub-tree with the same label
minimum domino rotations for equal row
can convert string in k moves
maximum difference between node and ancestor
the k-th lexicographical string of all happy strings of length n
friends of appropriate ages
number of good paths
height checker
range sum of bst
minimum cost of a path with special roads
minimum absolute difference queries
minimum operations to make the array k-increasing
latest time by replacing hidden digits
maximum number of groups entering a competition
n-ary tree preorder traversal
sum of subarray ranges
least number of unique integers after k removals