•Medium•TypeScript
Wiggle Sort IIrearrange array in wiggle pattern (nums[0] < nums[1] > nums[2] < ...) using sorted interleaving.
arrayssortinggreedy
•Medium•Python
Unique Paths IIcount paths from top-left to bottom-right with obstacles using dp with space optimization to O(n).
dynamic-programmingmatrix
•Unknown•C++, Java
Walking Robot Simulationquick reference for walking robot simulation. more notes soon.
c++java
•Medium•TypeScript
Largest Plus Signfind the largest plus sign order by computing longest consecutive 1s in four directions using dp.
dynamic-programmingmatrix
•Unknown•SQL
Movie Ratingquick reference for movie rating. more notes soon.
sql
•Hard•Python
Zuma Gamefind minimum balls needed to clear board using dfs with memoization, trying to form groups of 3+.
dfsbacktrackingmemoization
•Unknown•TypeScript
Game Theoryquick reference for game theory. more notes soon.
typescript
•Hard•PHP
Max Points on a Linefind maximum number of points that lie on the same line using slope calculation and hash map.
hash-tablemathgeometry
•Hard•Python
Candydistribute candy to children based on ratings using two-pass greedy approach.
greedyarrays
•Easy•C
Number of Recent Callsimplement RecentCounter using circular queue to count requests within last 3000ms.
queuedesign
•Hard•PHP
Largest Palindrome Productfind the largest palindrome made from the product of two n-digit numbers using brute force with optimizations.
mathbrute-force
•Medium•PHP
Maximal Squarefind the largest square of 1s in a binary matrix using dynamic programming.
dynamic-programmingmatrix
•Hard•TypeScript
Split Array Largest Sumfind minimum largest sum when splitting array into k subarrays using binary search on answer.
binary-searchgreedyarrays
•Easy•Python
Convert Sorted Array to Binary Search Treebuild balanced bst from sorted array by recursively using middle element as root.
treedivide-and-conquer
•Unknown•Scala
Special Array Iquick reference for special array i. more notes soon.
scala
•Hard•TypeScript
LFU Cacheimplement least frequently used cache with O(1) operations using hash maps and doubly linked lists.
designhash-tablelinked-list
•Hard•Python
Word Ladderfind shortest transformation sequence from beginWord to endWord using bfs.
bfsgraphstring
•Medium•TypeScript
Search a 2D Matrixbinary search on a sorted 2d matrix by treating it as a flattened sorted array.
binary-searchmatrixarrays
•Unknown•Python
Maximum Xor With An Element From Arrayquick reference for maximum xor with an element from array. more notes soon.
python
•Hard•Python
Palindrome Pairsfind all pairs of words that form palindrome when concatenated by checking all prefix/suffix splits.
hash-tablestringtrie
•Hard•Python
Sliding Window Medianfind median for each sliding window using sorted list to maintain window in sorted order.
sliding-windowheapsorted-list
•Medium•TypeScript
Array With Elements Not Equal to Average of Neighborsrearrange array so no element equals the average of its neighbors using sorted interleaving pattern.
arrayssortinggreedy
•Unknown•PHP
Addtwonumbersquick reference for addtwonumbers. more notes soon.
php
•Hard•PHP
Valid Numbervalidate if string represents a valid number using state machine or regex.
stringstate-machine
•Medium•C
Set Matrix Zeroesset entire row and column to zero when element is zero, using first row and column as markers for O(1) space.
matrixarrays
•Unknown•Python
Kth Smallest In Lexicographical Orderquick reference for kth smallest in lexicographical order. more notes soon.
python
•Unknown•Python
Palindrome Partitioning Iiquick reference for palindrome partitioning ii. more notes soon.
python
•Hard•TypeScript
Stamping the Gridcheck if a grid can be fully covered by stamps using prefix sums and 2d difference array.
prefix-summatrixgreedy
•Hard•PHP
Number of Digit Onecount total number of digit 1 appearing in all numbers from 1 to n using digit dp or mathematical analysis.
mathdynamic-programming
•Hard•PHP
Strong Password Checkerfind minimum steps to make password strong by handling length, character types, and repeating sequences.
greedystring
•Unknown•Erlang
1 Bit And 2 Bit Charactersquick reference for 1 bit and 2 bit characters. more notes soon.
erlang
•Unknown•C++, Python, TypeScript
0001 Two Sumquick reference for 0001 two sum. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0007 Reverse Integerquick reference for 0007 reverse integer. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0009 Palindrome Numberquick reference for 0009 palindrome number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0013 Roman To Integerquick reference for 0013 roman to integer. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0014 Longest Common Prefixquick reference for 0014 longest common prefix. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0020 Valid Parenthesesquick reference for 0020 valid parentheses. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0021 Merge Two Sorted Listsquick reference for 0021 merge two sorted lists. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0026 Remove Duplicates From Sorted Arrayquick reference for 0026 remove duplicates from sorted array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0027 Remove Elementquick reference for 0027 remove element. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0028 Find The Index Of The First Occurrence In A Stringquick reference for 0028 find the index of the first occurrence in a string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0035 Search Insert Positionquick reference for 0035 search insert position. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0058 Length Of Last Wordquick reference for 0058 length of last word. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0066 Plus Onequick reference for 0066 plus one. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0067 Add Binaryquick reference for 0067 add binary. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0069 Sqrtxquick reference for 0069 sqrtx. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0070 Climbing Stairsquick reference for 0070 climbing stairs. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0083 Remove Duplicates From Sorted Listquick reference for 0083 remove duplicates from sorted list. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0088 Merge Sorted Arrayquick reference for 0088 merge sorted array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0094 Binary Tree Inorder Traversalquick reference for 0094 binary tree inorder traversal. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0100 Same Treequick reference for 0100 same tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0101 Symmetric Treequick reference for 0101 symmetric tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0104 Maximum Depth Of Binary Treequick reference for 0104 maximum depth of binary tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0107 Binary Tree Level Order Traversal Iiquick reference for 0107 binary tree level order traversal ii. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0108 Convert Sorted Array To Binary Search Treequick reference for 0108 convert sorted array to binary search tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0110 Balanced Binary Treequick reference for 0110 balanced binary tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0111 Minimum Depth Of Binary Treequick reference for 0111 minimum depth of binary tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0112 Path Sumquick reference for 0112 path sum. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0118 Pascals Trianglequick reference for 0118 pascals triangle. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0119 Pascals Triangle Iiquick reference for 0119 pascals triangle ii. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0121 Best Time To Buy And Sell Stockquick reference for 0121 best time to buy and sell stock. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0125 Valid Palindromequick reference for 0125 valid palindrome. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0136 Single Numberquick reference for 0136 single number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0141 Linked List Cyclequick reference for 0141 linked list cycle. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0144 Binary Tree Preorder Traversalquick reference for 0144 binary tree preorder traversal. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0145 Binary Tree Postorder Traversalquick reference for 0145 binary tree postorder traversal. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0155 Min Stackquick reference for 0155 min stack. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0160 Intersection Of Two Linked Listsquick reference for 0160 intersection of two linked lists. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0168 Excel Sheet Column Titlequick reference for 0168 excel sheet column title. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0169 Majority Elementquick reference for 0169 majority element. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0171 Excel Sheet Column Numberquick reference for 0171 excel sheet column number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0190 Reverse Bitsquick reference for 0190 reverse bits. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0191 Number Of 1 Bitsquick reference for 0191 number of 1 bits. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0202 Happy Numberquick reference for 0202 happy number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0203 Remove Linked List Elementsquick reference for 0203 remove linked list elements. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0205 Isomorphic Stringsquick reference for 0205 isomorphic strings. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0206 Reverse Linked Listquick reference for 0206 reverse linked list. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0217 Contains Duplicatequick reference for 0217 contains duplicate. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0219 Contains Duplicate Iiquick reference for 0219 contains duplicate ii. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0222 Count Complete Tree Nodesquick reference for 0222 count complete tree nodes. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0225 Implement Stack Using Queuesquick reference for 0225 implement stack using queues. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0226 Invert Binary Treequick reference for 0226 invert binary tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0228 Summary Rangesquick reference for 0228 summary ranges. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0231 Power Of Twoquick reference for 0231 power of two. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0232 Implement Queue Using Stacksquick reference for 0232 implement queue using stacks. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0234 Palindrome Linked Listquick reference for 0234 palindrome linked list. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0235 Lowest Common Ancestor Of A Binary Search Treequick reference for 0235 lowest common ancestor of a binary search tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0237 Delete Node In A Linked Listquick reference for 0237 delete node in a linked list. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0242 Valid Anagramquick reference for 0242 valid anagram. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0257 Binary Tree Pathsquick reference for 0257 binary tree paths. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0258 Add Digitsquick reference for 0258 add digits. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0263 Ugly Numberquick reference for 0263 ugly number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0268 Missing Numberquick reference for 0268 missing number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0278 First Bad Versionquick reference for 0278 first bad version. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0283 Move Zeroesquick reference for 0283 move zeroes. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0290 Word Patternquick reference for 0290 word pattern. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0292 Nim Gamequick reference for 0292 nim game. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0303 Range Sum Query Immutablequick reference for 0303 range sum query immutable. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0326 Power Of Threequick reference for 0326 power of three. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0338 Counting Bitsquick reference for 0338 counting bits. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0342 Power Of Fourquick reference for 0342 power of four. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0344 Reverse Stringquick reference for 0344 reverse string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0345 Reverse Vowels Of A Stringquick reference for 0345 reverse vowels of a string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0349 Intersection Of Two Arraysquick reference for 0349 intersection of two arrays. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0350 Intersection Of Two Arrays Iiquick reference for 0350 intersection of two arrays ii. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0367 Valid Perfect Squarequick reference for 0367 valid perfect square. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0374 Guess Number Higher Or Lowerquick reference for 0374 guess number higher or lower. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0383 Ransom Notequick reference for 0383 ransom note. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0387 First Unique Character In A Stringquick reference for 0387 first unique character in a string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0389 Find The Differencequick reference for 0389 find the difference. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0392 Is Subsequencequick reference for 0392 is subsequence. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0401 Binary Watchquick reference for 0401 binary watch. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0404 Sum Of Left Leavesquick reference for 0404 sum of left leaves. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0405 Convert A Number To Hexadecimalquick reference for 0405 convert a number to hexadecimal. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0409 Longest Palindromequick reference for 0409 longest palindrome. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0412 Fizz Buzzquick reference for 0412 fizz buzz. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0414 Third Maximum Numberquick reference for 0414 third maximum number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0415 Add Stringsquick reference for 0415 add strings. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0434 Number Of Segments In A Stringquick reference for 0434 number of segments in a string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0441 Arranging Coinsquick reference for 0441 arranging coins. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0448 Find All Numbers Disappeared In An Arrayquick reference for 0448 find all numbers disappeared in an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0455 Assign Cookiesquick reference for 0455 assign cookies. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0459 Repeated Substring Patternquick reference for 0459 repeated substring pattern. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0461 Hamming Distancequick reference for 0461 hamming distance. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0463 Island Perimeterquick reference for 0463 island perimeter. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0476 Number Complementquick reference for 0476 number complement. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0482 License Key Formattingquick reference for 0482 license key formatting. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0485 Max Consecutive Onesquick reference for 0485 max consecutive ones. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0492 Construct The Rectanglequick reference for 0492 construct the rectangle. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0495 Teemo Attackingquick reference for 0495 teemo attacking. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0496 Next Greater Element Iquick reference for 0496 next greater element i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0500 Keyboard Rowquick reference for 0500 keyboard row. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0501 Find Mode In Binary Search Treequick reference for 0501 find mode in binary search tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0504 Base 7quick reference for 0504 base 7. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0506 Relative Ranksquick reference for 0506 relative ranks. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0507 Perfect Numberquick reference for 0507 perfect number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0509 Fibonacci Numberquick reference for 0509 fibonacci number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0520 Detect Capitalquick reference for 0520 detect capital. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0521 Longest Uncommon Subsequence Iquick reference for 0521 longest uncommon subsequence i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0530 Minimum Absolute Difference In Bstquick reference for 0530 minimum absolute difference in bst. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0541 Reverse String Iiquick reference for 0541 reverse string ii. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0543 Diameter Of Binary Treequick reference for 0543 diameter of binary tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0551 Student Attendance Record Iquick reference for 0551 student attendance record i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0557 Reverse Words In A String Iiiquick reference for 0557 reverse words in a string iii. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0559 Maximum Depth Of N Ary Treequick reference for 0559 maximum depth of n ary tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0561 Array Partitionquick reference for 0561 array partition. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0563 Binary Tree Tiltquick reference for 0563 binary tree tilt. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0566 Reshape The Matrixquick reference for 0566 reshape the matrix. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0572 Subtree Of Another Treequick reference for 0572 subtree of another tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0575 Distribute Candiesquick reference for 0575 distribute candies. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0589 N Ary Tree Preorder Traversalquick reference for 0589 n ary tree preorder traversal. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0590 N Ary Tree Postorder Traversalquick reference for 0590 n ary tree postorder traversal. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0594 Longest Harmonious Subsequencequick reference for 0594 longest harmonious subsequence. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0598 Range Addition Iiquick reference for 0598 range addition ii. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0599 Minimum Index Sum Of Two Listsquick reference for 0599 minimum index sum of two lists. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0605 Can Place Flowersquick reference for 0605 can place flowers. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0617 Merge Two Binary Treesquick reference for 0617 merge two binary trees. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0628 Maximum Product Of Three Numbersquick reference for 0628 maximum product of three numbers. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0637 Average Of Levels In Binary Treequick reference for 0637 average of levels in binary tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0643 Maximum Average Subarray Iquick reference for 0643 maximum average subarray i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0645 Set Mismatchquick reference for 0645 set mismatch. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0653 Two Sum Iv Input Is A Bstquick reference for 0653 two sum iv input is a bst. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0657 Robot Return To Originquick reference for 0657 robot return to origin. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0661 Image Smootherquick reference for 0661 image smoother. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0671 Second Minimum Node In A Binary Treequick reference for 0671 second minimum node in a binary tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0674 Longest Continuous Increasing Subsequencequick reference for 0674 longest continuous increasing subsequence. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0680 Valid Palindrome Iiquick reference for 0680 valid palindrome ii. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0682 Baseball Gamequick reference for 0682 baseball game. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0693 Binary Number With Alternating Bitsquick reference for 0693 binary number with alternating bits. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0696 Count Binary Substringsquick reference for 0696 count binary substrings. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0697 Degree Of An Arrayquick reference for 0697 degree of an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0700 Search In A Binary Search Treequick reference for 0700 search in a binary search tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0703 Kth Largest Element In A Streamquick reference for 0703 kth largest element in a stream. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0704 Binary Searchquick reference for 0704 binary search. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0705 Design Hashsetquick reference for 0705 design hashset. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0706 Design Hashmapquick reference for 0706 design hashmap. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0709 To Lower Casequick reference for 0709 to lower case. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0717 1 Bit And 2 Bit Charactersquick reference for 0717 1 bit and 2 bit characters. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0724 Find Pivot Indexquick reference for 0724 find pivot index. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0728 Self Dividing Numbersquick reference for 0728 self dividing numbers. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0733 Flood Fillquick reference for 0733 flood fill. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0744 Find Smallest Letter Greater Than Targetquick reference for 0744 find smallest letter greater than target. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0746 Min Cost Climbing Stairsquick reference for 0746 min cost climbing stairs. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0747 Largest Number At Least Twice Of Othersquick reference for 0747 largest number at least twice of others. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0748 Shortest Completing Wordquick reference for 0748 shortest completing word. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0762 Prime Number Of Set Bits In Binary Representationquick reference for 0762 prime number of set bits in binary representation. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0766 Toeplitz Matrixquick reference for 0766 toeplitz matrix. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0771 Jewels And Stonesquick reference for 0771 jewels and stones. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0783 Minimum Distance Between Bst Nodesquick reference for 0783 minimum distance between bst nodes. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0796 Rotate Stringquick reference for 0796 rotate string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0804 Unique Morse Code Wordsquick reference for 0804 unique morse code words. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0806 Number Of Lines To Write Stringquick reference for 0806 number of lines to write string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0812 Largest Triangle Areaquick reference for 0812 largest triangle area. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0819 Most Common Wordquick reference for 0819 most common word. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0821 Shortest Distance To A Characterquick reference for 0821 shortest distance to a character. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0824 Goat Latinquick reference for 0824 goat latin. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0830 Positions Of Large Groupsquick reference for 0830 positions of large groups. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0832 Flipping An Imagequick reference for 0832 flipping an image. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0836 Rectangle Overlapquick reference for 0836 rectangle overlap. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0844 Backspace String Comparequick reference for 0844 backspace string compare. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0859 Buddy Stringsquick reference for 0859 buddy strings. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0860 Lemonade Changequick reference for 0860 lemonade change. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0867 Transpose Matrixquick reference for 0867 transpose matrix. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0868 Binary Gapquick reference for 0868 binary gap. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0872 Leaf Similar Treesquick reference for 0872 leaf similar trees. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0876 Middle Of The Linked Listquick reference for 0876 middle of the linked list. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0883 Projection Area Of 3d Shapesquick reference for 0883 projection area of 3d shapes. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0884 Uncommon Words From Two Sentencesquick reference for 0884 uncommon words from two sentences. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0888 Fair Candy Swapquick reference for 0888 fair candy swap. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0892 Surface Area Of 3d Shapesquick reference for 0892 surface area of 3d shapes. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0896 Monotonic Arrayquick reference for 0896 monotonic array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0897 Increasing Order Search Treequick reference for 0897 increasing order search tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0905 Sort Array By Parityquick reference for 0905 sort array by parity. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0908 Smallest Range Iquick reference for 0908 smallest range i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0914 X Of A Kind In A Deck Of Cardsquick reference for 0914 x of a kind in a deck of cards. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0917 Reverse Only Lettersquick reference for 0917 reverse only letters. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0922 Sort Array By Parity Iiquick reference for 0922 sort array by parity ii. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0925 Long Pressed Namequick reference for 0925 long pressed name. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0929 Unique Email Addressesquick reference for 0929 unique email addresses. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0933 Number Of Recent Callsquick reference for 0933 number of recent calls. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0938 Range Sum Of Bstquick reference for 0938 range sum of bst. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0941 Valid Mountain Arrayquick reference for 0941 valid mountain array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0942 Di String Matchquick reference for 0942 di string match. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0944 Delete Columns To Make Sortedquick reference for 0944 delete columns to make sorted. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0953 Verifying An Alien Dictionaryquick reference for 0953 verifying an alien dictionary. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0961 N Repeated Element In Size 2n Arrayquick reference for 0961 n repeated element in size 2n array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0965 Univalued Binary Treequick reference for 0965 univalued binary tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0976 Largest Perimeter Trianglequick reference for 0976 largest perimeter triangle. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0977 Squares Of A Sorted Arrayquick reference for 0977 squares of a sorted array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0989 Add To Array Form Of Integerquick reference for 0989 add to array form of integer. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0993 Cousins In Binary Treequick reference for 0993 cousins in binary tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0997 Find The Town Judgequick reference for 0997 find the town judge. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
0999 Available Captures For Rookquick reference for 0999 available captures for rook. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1002 Find Common Charactersquick reference for 1002 find common characters. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1005 Maximize Sum Of Array After K Negationsquick reference for 1005 maximize sum of array after k negations. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1009 Complement Of Base 10 Integerquick reference for 1009 complement of base 10 integer. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1013 Partition Array Into Three Parts With Equal Sumquick reference for 1013 partition array into three parts with equal sum. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1018 Binary Prefix Divisible By 5quick reference for 1018 binary prefix divisible by 5. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1021 Remove Outermost Parenthesesquick reference for 1021 remove outermost parentheses. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1022 Sum Of Root To Leaf Binary Numbersquick reference for 1022 sum of root to leaf binary numbers. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1025 Divisor Gamequick reference for 1025 divisor game. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1030 Matrix Cells In Distance Orderquick reference for 1030 matrix cells in distance order. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1037 Valid Boomerangquick reference for 1037 valid boomerang. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1046 Last Stone Weightquick reference for 1046 last stone weight. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1047 Remove All Adjacent Duplicates In Stringquick reference for 1047 remove all adjacent duplicates in string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1051 Height Checkerquick reference for 1051 height checker. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1071 Greatest Common Divisor Of Stringsquick reference for 1071 greatest common divisor of strings. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1078 Occurrences After Bigramquick reference for 1078 occurrences after bigram. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1089 Duplicate Zerosquick reference for 1089 duplicate zeros. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1103 Distribute Candies To Peoplequick reference for 1103 distribute candies to people. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1108 Defanging An Ip Addressquick reference for 1108 defanging an ip address. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1122 Relative Sort Arrayquick reference for 1122 relative sort array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1128 Number Of Equivalent Domino Pairsquick reference for 1128 number of equivalent domino pairs. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1137 N Th Tribonacci Numberquick reference for 1137 n th tribonacci number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1154 Day Of The Yearquick reference for 1154 day of the year. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1160 Find Words That Can Be Formed By Charactersquick reference for 1160 find words that can be formed by characters. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1175 Prime Arrangementsquick reference for 1175 prime arrangements. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1184 Distance Between Bus Stopsquick reference for 1184 distance between bus stops. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1185 Day Of The Weekquick reference for 1185 day of the week. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1189 Maximum Number Of Balloonsquick reference for 1189 maximum number of balloons. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1200 Minimum Absolute Differencequick reference for 1200 minimum absolute difference. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1207 Unique Number Of Occurrencesquick reference for 1207 unique number of occurrences. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1217 Minimum Cost To Move Chips To The Same Positionquick reference for 1217 minimum cost to move chips to the same position. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1221 Split A String In Balanced Stringsquick reference for 1221 split a string in balanced strings. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1232 Check If It Is A Straight Linequick reference for 1232 check if it is a straight line. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1252 Cells With Odd Values In A Matrixquick reference for 1252 cells with odd values in a matrix. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1260 Shift 2d Gridquick reference for 1260 shift 2d grid. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1266 Minimum Time Visiting All Pointsquick reference for 1266 minimum time visiting all points. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1275 Find Winner On A Tic Tac Toe Gamequick reference for 1275 find winner on a tic tac toe game. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1281 Subtract The Product And Sum Of Digits Of An Integerquick reference for 1281 subtract the product and sum of digits of an integer. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1287 Element Appearing More Than 25 In Sorted Arrayquick reference for 1287 element appearing more than 25 in sorted array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1290 Convert Binary Number In A Linked List To Integerquick reference for 1290 convert binary number in a linked list to integer. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1295 Find Numbers With Even Number Of Digitsquick reference for 1295 find numbers with even number of digits. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1299 Replace Elements With Greatest Element On Right Sidequick reference for 1299 replace elements with greatest element on right side. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1304 Find N Unique Integers Sum Up To Zeroquick reference for 1304 find n unique integers sum up to zero. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1309 Decrypt String From Alphabet To Integer Mappingquick reference for 1309 decrypt string from alphabet to integer mapping. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1313 Decompress Run Length Encoded Listquick reference for 1313 decompress run length encoded list. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1317 Convert Integer To The Sum Of Two No Zero Integersquick reference for 1317 convert integer to the sum of two no zero integers. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1323 Maximum 69 Numberquick reference for 1323 maximum 69 number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1331 Rank Transform Of An Arrayquick reference for 1331 rank transform of an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1332 Remove Palindromic Subsequencesquick reference for 1332 remove palindromic subsequences. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1337 The K Weakest Rows In A Matrixquick reference for 1337 the k weakest rows in a matrix. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1342 Number Of Steps To Reduce A Number To Zeroquick reference for 1342 number of steps to reduce a number to zero. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1346 Check If N And Its Double Existquick reference for 1346 check if n and its double exist. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1351 Count Negative Numbers In A Sorted Matrixquick reference for 1351 count negative numbers in a sorted matrix. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1356 Sort Integers By The Number Of 1 Bitsquick reference for 1356 sort integers by the number of 1 bits. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1360 Number Of Days Between Two Datesquick reference for 1360 number of days between two dates. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1365 How Many Numbers Are Smaller Than The Current Numberquick reference for 1365 how many numbers are smaller than the current number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1370 Increasing Decreasing Stringquick reference for 1370 increasing decreasing string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1374 Generate A String With Characters That Have Odd Countsquick reference for 1374 generate a string with characters that have odd counts. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1379 Find A Corresponding Node Of A Binary Tree In A Clone Of That Treequick reference for 1379 find a corresponding node of a binary tree in a clone of that tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1380 Lucky Numbers In A Matrixquick reference for 1380 lucky numbers in a matrix. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1385 Find The Distance Value Between Two Arraysquick reference for 1385 find the distance value between two arrays. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1389 Create Target Array In The Given Orderquick reference for 1389 create target array in the given order. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1394 Find Lucky Integer In An Arrayquick reference for 1394 find lucky integer in an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1399 Count Largest Groupquick reference for 1399 count largest group. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1403 Minimum Subsequence In Non Increasing Orderquick reference for 1403 minimum subsequence in non increasing order. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1408 String Matching In An Arrayquick reference for 1408 string matching in an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1413 Minimum Value To Get Positive Step By Step Sumquick reference for 1413 minimum value to get positive step by step sum. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1417 Reformat The Stringquick reference for 1417 reformat the string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1422 Maximum Score After Splitting A Stringquick reference for 1422 maximum score after splitting a string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1431 Kids With The Greatest Number Of Candiesquick reference for 1431 kids with the greatest number of candies. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1436 Destination Cityquick reference for 1436 destination city. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1437 Check If All 1s Are At Least Length K Places Awayquick reference for 1437 check if all 1s are at least length k places away. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1446 Consecutive Charactersquick reference for 1446 consecutive characters. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1450 Number Of Students Doing Homework At A Given Timequick reference for 1450 number of students doing homework at a given time. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1455 Check If A Word Occurs As A Prefix Of Any Word In A Sentencequick reference for 1455 check if a word occurs as a prefix of any word in a sentence. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1460 Make Two Arrays Equal By Reversing Subarraysquick reference for 1460 make two arrays equal by reversing subarrays. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1464 Maximum Product Of Two Elements In An Arrayquick reference for 1464 maximum product of two elements in an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1470 Shuffle The Arrayquick reference for 1470 shuffle the array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1475 Final Prices With A Special Discount In A Shopquick reference for 1475 final prices with a special discount in a shop. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1480 Running Sum Of 1d Arrayquick reference for 1480 running sum of 1d array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1486 Xor Operation In An Arrayquick reference for 1486 xor operation in an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1491 Average Salary Excluding The Minimum And Maximum Salaryquick reference for 1491 average salary excluding the minimum and maximum salary. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1496 Path Crossingquick reference for 1496 path crossing. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1502 Can Make Arithmetic Progression From Sequencequick reference for 1502 can make arithmetic progression from sequence. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1507 Reformat Datequick reference for 1507 reformat date. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1512 Number Of Good Pairsquick reference for 1512 number of good pairs. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1518 Water Bottlesquick reference for 1518 water bottles. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1523 Count Odd Numbers In An Interval Rangequick reference for 1523 count odd numbers in an interval range. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1528 Shuffle Stringquick reference for 1528 shuffle string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1534 Count Good Tripletsquick reference for 1534 count good triplets. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1539 Kth Missing Positive Numberquick reference for 1539 kth missing positive number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1544 Make The String Greatquick reference for 1544 make the string great. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1550 Three Consecutive Oddsquick reference for 1550 three consecutive odds. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1556 Thousand Separatorquick reference for 1556 thousand separator. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1560 Most Visited Sector In A Circular Trackquick reference for 1560 most visited sector in a circular track. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1566 Detect Pattern Of Length M Repeated K Or More Timesquick reference for 1566 detect pattern of length m repeated k or more times. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1572 Matrix Diagonal Sumquick reference for 1572 matrix diagonal sum. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1576 Replace All S To Avoid Consecutive Repeating Charactersquick reference for 1576 replace all s to avoid consecutive repeating characters. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1582 Special Positions In A Binary Matrixquick reference for 1582 special positions in a binary matrix. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1588 Sum Of All Odd Length Subarraysquick reference for 1588 sum of all odd length subarrays. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1592 Rearrange Spaces Between Wordsquick reference for 1592 rearrange spaces between words. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1598 Crawler Log Folderquick reference for 1598 crawler log folder. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1603 Design Parking Systemquick reference for 1603 design parking system. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1608 Special Array With X Elements Greater Than Or Equal Xquick reference for 1608 special array with x elements greater than or equal x. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1614 Maximum Nesting Depth Of The Parenthesesquick reference for 1614 maximum nesting depth of the parentheses. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1619 Mean Of Array After Removing Some Elementsquick reference for 1619 mean of array after removing some elements. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1624 Largest Substring Between Two Equal Charactersquick reference for 1624 largest substring between two equal characters. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1629 Slowest Keyquick reference for 1629 slowest key. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1636 Sort Array By Increasing Frequencyquick reference for 1636 sort array by increasing frequency. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1637 Widest Vertical Area Between Two Points Containing No Pointsquick reference for 1637 widest vertical area between two points containing no points. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1640 Check Array Formation Through Concatenationquick reference for 1640 check array formation through concatenation. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1646 Get Maximum In Generated Arrayquick reference for 1646 get maximum in generated array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1652 Defuse The Bombquick reference for 1652 defuse the bomb. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1656 Design An Ordered Streamquick reference for 1656 design an ordered stream. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1662 Check If Two String Arrays Are Equivalentquick reference for 1662 check if two string arrays are equivalent. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1668 Maximum Repeating Substringquick reference for 1668 maximum repeating substring. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1672 Richest Customer Wealthquick reference for 1672 richest customer wealth. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1678 Goal Parser Interpretationquick reference for 1678 goal parser interpretation. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1684 Count The Number Of Consistent Stringsquick reference for 1684 count the number of consistent strings. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1688 Count Of Matches In Tournamentquick reference for 1688 count of matches in tournament. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1694 Reformat Phone Numberquick reference for 1694 reformat phone number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1700 Number Of Students Unable To Eat Lunchquick reference for 1700 number of students unable to eat lunch. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1704 Determine If String Halves Are Alikequick reference for 1704 determine if string halves are alike. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1710 Maximum Units On A Truckquick reference for 1710 maximum units on a truck. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1716 Calculate Money In Leetcode Bankquick reference for 1716 calculate money in leetcode bank. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1720 Decode Xored Arrayquick reference for 1720 decode xored array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1725 Number Of Rectangles That Can Form The Largest Squarequick reference for 1725 number of rectangles that can form the largest square. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1732 Find The Highest Altitudequick reference for 1732 find the highest altitude. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1736 Latest Time By Replacing Hidden Digitsquick reference for 1736 latest time by replacing hidden digits. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1742 Maximum Number Of Balls In A Boxquick reference for 1742 maximum number of balls in a box. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1748 Sum Of Unique Elementsquick reference for 1748 sum of unique elements. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1752 Check If Array Is Sorted And Rotatedquick reference for 1752 check if array is sorted and rotated. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1758 Minimum Changes To Make Alternating Binary Stringquick reference for 1758 minimum changes to make alternating binary string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1763 Longest Nice Substringquick reference for 1763 longest nice substring. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1768 Merge Strings Alternatelyquick reference for 1768 merge strings alternately. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1773 Count Items Matching A Rulequick reference for 1773 count items matching a rule. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1779 Find Nearest Point That Has The Same X Or Y Coordinatequick reference for 1779 find nearest point that has the same x or y coordinate. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1784 Check If Binary String Has At Most One Segment Of Onesquick reference for 1784 check if binary string has at most one segment of ones. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1790 Check If One String Swap Can Make Strings Equalquick reference for 1790 check if one string swap can make strings equal. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1791 Find Center Of Star Graphquick reference for 1791 find center of star graph. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1796 Second Largest Digit In A Stringquick reference for 1796 second largest digit in a string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1800 Maximum Ascending Subarray Sumquick reference for 1800 maximum ascending subarray sum. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1805 Number Of Different Integers In A Stringquick reference for 1805 number of different integers in a string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1812 Determine Color Of A Chessboard Squarequick reference for 1812 determine color of a chessboard square. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1816 Truncate Sentencequick reference for 1816 truncate sentence. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1822 Sign Of The Product Of An Arrayquick reference for 1822 sign of the product of an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1827 Minimum Operations To Make The Array Increasingquick reference for 1827 minimum operations to make the array increasing. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1832 Check If The Sentence Is Pangramquick reference for 1832 check if the sentence is pangram. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1837 Sum Of Digits In Base Kquick reference for 1837 sum of digits in base k. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1844 Replace All Digits With Charactersquick reference for 1844 replace all digits with characters. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1848 Minimum Distance To The Target Elementquick reference for 1848 minimum distance to the target element. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1854 Maximum Population Yearquick reference for 1854 maximum population year. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1859 Sorting The Sentencequick reference for 1859 sorting the sentence. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1863 Sum Of All Subset Xor Totalsquick reference for 1863 sum of all subset xor totals. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1869 Longer Contiguous Segments Of Ones Than Zerosquick reference for 1869 longer contiguous segments of ones than zeros. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1876 Substrings Of Size Three With Distinct Charactersquick reference for 1876 substrings of size three with distinct characters. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1880 Check If Word Equals Summation Of Two Wordsquick reference for 1880 check if word equals summation of two words. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1886 Determine Whether Matrix Can Be Obtained By Rotationquick reference for 1886 determine whether matrix can be obtained by rotation. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1893 Check If All The Integers In A Range Are Coveredquick reference for 1893 check if all the integers in a range are covered. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1897 Redistribute Characters To Make All Strings Equalquick reference for 1897 redistribute characters to make all strings equal. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1903 Largest Odd Number In Stringquick reference for 1903 largest odd number in string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1909 Remove One Element To Make The Array Strictly Increasingquick reference for 1909 remove one element to make the array strictly increasing. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1913 Maximum Product Difference Between Two Pairsquick reference for 1913 maximum product difference between two pairs. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1920 Build Array From Permutationquick reference for 1920 build array from permutation. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1925 Count Square Sum Triplesquick reference for 1925 count square sum triples. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1929 Concatenation Of Arrayquick reference for 1929 concatenation of array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1935 Maximum Number Of Words You Can Typequick reference for 1935 maximum number of words you can type. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1941 Check If All Characters Have Equal Number Of Occurrencesquick reference for 1941 check if all characters have equal number of occurrences. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1945 Sum Of Digits Of String After Convertquick reference for 1945 sum of digits of string after convert. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1952 Three Divisorsquick reference for 1952 three divisors. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1957 Delete Characters To Make Fancy Stringquick reference for 1957 delete characters to make fancy string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1961 Check If String Is A Prefix Of Arrayquick reference for 1961 check if string is a prefix of array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1967 Number Of Strings That Appear As Substrings In Wordquick reference for 1967 number of strings that appear as substrings in word. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1971 Find If Path Exists In Graphquick reference for 1971 find if path exists in graph. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1974 Minimum Time To Type Word Using Special Typewriterquick reference for 1974 minimum time to type word using special typewriter. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1979 Find Greatest Common Divisor Of Arrayquick reference for 1979 find greatest common divisor of array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1984 Minimum Difference Between Highest And Lowest Of K Scoresquick reference for 1984 minimum difference between highest and lowest of k scores. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1991 Find The Middle Index In Arrayquick reference for 1991 find the middle index in array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
1995 Count Special Quadrupletsquick reference for 1995 count special quadruplets. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2000 Reverse Prefix Of Wordquick reference for 2000 reverse prefix of word. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2006 Count Number Of Pairs With Absolute Difference Kquick reference for 2006 count number of pairs with absolute difference k. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2011 Final Value Of Variable After Performing Operationsquick reference for 2011 final value of variable after performing operations. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2016 Maximum Difference Between Increasing Elementsquick reference for 2016 maximum difference between increasing elements. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2022 Convert 1d Array Into 2d Arrayquick reference for 2022 convert 1d array into 2d array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2027 Minimum Moves To Convert Stringquick reference for 2027 minimum moves to convert string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2032 Two Out Of Threequick reference for 2032 two out of three. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2037 Minimum Number Of Moves To Seat Everyonequick reference for 2037 minimum number of moves to seat everyone. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2042 Check If Numbers Are Ascending In A Sentencequick reference for 2042 check if numbers are ascending in a sentence. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2047 Number Of Valid Words In A Sentencequick reference for 2047 number of valid words in a sentence. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2053 Kth Distinct String In An Arrayquick reference for 2053 kth distinct string in an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2057 Smallest Index With Equal Valuequick reference for 2057 smallest index with equal value. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2062 Count Vowel Substrings Of A Stringquick reference for 2062 count vowel substrings of a string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2068 Check Whether Two Strings Are Almost Equivalentquick reference for 2068 check whether two strings are almost equivalent. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2073 Time Needed To Buy Ticketsquick reference for 2073 time needed to buy tickets. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2078 Two Furthest Houses With Different Colorsquick reference for 2078 two furthest houses with different colors. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2085 Count Common Words With One Occurrencequick reference for 2085 count common words with one occurrence. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2089 Find Target Indices After Sorting Arrayquick reference for 2089 find target indices after sorting array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2094 Finding 3 Digit Even Numbersquick reference for 2094 finding 3 digit even numbers. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2099 Find Subsequence Of Length K With The Largest Sumquick reference for 2099 find subsequence of length k with the largest sum. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2103 Rings And Rodsquick reference for 2103 rings and rods. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2108 Find First Palindromic String In The Arrayquick reference for 2108 find first palindromic string in the array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2114 Maximum Number Of Words Found In Sentencesquick reference for 2114 maximum number of words found in sentences. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2119 A Number After A Double Reversalquick reference for 2119 a number after a double reversal. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2124 Check If All As Appears Before All Bsquick reference for 2124 check if all as appears before all bs. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2129 Capitalize The Titlequick reference for 2129 capitalize the title. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2133 Check If Every Row And Column Contains All Numbersquick reference for 2133 check if every row and column contains all numbers. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2138 Divide A String Into Groups Of Size Kquick reference for 2138 divide a string into groups of size k. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2144 Minimum Cost Of Buying Candies With Discountquick reference for 2144 minimum cost of buying candies with discount. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2148 Count Elements With Strictly Smaller And Greater Elementsquick reference for 2148 count elements with strictly smaller and greater elements. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2154 Keep Multiplying Found Values By Twoquick reference for 2154 keep multiplying found values by two. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2160 Minimum Sum Of Four Digit Number After Splitting Digitsquick reference for 2160 minimum sum of four digit number after splitting digits. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2164 Sort Even And Odd Indices Independentlyquick reference for 2164 sort even and odd indices independently. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2169 Count Operations To Obtain Zeroquick reference for 2169 count operations to obtain zero. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2176 Count Equal And Divisible Pairs In An Arrayquick reference for 2176 count equal and divisible pairs in an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2180 Count Integers With Even Digit Sumquick reference for 2180 count integers with even digit sum. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2185 Counting Words With A Given Prefixquick reference for 2185 counting words with a given prefix. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2190 Most Frequent Number Following Key In An Arrayquick reference for 2190 most frequent number following key in an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2194 Cells In A Range On An Excel Sheetquick reference for 2194 cells in a range on an excel sheet. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2200 Find All K Distant Indices In An Arrayquick reference for 2200 find all k distant indices in an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2206 Divide Array Into Equal Pairsquick reference for 2206 divide array into equal pairs. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2210 Count Hills And Valleys In An Arrayquick reference for 2210 count hills and valleys in an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2215 Find The Difference Of Two Arraysquick reference for 2215 find the difference of two arrays. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2220 Minimum Bit Flips To Convert Numberquick reference for 2220 minimum bit flips to convert number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2224 Minimum Number Of Operations To Convert Timequick reference for 2224 minimum number of operations to convert time. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2231 Largest Number After Digit Swaps By Parityquick reference for 2231 largest number after digit swaps by parity. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2235 Add Two Integersquick reference for 2235 add two integers. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2236 Root Equals Sum Of Childrenquick reference for 2236 root equals sum of children. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2239 Find Closest Number To Zeroquick reference for 2239 find closest number to zero. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2243 Calculate Digit Sum Of A Stringquick reference for 2243 calculate digit sum of a string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2248 Intersection Of Multiple Arraysquick reference for 2248 intersection of multiple arrays. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2255 Count Prefixes Of A Given Stringquick reference for 2255 count prefixes of a given string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2259 Remove Digit From Number To Maximize Resultquick reference for 2259 remove digit from number to maximize result. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2264 Largest 3 Same Digit Number In Stringquick reference for 2264 largest 3 same digit number in string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2269 Find The K Beauty Of A Numberquick reference for 2269 find the k beauty of a number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2273 Find Resultant Array After Removing Anagramsquick reference for 2273 find resultant array after removing anagrams. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2278 Percentage Of Letter In Stringquick reference for 2278 percentage of letter in string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2283 Check If Number Has Equal Digit Count And Digit Valuequick reference for 2283 check if number has equal digit count and digit value. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2287 Rearrange Characters To Make Target Stringquick reference for 2287 rearrange characters to make target string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2293 Min Max Gamequick reference for 2293 min max game. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2299 Strong Password Checker Iiquick reference for 2299 strong password checker ii. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2303 Calculate Amount Paid In Taxesquick reference for 2303 calculate amount paid in taxes. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2309 Greatest English Letter In Upper And Lower Casequick reference for 2309 greatest english letter in upper and lower case. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2315 Count Asterisksquick reference for 2315 count asterisks. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2319 Check If Matrix Is X Matrixquick reference for 2319 check if matrix is x matrix. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2325 Decode The Messagequick reference for 2325 decode the message. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2331 Evaluate Boolean Binary Treequick reference for 2331 evaluate boolean binary tree. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2335 Minimum Amount Of Time To Fill Cupsquick reference for 2335 minimum amount of time to fill cups. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2341 Maximum Number Of Pairs In Arrayquick reference for 2341 maximum number of pairs in array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2347 Best Poker Handquick reference for 2347 best poker hand. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2351 First Letter To Appear Twicequick reference for 2351 first letter to appear twice. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2357 Make Array Zero By Subtracting Equal Amountsquick reference for 2357 make array zero by subtracting equal amounts. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2363 Merge Similar Itemsquick reference for 2363 merge similar items. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2367 Number Of Arithmetic Tripletsquick reference for 2367 number of arithmetic triplets. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2373 Largest Local Values In A Matrixquick reference for 2373 largest local values in a matrix. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2379 Minimum Recolors To Get K Consecutive Black Blocksquick reference for 2379 minimum recolors to get k consecutive black blocks. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2383 Minimum Hours Of Training To Win A Competitionquick reference for 2383 minimum hours of training to win a competition. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2389 Longest Subsequence With Limited Sumquick reference for 2389 longest subsequence with limited sum. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2395 Find Subarrays With Equal Sumquick reference for 2395 find subarrays with equal sum. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2399 Check Distances Between Same Lettersquick reference for 2399 check distances between same letters. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2404 Most Frequent Even Elementquick reference for 2404 most frequent even element. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2409 Count Days Spent Togetherquick reference for 2409 count days spent together. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2413 Smallest Even Multiplequick reference for 2413 smallest even multiple. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2418 Sort The Peoplequick reference for 2418 sort the people. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2423 Remove Letter To Equalize Frequencyquick reference for 2423 remove letter to equalize frequency. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2427 Number Of Common Factorsquick reference for 2427 number of common factors. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2432 The Employee That Worked On The Longest Taskquick reference for 2432 the employee that worked on the longest task. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2437 Number Of Valid Clock Timesquick reference for 2437 number of valid clock times. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2441 Largest Positive Integer That Exists With Its Negativequick reference for 2441 largest positive integer that exists with its negative. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2446 Determine If Two Events Have Conflictquick reference for 2446 determine if two events have conflict. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2451 Odd String Differencequick reference for 2451 odd string difference. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2455 Average Value Of Even Numbers That Are Divisible By Threequick reference for 2455 average value of even numbers that are divisible by three. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2460 Apply Operations To An Arrayquick reference for 2460 apply operations to an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2465 Number Of Distinct Averagesquick reference for 2465 number of distinct averages. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2469 Convert The Temperaturequick reference for 2469 convert the temperature. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2475 Number Of Unequal Triplets In Arrayquick reference for 2475 number of unequal triplets in array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2481 Minimum Cuts To Divide A Circlequick reference for 2481 minimum cuts to divide a circle. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2485 Find The Pivot Integerquick reference for 2485 find the pivot integer. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2490 Circular Sentencequick reference for 2490 circular sentence. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2496 Maximum Value Of A String In An Arrayquick reference for 2496 maximum value of a string in an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2500 Delete Greatest Value In Each Rowquick reference for 2500 delete greatest value in each row. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2506 Count Pairs Of Similar Stringsquick reference for 2506 count pairs of similar strings. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2511 Maximum Enemy Forts That Can Be Capturedquick reference for 2511 maximum enemy forts that can be captured. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2515 Shortest Distance To Target String In A Circular Arrayquick reference for 2515 shortest distance to target string in a circular array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2520 Count The Digits That Divide A Numberquick reference for 2520 count the digits that divide a number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2525 Categorize Box According To Criteriaquick reference for 2525 categorize box according to criteria. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2529 Maximum Count Of Positive Integer And Negative Integerquick reference for 2529 maximum count of positive integer and negative integer. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2535 Difference Between Element Sum And Digit Sum Of An Arrayquick reference for 2535 difference between element sum and digit sum of an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2540 Minimum Common Valuequick reference for 2540 minimum common value. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2544 Alternating Digit Sumquick reference for 2544 alternating digit sum. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2549 Count Distinct Numbers On Boardquick reference for 2549 count distinct numbers on board. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2553 Separate The Digits In An Arrayquick reference for 2553 separate the digits in an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2558 Take Gifts From The Richest Pilequick reference for 2558 take gifts from the richest pile. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2562 Find The Array Concatenation Valuequick reference for 2562 find the array concatenation value. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2566 Maximum Difference By Remapping A Digitquick reference for 2566 maximum difference by remapping a digit. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2570 Merge Two 2d Arrays By Summing Valuesquick reference for 2570 merge two 2d arrays by summing values. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2574 Left And Right Sum Differencesquick reference for 2574 left and right sum differences. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2578 Split With Minimum Sumquick reference for 2578 split with minimum sum. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2582 Pass The Pillowquick reference for 2582 pass the pillow. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2586 Count The Number Of Vowel Strings In Rangequick reference for 2586 count the number of vowel strings in range. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2591 Distribute Money To Maximum Childrenquick reference for 2591 distribute money to maximum children. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2595 Number Of Even And Odd Bitsquick reference for 2595 number of even and odd bits. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2600 K Items With The Maximum Sumquick reference for 2600 k items with the maximum sum. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2605 Form Smallest Number From Two Digit Arraysquick reference for 2605 form smallest number from two digit arrays. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2609 Find The Longest Balanced Substring Of A Binary Stringquick reference for 2609 find the longest balanced substring of a binary string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2614 Prime In Diagonalquick reference for 2614 prime in diagonal. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2639 Find The Width Of Columns Of A Gridquick reference for 2639 find the width of columns of a grid. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2643 Row With Maximum Onesquick reference for 2643 row with maximum ones. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2644 Find The Maximum Divisibility Scorequick reference for 2644 find the maximum divisibility score. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2651 Calculate Delayed Arrival Timequick reference for 2651 calculate delayed arrival time. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2652 Sum Multiplesquick reference for 2652 sum multiples. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2656 Maximum Sum With Exactly K Elementsquick reference for 2656 maximum sum with exactly k elements. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2660 Determine The Winner Of A Bowling Gamequick reference for 2660 determine the winner of a bowling game. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2670 Find The Distinct Difference Arrayquick reference for 2670 find the distinct difference array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2678 Number Of Senior Citizensquick reference for 2678 number of senior citizens. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2682 Find The Losers Of The Circular Gamequick reference for 2682 find the losers of the circular game. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2696 Minimum String Length After Removing Substringsquick reference for 2696 minimum string length after removing substrings. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2697 Lexicographically Smallest Palindromequick reference for 2697 lexicographically smallest palindrome. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2706 Buy Two Chocolatesquick reference for 2706 buy two chocolates. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2710 Remove Trailing Zeros From A Stringquick reference for 2710 remove trailing zeros from a string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2716 Minimize String Lengthquick reference for 2716 minimize string length. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2717 Semi Ordered Permutationquick reference for 2717 semi ordered permutation. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2729 Check If The Number Is Fascinatingquick reference for 2729 check if the number is fascinating. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2733 Neither Minimum Nor Maximumquick reference for 2733 neither minimum nor maximum. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2739 Total Distance Traveledquick reference for 2739 total distance traveled. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2744 Find Maximum Number Of String Pairsquick reference for 2744 find maximum number of string pairs. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2748 Number Of Beautiful Pairsquick reference for 2748 number of beautiful pairs. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2760 Longest Even Odd Subarray With Thresholdquick reference for 2760 longest even odd subarray with threshold. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2765 Longest Alternating Subarrayquick reference for 2765 longest alternating subarray. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2769 Find The Maximum Achievable Numberquick reference for 2769 find the maximum achievable number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2778 Sum Of Squares Of Special Elementsquick reference for 2778 sum of squares of special elements. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2784 Check If Array Is Goodquick reference for 2784 check if array is good. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2788 Split Strings By Separatorquick reference for 2788 split strings by separator. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2798 Number Of Employees Who Met The Targetquick reference for 2798 number of employees who met the target. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2806 Account Balance After Rounded Purchasequick reference for 2806 account balance after rounded purchase. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2810 Faulty Keyboardquick reference for 2810 faulty keyboard. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2815 Max Pair Sum In An Arrayquick reference for 2815 max pair sum in an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2824 Count Pairs Whose Sum Is Less Than Targetquick reference for 2824 count pairs whose sum is less than target. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2828 Check If A String Is An Acronym Of Wordsquick reference for 2828 check if a string is an acronym of words. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2833 Furthest Point From Originquick reference for 2833 furthest point from origin. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2839 Check If Strings Can Be Made Equal With Operations Iquick reference for 2839 check if strings can be made equal with operations i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2843 Count Symmetric Integersquick reference for 2843 count symmetric integers. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2848 Points That Intersect With Carsquick reference for 2848 points that intersect with cars. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2855 Minimum Right Shifts To Sort The Arrayquick reference for 2855 minimum right shifts to sort the array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2859 Sum Of Values At Indices With K Set Bitsquick reference for 2859 sum of values at indices with k set bits. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2864 Maximum Odd Binary Numberquick reference for 2864 maximum odd binary number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2869 Minimum Operations To Collect Elementsquick reference for 2869 minimum operations to collect elements. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2873 Maximum Value Of An Ordered Triplet Iquick reference for 2873 maximum value of an ordered triplet i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2894 Divisible And Non Divisible Sums Differencequick reference for 2894 divisible and non divisible sums difference. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2899 Last Visited Integersquick reference for 2899 last visited integers. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2900 Longest Unequal Adjacent Groups Subsequence Iquick reference for 2900 longest unequal adjacent groups subsequence i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2903 Find Indices With Index And Value Difference Iquick reference for 2903 find indices with index and value difference i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2908 Minimum Sum Of Mountain Triplets Iquick reference for 2908 minimum sum of mountain triplets i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2913 Subarrays Distinct Element Sum Of Squares Iquick reference for 2913 subarrays distinct element sum of squares i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2917 Find The K Or Of An Arrayquick reference for 2917 find the k or of an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2923 Find Champion Iquick reference for 2923 find champion i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2928 Distribute Candies Among Children Iquick reference for 2928 distribute candies among children i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2932 Maximum Strong Pair Xor Iquick reference for 2932 maximum strong pair xor i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2937 Make Three Strings Equalquick reference for 2937 make three strings equal. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2942 Find Words Containing Characterquick reference for 2942 find words containing character. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2946 Matrix Similarity After Cyclic Shiftsquick reference for 2946 matrix similarity after cyclic shifts. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2951 Find The Peaksquick reference for 2951 find the peaks. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2956 Find Common Elements Between Two Arraysquick reference for 2956 find common elements between two arrays. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2960 Count Tested Devices After Test Operationsquick reference for 2960 count tested devices after test operations. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2965 Find Missing And Repeated Valuesquick reference for 2965 find missing and repeated values. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2970 Count The Number Of Incremovable Subarrays Iquick reference for 2970 count the number of incremovable subarrays i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2974 Minimum Number Gamequick reference for 2974 minimum number game. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2980 Check If Bitwise Or Has Trailing Zerosquick reference for 2980 check if bitwise or has trailing zeros. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
2996 Smallest Missing Integer Greater Than Sequential Prefix Sumquick reference for 2996 smallest missing integer greater than sequential prefix sum. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3000 Maximum Area Of Longest Diagonal Rectanglequick reference for 3000 maximum area of longest diagonal rectangle. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3005 Count Elements With Maximum Frequencyquick reference for 3005 count elements with maximum frequency. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3010 Divide An Array Into Subarrays With Minimum Cost Iquick reference for 3010 divide an array into subarrays with minimum cost i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3014 Minimum Number Of Pushes To Type Word Iquick reference for 3014 minimum number of pushes to type word i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3019 Number Of Changing Keysquick reference for 3019 number of changing keys. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3024 Type Of Trianglequick reference for 3024 type of triangle. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3028 Ant On The Boundaryquick reference for 3028 ant on the boundary. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3033 Modify The Matrixquick reference for 3033 modify the matrix. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3038 Maximum Number Of Operations With The Same Score Iquick reference for 3038 maximum number of operations with the same score i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3042 Count Prefix And Suffix Pairs Iquick reference for 3042 count prefix and suffix pairs i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3046 Split The Arrayquick reference for 3046 split the array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3065 Minimum Operations To Exceed Threshold Value Iquick reference for 3065 minimum operations to exceed threshold value i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3069 Distribute Elements Into Two Arrays Iquick reference for 3069 distribute elements into two arrays i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3074 Apple Redistribution Into Boxesquick reference for 3074 apple redistribution into boxes. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3079 Find The Sum Of Encrypted Integersquick reference for 3079 find the sum of encrypted integers. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3083 Existence Of A Substring In A String And Its Reversequick reference for 3083 existence of a substring in a string and its reverse. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3090 Maximum Length Substring With Two Occurrencesquick reference for 3090 maximum length substring with two occurrences. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3095 Shortest Subarray With Or At Least K Iquick reference for 3095 shortest subarray with or at least k i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3099 Harshad Numberquick reference for 3099 harshad number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3105 Longest Strictly Increasing Or Strictly Decreasing Subarrayquick reference for 3105 longest strictly increasing or strictly decreasing subarray. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3110 Score Of A Stringquick reference for 3110 score of a string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3114 Latest Time You Can Obtain After Replacing Charactersquick reference for 3114 latest time you can obtain after replacing characters. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3120 Count The Number Of Special Characters Iquick reference for 3120 count the number of special characters i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3127 Make A Square With The Same Colorquick reference for 3127 make a square with the same color. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3131 Find The Integer Added To Array Iquick reference for 3131 find the integer added to array i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3136 Valid Wordquick reference for 3136 valid word. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3142 Check If Grid Satisfies Conditionsquick reference for 3142 check if grid satisfies conditions. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3146 Permutation Difference Between Two Stringsquick reference for 3146 permutation difference between two strings. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3151 Special Array Iquick reference for 3151 special array i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3158 Find The Xor Of Numbers Which Appear Twicequick reference for 3158 find the xor of numbers which appear twice. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3162 Find The Number Of Good Pairs Iquick reference for 3162 find the number of good pairs i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3168 Minimum Number Of Chairs In A Waiting Roomquick reference for 3168 minimum number of chairs in a waiting room. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3174 Clear Digitsquick reference for 3174 clear digits. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3178 Find The Child Who Has The Ball After K Secondsquick reference for 3178 find the child who has the ball after k seconds. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3184 Count Pairs That Form A Complete Day Iquick reference for 3184 count pairs that form a complete day i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3190 Find Minimum Operations To Make All Elements Divisible By Threequick reference for 3190 find minimum operations to make all elements divisible by three. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3194 Minimum Average Of Smallest And Largest Elementsquick reference for 3194 minimum average of smallest and largest elements. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3200 Maximum Height Of A Trianglequick reference for 3200 maximum height of a triangle. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3206 Alternating Groups Iquick reference for 3206 alternating groups i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3210 Find The Encrypted Stringquick reference for 3210 find the encrypted string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3216 Lexicographically Smallest String After A Swapquick reference for 3216 lexicographically smallest string after a swap. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3222 Find The Winning Player In Coin Gamequick reference for 3222 find the winning player in coin game. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3226 Number Of Bit Changes To Make Two Integers Equalquick reference for 3226 number of bit changes to make two integers equal. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3232 Find If Digit Game Can Be Wonquick reference for 3232 find if digit game can be won. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3238 Find The Number Of Winning Playersquick reference for 3238 find the number of winning players. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3242 Design Neighbor Sum Servicequick reference for 3242 design neighbor sum service. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3248 Snake In Matrixquick reference for 3248 snake in matrix. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3258 Count Substrings That Satisfy K Constraint Iquick reference for 3258 count substrings that satisfy k constraint i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3264 Final Array State After K Multiplication Operations Iquick reference for 3264 final array state after k multiplication operations i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3270 Find The Key Of The Numbersquick reference for 3270 find the key of the numbers. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3274 Check If Two Chessboard Squares Have The Same Colorquick reference for 3274 check if two chessboard squares have the same color. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3280 Convert Date To Binaryquick reference for 3280 convert date to binary. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3285 Find Indices Of Stable Mountainsquick reference for 3285 find indices of stable mountains. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3289 The Two Sneaky Numbers Of Digitvillequick reference for 3289 the two sneaky numbers of digitville. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3300 Minimum Element After Replacement With Digit Sumquick reference for 3300 minimum element after replacement with digit sum. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3304 Find The K Th Character In String Game Iquick reference for 3304 find the k th character in string game i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3314 Construct The Minimum Bitwise Array Iquick reference for 3314 construct the minimum bitwise array i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3318 Find X Sum Of All K Long Subarrays Iquick reference for 3318 find x sum of all k long subarrays i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3330 Find The Original Typed String Iquick reference for 3330 find the original typed string i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3340 Check Balanced Stringquick reference for 3340 check balanced string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3345 Smallest Divisible Digit Product Iquick reference for 3345 smallest divisible digit product i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3349 Adjacent Increasing Subarrays Detection Iquick reference for 3349 adjacent increasing subarrays detection i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3354 Make Array Elements Equal To Zeroquick reference for 3354 make array elements equal to zero. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3360 Stone Removal Gamequick reference for 3360 stone removal game. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3364 Minimum Positive Sum Subarrayquick reference for 3364 minimum positive sum subarray. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3370 Smallest Number With All Set Bitsquick reference for 3370 smallest number with all set bits. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3375 Minimum Operations To Make Array Values Equal To Kquick reference for 3375 minimum operations to make array values equal to k. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3379 Transformed Arrayquick reference for 3379 transformed array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3386 Button With Longest Push Timequick reference for 3386 button with longest push time. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3392 Count Subarrays Of Length Three With A Conditionquick reference for 3392 count subarrays of length three with a condition. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3396 Minimum Number Of Operations To Make Elements In Array Distinctquick reference for 3396 minimum number of operations to make elements in array distinct. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3402 Minimum Operations To Make Columns Strictly Increasingquick reference for 3402 minimum operations to make columns strictly increasing. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3407 Substring Matching Patternquick reference for 3407 substring matching pattern. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3411 Maximum Subarray With Equal Productsquick reference for 3411 maximum subarray with equal products. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3417 Zigzag Grid Traversal With Skipquick reference for 3417 zigzag grid traversal with skip. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3423 Maximum Difference Between Adjacent Elements In A Circular Arrayquick reference for 3423 maximum difference between adjacent elements in a circular array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3427 Sum Of Variable Length Subarraysquick reference for 3427 sum of variable length subarrays. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3432 Count Partitions With Even Sum Differencequick reference for 3432 count partitions with even sum difference. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3438 Find Valid Pair Of Adjacent Digits In Stringquick reference for 3438 find valid pair of adjacent digits in string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3442 Maximum Difference Between Even And Odd Frequency Iquick reference for 3442 maximum difference between even and odd frequency i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3452 Sum Of Good Numbersquick reference for 3452 sum of good numbers. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3456 Find Special Substring Of Length Kquick reference for 3456 find special substring of length k. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3461 Check If Digits Are Equal In String After Operations Iquick reference for 3461 check if digits are equal in string after operations i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3467 Transform Array By Parityquick reference for 3467 transform array by parity. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3471 Find The Largest Almost Missing Integerquick reference for 3471 find the largest almost missing integer. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3477 Fruits Into Baskets Iiquick reference for 3477 fruits into baskets ii. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3483 Unique 3 Digit Even Numbersquick reference for 3483 unique 3 digit even numbers. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3487 Maximum Unique Subarray Sum After Deletionquick reference for 3487 maximum unique subarray sum after deletion. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3492 Maximum Containers On A Shipquick reference for 3492 maximum containers on a ship. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3498 Reverse Degree Of A Stringquick reference for 3498 reverse degree of a string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3502 Minimum Cost To Reach Every Positionquick reference for 3502 minimum cost to reach every position. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3507 Minimum Pair Removal To Sort Array Iquick reference for 3507 minimum pair removal to sort array i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3512 Minimum Operations To Make Array Sum Divisible By Kquick reference for 3512 minimum operations to make array sum divisible by k. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3516 Find Closest Personquick reference for 3516 find closest person. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3536 Maximum Product Of Two Digitsquick reference for 3536 maximum product of two digits. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3541 Find Most Frequent Vowel And Consonantquick reference for 3541 find most frequent vowel and consonant. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3545 Minimum Deletions For At Most K Distinct Charactersquick reference for 3545 minimum deletions for at most k distinct characters. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3550 Smallest Index With Digit Sum Equal To Indexquick reference for 3550 smallest index with digit sum equal to index. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3560 Find Minimum Log Transportation Costquick reference for 3560 find minimum log transportation cost. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3582 Generate Tag For Video Captionquick reference for 3582 generate tag for video caption. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3591 Check If Any Element Has Prime Frequencyquick reference for 3591 check if any element has prime frequency. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3602 Hexadecimal And Hexatrigesimal Conversionquick reference for 3602 hexadecimal and hexatrigesimal conversion. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3606 Coupon Code Validatorquick reference for 3606 coupon code validator. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3622 Check Divisibility By Digit Sum And Productquick reference for 3622 check divisibility by digit sum and product. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3633 Earliest Finish Time For Land And Water Rides Iquick reference for 3633 earliest finish time for land and water rides i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3637 Trionic Array Iquick reference for 3637 trionic array i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3643 Flip Square Submatrix Verticallyquick reference for 3643 flip square submatrix vertically. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3658 Gcd Of Odd And Even Sumsquick reference for 3658 gcd of odd and even sums. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3663 Find The Least Frequent Digitquick reference for 3663 find the least frequent digit. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3668 Restore Finishing Orderquick reference for 3668 restore finishing order. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3674 Minimum Operations To Equalize Arrayquick reference for 3674 minimum operations to equalize array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3678 Smallest Absent Positive Greater Than Averagequick reference for 3678 smallest absent positive greater than average. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3683 Earliest Time To Finish One Taskquick reference for 3683 earliest time to finish one task. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3684 Maximize Sum Of At Most K Distinct Elementsquick reference for 3684 maximize sum of at most k distinct elements. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3688 Bitwise Or Of Even Numbers In An Arrayquick reference for 3688 bitwise or of even numbers in an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3692 Majority Frequency Charactersquick reference for 3692 majority frequency characters. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3697 Compute Decimal Representationquick reference for 3697 compute decimal representation. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3701 Compute Alternating Sumquick reference for 3701 compute alternating sum. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3707 Equal Score Substringsquick reference for 3707 equal score substrings. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3712 Sum Of Elements With Frequency Divisible By Kquick reference for 3712 sum of elements with frequency divisible by k. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3718 Smallest Missing Multiple Of Kquick reference for 3718 smallest missing multiple of k. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3726 Remove Zeros In Decimal Representationquick reference for 3726 remove zeros in decimal representation. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3731 Find Missing Elementsquick reference for 3731 find missing elements. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3736 Minimum Moves To Equal Array Elements Iiiquick reference for 3736 minimum moves to equal array elements iii. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3740 Minimum Distance Between Three Equal Elements Iquick reference for 3740 minimum distance between three equal elements i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3745 Maximize Expression Of Three Elementsquick reference for 3745 maximize expression of three elements. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3750 Minimum Number Of Flips To Reverse Binary Stringquick reference for 3750 minimum number of flips to reverse binary string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3754 Concatenate Non Zero Digits And Multiply By Sum Iquick reference for 3754 concatenate non zero digits and multiply by sum i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3769 Sort Integers By Binary Reflectionquick reference for 3769 sort integers by binary reflection. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3774 Absolute Difference Between Maximum And Minimum K Elementsquick reference for 3774 absolute difference between maximum and minimum k elements. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3783 Mirror Distance Of An Integerquick reference for 3783 mirror distance of an integer. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3794 Reverse String Prefixquick reference for 3794 reverse string prefix. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3798 Largest Even Numberquick reference for 3798 largest even number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3803 Count Residue Prefixesquick reference for 3803 count residue prefixes. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3813 Vowel Consonant Scorequick reference for 3813 vowel consonant score. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3823 Reverse Letters Then Special Characters In A Stringquick reference for 3823 reverse letters then special characters in a string. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3827 Count Monobit Integersquick reference for 3827 count monobit integers. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3833 Count Dominant Indicesquick reference for 3833 count dominant indices. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3838 Weighted Word Mappingquick reference for 3838 weighted word mapping. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3842 Toggle Light Bulbsquick reference for 3842 toggle light bulbs. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3852 Smallest Pair With Different Frequenciesquick reference for 3852 smallest pair with different frequencies. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3856 Trim Trailing Vowelsquick reference for 3856 trim trailing vowels. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3861 Minimum Capacity Boxquick reference for 3861 minimum capacity box. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3866 First Unique Even Elementquick reference for 3866 first unique even element. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3870 Count Commas In Rangequick reference for 3870 count commas in range. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3875 Construct Uniform Parity Array Iquick reference for 3875 construct uniform parity array i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3880 Minimum Absolute Difference Between Two Valuesquick reference for 3880 minimum absolute difference between two values. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3884 First Matching Character From Both Endsquick reference for 3884 first matching character from both ends. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3894 Traffic Signal Colorquick reference for 3894 traffic signal color. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3898 Find The Degree Of Each Vertexquick reference for 3898 find the degree of each vertex. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3903 Smallest Stable Index Iquick reference for 3903 smallest stable index i. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3908 Valid Digit Numberquick reference for 3908 valid digit number. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3912 Valid Elements In An Arrayquick reference for 3912 valid elements in an array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3917 Count Indices With Opposite Parityquick reference for 3917 count indices with opposite parity. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3921 Score Validatorquick reference for 3921 score validator. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3925 Concatenate Array With Reversequick reference for 3925 concatenate array with reverse. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3931 Check Adjacent Digit Differencesquick reference for 3931 check adjacent digit differences. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3936 Minimum Swaps To Move Zeros To Endquick reference for 3936 minimum swaps to move zeros to end. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3940 Limit Occurrences In Sorted Arrayquick reference for 3940 limit occurrences in sorted array. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3945 Digit Frequency Scorequick reference for 3945 digit frequency score. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3950 Exactly One Consecutive Set Bits Pairquick reference for 3950 exactly one consecutive set bits pair. more notes soon.
c++pythontypescript
•Unknown•C++, Python, TypeScript
3954 Sum Of Compatible Numbers In Range Iquick reference for 3954 sum of compatible numbers in range i. more notes soon.
c++pythontypescript
•Unknown•PHP
0002 Add Two Numbersquick reference for 0002 add two numbers. more notes soon.
php
•Unknown•PHP
0017 Letter Combinations Of A Phone Numberquick reference for 0017 letter combinations of a phone number. more notes soon.
php
•Unknown•Python
0063 Unique Paths Iiquick reference for 0063 unique paths ii. more notes soon.
python
•Unknown•Python
0064 Minimum Path Sumquick reference for 0064 minimum path sum. more notes soon.
python
•Unknown•TypeScript
0071 Simplify Pathquick reference for 0071 simplify path. more notes soon.
typescript
•Unknown•C
0073 Set Matrix Zeroesquick reference for 0073 set matrix zeroes. more notes soon.
c
•Unknown•TypeScript
0074 Search A 2d Matrixquick reference for 0074 search a 2d matrix. more notes soon.
typescript
•Unknown•Python
0075 Sort Colorsquick reference for 0075 sort colors. more notes soon.
python
•Unknown•Python
0147 Insertion Sort Listquick reference for 0147 insertion sort list. more notes soon.
python
•Unknown•C++
0148 Sort Listquick reference for 0148 sort list. more notes soon.
c++
•Unknown•PHP
0221 Maximal Squarequick reference for 0221 maximal square. more notes soon.
php
•Unknown•Python
0322 Coin Changequick reference for 0322 coin change. more notes soon.
python
•Unknown•TypeScript
0324 Wiggle Sort Iiquick reference for 0324 wiggle sort ii. more notes soon.
typescript
•Unknown•Python
0560 Subarray Sum Equals Kquick reference for 0560 subarray sum equals k. more notes soon.
python
•Unknown•Python
0739 Daily Temperaturesquick reference for 0739 daily temperatures. more notes soon.
python
•Unknown•TypeScript
0764 Largest Plus Signquick reference for 0764 largest plus sign. more notes soon.
typescript
•Unknown•TypeScript
0840 Magic Squares In Gridquick reference for 0840 magic squares in grid. more notes soon.
typescript
•Unknown•C++, Java
0874 Walking Robot Simulationquick reference for 0874 walking robot simulation. more notes soon.
c++java
•Unknown•Go
1314 Matrix Block Sumquick reference for 1314 matrix block sum. more notes soon.
go
•Unknown•SQL
1341 Movie Ratingquick reference for 1341 movie rating. more notes soon.
sql
•Unknown•C++
1895 Largest Magic Squarequick reference for 1895 largest magic square. more notes soon.
c++
•Unknown•TypeScript
1968 Array With Elements Not Equal To Average Of Neighborsquick reference for 1968 array with elements not equal to average of neighbors. more notes soon.
typescript
•Unknown•Rust
2201 Count Artifacts That Can Be Extractedquick reference for 2201 count artifacts that can be extracted. more notes soon.
rust
•Unknown•TypeScript
2428 Maximum Sum Of An Hourglassquick reference for 2428 maximum sum of an hourglass. more notes soon.
typescript
•Unknown•TypeScript
2943 Maximize Area Of Square Hole In Gridquick reference for 2943 maximize area of square hole in grid. more notes soon.
typescript
•Unknown•SQL
0262 Trips And Usersquick reference for 0262 trips and users. more notes soon.
sql
•Unknown•Python
0587 Erect The Fencequick reference for 0587 erect the fence. more notes soon.
python
•Unknown•SQL
0601 Human Traffic Of Stadiumquick reference for 0601 human traffic of stadium. more notes soon.
sql
•Unknown•Python
0741 Cherry Pickupquick reference for 0741 cherry pickup. more notes soon.
python
•Unknown•Python
0749 Contain Virusquick reference for 0749 contain virus. more notes soon.
python
•Unknown•Python
0753 Cracking The Safequick reference for 0753 cracking the safe. more notes soon.
python
•Unknown•Python
0757 Set Intersection Size At Least Twoquick reference for 0757 set intersection size at least two. more notes soon.
python
•Unknown•Python
0761 Special Binary Stringquick reference for 0761 special binary string. more notes soon.
python
•Unknown•Python
0768 Max Chunks To Make Sorted Iiquick reference for 0768 max chunks to make sorted ii. more notes soon.
python
•Unknown•Python
0770 Basic Calculator Ivquick reference for 0770 basic calculator iv. more notes soon.
python
•Unknown•Python
0778 Swim In Rising Waterquick reference for 0778 swim in rising water. more notes soon.
python
•Unknown•Python
0782 Transform To Chessboardquick reference for 0782 transform to chessboard. more notes soon.
python
•Unknown•Python
0793 Preimage Size Of Factorial Zeroes Functionquick reference for 0793 preimage size of factorial zeroes function. more notes soon.
python
•Unknown•Python
0798 Smallest Rotation With Highest Scorequick reference for 0798 smallest rotation with highest score. more notes soon.
python
•Unknown•Python
0805 Split Array With Same Averagequick reference for 0805 split array with same average. more notes soon.
python
•Unknown•Python
0810 Chalkboard Xor Gamequick reference for 0810 chalkboard xor game. more notes soon.
python
•Unknown•Python
0829 Consecutive Numbers Sumquick reference for 0829 consecutive numbers sum. more notes soon.
python
•Unknown•Python
0839 Similar String Groupsquick reference for 0839 similar string groups. more notes soon.
python
•Unknown•Python
0847 Shortest Path Visiting All Nodesquick reference for 0847 shortest path visiting all nodes. more notes soon.
python
•Unknown•Python
0850 Rectangle Area Iiquick reference for 0850 rectangle area ii. more notes soon.
python
•Unknown•Python
0854 K Similar Stringsquick reference for 0854 k similar strings. more notes soon.
python
•Unknown•Python
0857 Minimum Cost To Hire K Workersquick reference for 0857 minimum cost to hire k workers. more notes soon.
python
•Unknown•Python
0871 Minimum Number Of Refueling Stopsquick reference for 0871 minimum number of refueling stops. more notes soon.
python
•Unknown•Python
0887 Super Egg Dropquick reference for 0887 super egg drop. more notes soon.
python
•Unknown•Python
0902 Numbers At Most N Given Digit Setquick reference for 0902 numbers at most n given digit set. more notes soon.
python
•Unknown•Python
0906 Super Palindromesquick reference for 0906 super palindromes. more notes soon.
python
•Unknown•Python
0920 Number Of Music Playlistsquick reference for 0920 number of music playlists. more notes soon.
python
•Unknown•Python
0927 Three Equal Partsquick reference for 0927 three equal parts. more notes soon.
python
•Unknown•Python
0940 Distinct Subsequences Iiquick reference for 0940 distinct subsequences ii. more notes soon.
python
•Unknown•Python
0952 Largest Component Size By Common Factorquick reference for 0952 largest component size by common factor. more notes soon.
python
•Unknown•Python
0956 Tallest Billboardquick reference for 0956 tallest billboard. more notes soon.
python
•Unknown•Python
0959 Least Operators To Express Numberquick reference for 0959 least operators to express number. more notes soon.
python
•Unknown•Python
0960 Delete Columns To Make Sorted Iiiquick reference for 0960 delete columns to make sorted iii. more notes soon.
python
•Unknown•Python
0972 Equal Rational Numbersquick reference for 0972 equal rational numbers. more notes soon.
python
•Unknown•Python
0982 Triples With Bitwise And Equal To Zeroquick reference for 0982 triples with bitwise and equal to zero. more notes soon.
python
•Unknown•Python
0987 Vertical Order Traversal Of A Binary Treequick reference for 0987 vertical order traversal of a binary tree. more notes soon.
python
•Unknown•Python
1000 Minimum Cost To Merge Stonesquick reference for 1000 minimum cost to merge stones. more notes soon.
python
•Unknown•Python
1032 Stream Of Charactersquick reference for 1032 stream of characters. more notes soon.
python
•Unknown•Python
1044 Longest Duplicate Substringquick reference for 1044 longest duplicate substring. more notes soon.
python
•Unknown•TypeScript
Array With Elements Not Equal To Average Of Neighborsquick reference for array with elements not equal to average of neighbors. more notes soon.
typescript
•Unknown•Python
Candyquick reference for candy. more notes soon.
python
•Unknown•Erlang, PHP
Contains Duplicate 3quick reference for contains duplicate 3. more notes soon.
erlangphp
•Unknown•C++, Python
Convert Sorted Array To Binary Search Treequick reference for convert sorted array to binary search tree. more notes soon.
c++python
•Unknown•PHP
Count Of Range Sumquick reference for count of range sum. more notes soon.
php
•Unknown•TypeScript
Design Neighbor Sum Servicequick reference for design neighbor sum service. more notes soon.
typescript
•Unknown•PHP
First Missing Positivequick reference for first missing positive. more notes soon.
php
•Unknown•PHP
Largest Palindrome Productquick reference for largest palindrome product. more notes soon.
php
•Unknown•TypeScript
Largest Plus Signquick reference for largest plus sign. more notes soon.
typescript
•Unknown•TypeScript
Magic Squares In Gridquick reference for magic squares in grid. more notes soon.
typescript
•Unknown•PHP
Max Points On Linequick reference for max points on line. more notes soon.
php
•Unknown•PHP
Maximal Squarequick reference for maximal square. more notes soon.
php
•Unknown•TypeScript
Maximize Area Of Square Hole In Gridquick reference for maximize area of square hole in grid. more notes soon.
typescript
•Unknown•TypeScript
Maximum Sum Of An Hourglassquick reference for maximum sum of an hourglass. more notes soon.
typescript
•Unknown•Erlang, PHP
Median Of Two Sorted Arraysquick reference for median of two sorted arrays. more notes soon.
erlangphp
•Unknown•Python
Minimum Path Sumquick reference for minimum path sum. more notes soon.
python
•Unknown•PHP
Number Of Digit Onequick reference for number of digit one. more notes soon.
php
•Unknown•Python
Palindrome Pairsquick reference for palindrome pairs. more notes soon.
python
•Unknown•PHP
Regular Expression Matchingquick reference for regular expression matching. more notes soon.
php
•Unknown•Python
Reverse Pairsquick reference for reverse pairs. more notes soon.
python
•Unknown•PHP
Russian Doll Envelopesquick reference for russian doll envelopes. more notes soon.
php
•Unknown•TypeScript
Search A 2d Matrixquick reference for search a 2d matrix. more notes soon.
typescript
•Unknown•C
Set Matrix Zeroesquick reference for set matrix zeroes. more notes soon.
c
•Unknown•TypeScript
Simplify Pathquick reference for simplify path. more notes soon.
typescript
•Unknown•Python
Sliding Window Medianquick reference for sliding window median. more notes soon.
python
•Unknown•TypeScript
Stamping The Gridquick reference for stamping the grid. more notes soon.
typescript
•Unknown•PHP
Strong Password Checkerquick reference for strong password checker. more notes soon.
php
•Unknown•Python
Two Sumquick reference for two sum. more notes soon.
python
•Unknown•Python
Unique Paths Iiquick reference for unique paths ii. more notes soon.
python
•Unknown•PHP
Valid Numberquick reference for valid number. more notes soon.
php
•Unknown•TypeScript
Wiggle Sort Iiquick reference for wiggle sort ii. more notes soon.
typescript
•Unknown•Erlang, PHP
Wildcard Matchingquick reference for wildcard matching. more notes soon.
erlangphp
•Unknown•Python
Word Ladderquick reference for word ladder. more notes soon.
python
•Unknown•Erlang, PHP
Word Ladder 2quick reference for word ladder 2. more notes soon.
erlangphp
•Unknown•Python
Zuma Gamequick reference for zuma game. more notes soon.
python
•Hard•PHP
Word Ladder IIfind all shortest transformation sequences from beginWord to endWord using bfs with path tracking.
bfsbacktrackinggraph
•Unknown•Python
Insertion Sort Listquick reference for insertion sort list. more notes soon.
python
•Medium•TypeScript
Maximum Sum of an HourglassSliding a fixed hourglass mask through the grid and tracking the best sum with constant-time updates.
arraysprefix-sumgrid
•Medium•TypeScript
Maximize Area of Square Hole in GridBinary search on the side length of the square holes while counting rails removed along each axis.
binary-searchsortinggreedy
•Medium•TypeScript
String Compressioncompress string in-place by replacing consecutive characters with character and count using two pointers.
two-pointersstring
•Unknown•Python
Select Dataquick reference for select data. more notes soon.
python
•Hard•Python
Perfect Rectanglecheck if rectangles form exact rectangle without gaps or overlaps using corner counting and area validation.
geometryhashing
•Medium•TypeScript
Magic Squares in GridCheck every 3×3 window for the 1..9 magic square pattern using center and parity pruning.
gridbrute-forcehashing
•Unknown•C++
Largest Magic Squarequick reference for largest magic square. more notes soon.
c++
•Hard•TypeScript
Frog Jumpdetermine if a frog can cross a river using dfs with memoization, tracking position and last jump distance.
dynamic-programmingdfsmemoization
•Hard•PHP
Regular Expression Matchingmatch string against pattern with . and * using dynamic programming with memoization.
dynamic-programmingstring
•Hard•PHP
Contains Duplicate IIIcheck if there exist two indices with value difference ≤ valueDiff and index difference ≤ indexDiff using sliding window with sorted array.
sliding-windowbinary-searcharrays
•Unknown•Python
add two numbersadd two numbers
linked-list
•Medium•Python
letter combinations of a phone numberletter combinations of a phone number
stringbacktracking
•Hard•Python
median of two sorted arraysmedian of two sorted arrays
arraybinary-search
•Unknown•Python
17 solving leetcode problems17 solving leetcode problems
array
•Unknown•Python
18 solving leetcode problems part218 solving leetcode problems part2
linked-list
•Unknown•Python
leetcode introoverview of my leetcode writeups and plan
math
•Unknown•Python
basic calculatorbasic calculator
stringstackmathrecursion
•Unknown•Python
skyline problemskyline problem
treequeuesortingheap
•Unknown•Python
shortest palindromeshortest palindrome
arraytwo-pointersstringbacktrackingdesign
•Medium•Python
longest substring without repeating characterslongest substring without repeating characters
stringsliding-window
•Medium•Python
longest palindromic substringlongest palindromic substring
stringdynamic-programming
•Medium•Python
container with most watercontainer with most water
arraytwo-pointers
•Medium•Python
3sum3sum
arraytwo-pointers
•Medium•Python
remove nth node from end of listremove nth node from end of list
linked-listtwo-pointers
•Easy•Python
valid parenthesesvalid parentheses
stringstack
•Easy•Python
merge two sorted listsmerge two sorted lists
linked-list
•Medium•Python
generate parenthesesgenerate parentheses
stringbacktracking
•Hard•Python
merge k sorted listsmerge k sorted lists
linked-listheap
•Medium•Python
next permutationnext permutation
array
•Medium•Python
search in rotated sorted arraysearch in rotated sorted array
arraybinary-search
•Medium•Python
find first and last position of element in sorted arrayfind first and last position of element in sorted array
arraybinary-search
•Medium•Python
combination sumcombination sum
arraybacktracking
•Hard•Python
trapping rain watertrapping rain water
arraytwo-pointers
•Medium•Python
permutationspermutations
arraybacktracking
•Medium•Python
rotate imagerotate image
array
•Medium•Python
group anagramsgroup anagrams
hash-tablestring
•Medium•Python
maximum subarraymaximum subarray
arraydynamic-programming
•Unknown•Python
48 my leetcode journey48 my leetcode journey
arrayhash-tablelinked-listtwo-pointersstring
•Hard•TypeScript
critical connections in a networkcritical connections in a network
arraytreegraphstackmath
•Hard•TypeScript
read n characters given read4 ii call multiple timesread n characters given read4 ii call multiple times
arraystringqueuedesign
•Hard•TypeScript
sliding window maximumsliding window maximum
arraytreequeuesliding-windowheap
•Hard•SQL, C
trips and userstrips and users
string
•Hard•Python
integer to english wordsinteger to english words
stringrecursion
•Hard•PHP
expression add operatorsexpression add operators
arraystringdynamic-programmingbacktrackingstack
•Hard•Go
find median from data streamfind median from data stream
arraytreequeuesortingtrie
•Hard•Rust
serialize and deserialize binary treeserialize and deserialize binary tree
stringtreestackdesignrecursion
•Hard•Python
remove invalid parenthesesremove invalid parentheses
stringbacktrackinggreedyqueuedesign
•Hard•JavaScript
burst balloonsburst balloons
arraystringdynamic-programmingbacktrackinggreedy
•Hard•TypeScript
count of smaller numbers after selfcount of smaller numbers after self
arraybinary-searchtreemathsorting
•Hard•C
longest increasing path in a matrixlongest increasing path in a matrix
arraydynamic-programminggraphdfsbfs
•Hard•Python
patching arraypatching array
arraybinary-searchdynamic-programmingbacktrackinggreedy
•Hard•PHP
reconstruct itineraryreconstruct itinerary
arraystringbacktrackinggraphsorting
•Hard•Go
self crossingself crossing
arraygraphmath
•Hard•Rust
data stream as disjoint intervalsdata stream as disjoint intervals
arraylinked-listtreesortingdesign
•Hard•JavaScript
max sum of rectangle no larger than kmax sum of rectangle no larger than k
arraybinary-searchdynamic-programmingsliding-windowmath
•Hard•TypeScript
insert delete getrandom o1 duplicates allowedinsert delete getrandom o1 duplicates allowed
arraylinked-listtreemathtrie
•Hard•C
all oone data structureall oone data structure
arrayhash-tablelinked-liststringtree
•Hard•TypeScript
arithmetic slices ii subsequencearithmetic slices ii subsequence
arraydynamic-programmingbacktrackingstacksliding-window
•Hard•Python
Reverse Pairscount pairs where nums[i] > 2 * nums[j] and i < j using merge sort with counting during merge phase.
divide-and-conquermerge-sort
•Unknown•C++
Minimum Window Substringquick reference for minimum window substring. more notes soon.
c++
•Unknown•Rust
Count Artifacts That Can Be Extractedquick reference for count artifacts that can be extracted. more notes soon.
rust
•Unknown•Python
Get The Size Of A Dataframequick reference for get the size of a dataframe. more notes soon.
python
•Medium•TypeScript
Design Neighbor Sum Servicedesign a service to compute sums of adjacent and diagonal neighbors using prefix sums and linear search.
designmatrixprefix-sum
•Unknown•Python
Find Minimum In Rotated Sorted Array Iiquick reference for find minimum in rotated sorted array ii. more notes soon.
python
•Hard•PHP
Count of Range Sumcount subarrays with sum in range [lower, upper] using prefix sums and merge sort counting.
divide-and-conquerprefix-summerge-sort
•Hard•PHP
Wildcard Matchingmatch string against pattern with ? and * using dynamic programming.
dynamic-programmingstringgreedy
•Medium•Python
Minimum Path Sumfind minimum sum path from top-left to bottom-right using dynamic programming with space optimization.
dynamic-programmingmatrix
•Unknown•C++
Sort Listquick reference for sort list. more notes soon.
c++
•Medium•Python
Building H2Ocoordinate hydrogen and oxygen threads to form water molecules using semaphores and barrier synchronization.
concurrencythreading
•Unknown•Python
Create A Dataframe From Listquick reference for create a dataframe from list. more notes soon.
python
•Easy•Python
Two Sumfind two indices whose values sum to target using hash map for O(n) lookup.
hash-tablearrays
•Hard•PHP
First Missing Positivefind the smallest missing positive integer using array as hash table by placing each number at its correct index.
arrayshashing
•Hard•C
Trapping Rain Water IIcalculate trapped rainwater in 2d elevation map using min heap starting from boundary cells.
heapbfsmatrix
•Unknown•Python
Sort Colorsquick reference for sort colors. more notes soon.
python
•Unknown•Go
Matrix Block Sumquick reference for matrix block sum. more notes soon.
go
•Unknown•Erlang
Root Equals Sum Of Childrenquick reference for root equals sum of children. more notes soon.
erlang
•Hard•PHP
Russian Doll Envelopesfind maximum number of envelopes that can be nested using longest increasing subsequence on sorted envelopes.
dynamic-programmingbinary-searchsorting
•Medium•TypeScript
Simplify Pathnormalize unix-style file paths by handling . and .. components using a stack.
stackstring
•Unknown•Python
Display The First Three Rowsquick reference for display the first three rows. more notes soon.
python
•Unknown•PHP
Letter Cobinations Of A Phone Numberquick reference for letter cobinations of a phone number. more notes soon.
php