├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── KNOCKCATFUNDING.yml ├── .gitignore ├── 0001-two-sum ├── 0001-two-sum.cpp ├── NOTES.md └── README.md ├── 0001. Two sum.cpp ├── 0002. Add Two Numbers.cpp ├── 0003-longest-substring-without-repeating-characters ├── 0003-longest-substring-without-repeating-characters.cpp └── README.md ├── 0003. Longest Substring Without Repeating Characters.cpp ├── 0004-median-of-two-sorted-arrays ├── 0004-median-of-two-sorted-arrays.cpp ├── NOTES.md └── README.md ├── 0004. Median of Two Sorted Arrays.cpp ├── 0005-longest-palindromic-substring ├── 0005-longest-palindromic-substring.cpp ├── NOTES.md └── README.md ├── 0005. Longest Palindromic Substring.cpp ├── 0006-zigzag-conversion ├── 0006-zigzag-conversion.cpp └── README.md ├── 0007. Reverse Integer.cpp ├── 0008. String to Integer (atoi).cpp ├── 0009-palindrome-number ├── 0009-palindrome-number.cpp ├── NOTES.md └── README.md ├── 0009. Palindrome Number.cpp ├── 0011-container-with-most-water ├── 0011-container-with-most-water.cpp ├── NOTES.md └── README.md ├── 0011. Container With Most Water.cpp ├── 0012. Integer to Roman.cpp ├── 0013. Roman to Integer.cpp ├── 0014. Longest Common Prefix.cpp ├── 0015-3sum ├── 0015-3sum.cpp ├── NOTES.md └── README.md ├── 0015. 3Sum.cpp ├── 0016. 3Sum Closest.cpp ├── 0017-letter-combinations-of-a-phone-number ├── 0017-letter-combinations-of-a-phone-number.cpp ├── NOTES.md └── README.md ├── 0017. Letter Combinations of a Phone Number.cpp ├── 0018-4sum ├── 0018-4sum.cpp ├── NOTES.md └── README.md ├── 0018. 4Sum.cpp ├── 0019-remove-nth-node-from-end-of-list ├── 0019-remove-nth-node-from-end-of-list.cpp ├── NOTES.md └── README.md ├── 0019. Remove Nth Node From End of List.cpp ├── 0020-valid-parentheses ├── 0020-valid-parentheses.cpp ├── NOTES.md └── README.md ├── 0020. Valid Parentheses.cpp ├── 0021-merge-two-sorted-lists ├── 0021-merge-two-sorted-lists.cpp ├── NOTES.md └── README.md ├── 0021. Merge Two Sorted Lists.cpp ├── 0022-generate-parentheses ├── 0022-generate-parentheses.cpp └── README.md ├── 0022. Generate Parentheses.cpp ├── 0023-merge-k-sorted-lists ├── 0023-merge-k-sorted-lists.cpp ├── NOTES.md └── README.md ├── 0023. Merge k Sorted Lists.cpp ├── 0024. Swap Nodes in Pairs.cpp ├── 0025-reverse-nodes-in-k-group ├── 0025-reverse-nodes-in-k-group.cpp ├── NOTES.md └── README.md ├── 0026-remove-duplicates-from-sorted-array ├── 0026-remove-duplicates-from-sorted-array.cpp ├── NOTES.md └── README.md ├── 0026. Remove Duplicates from Sorted Array.cpp ├── 0027. Remove Element.cpp ├── 0028-find-the-index-of-the-first-occurrence-in-a-string ├── 0028-find-the-index-of-the-first-occurrence-in-a-string.cpp ├── NOTES.md └── README.md ├── 0028. Implement strStr().cpp ├── 0031-next-permutation ├── 0031-next-permutation.cpp ├── NOTES.md └── README.md ├── 0031. Next Permutation.cpp ├── 0033-search-in-rotated-sorted-array ├── 0033-search-in-rotated-sorted-array.cpp ├── NOTES.md └── README.md ├── 0033. Search in Rotated Sorted Array.cpp ├── 0034-find-first-and-last-position-of-element-in-sorted-array ├── 0034-find-first-and-last-position-of-element-in-sorted-array.cpp └── README.md ├── 0034. Find First and Last Position of Element in Sorted Array.cpp ├── 0035. Search Insert Position.cpp ├── 0036. Valid Sudoku.cpp ├── 0039. Combination Sum.cpp ├── 0040-combination-sum-ii ├── 0040-combination-sum-ii.cpp └── README.md ├── 0040. Combination Sum II.cpp ├── 0041-first-missing-positive ├── 0041-first-missing-positive.cpp └── README.md ├── 0041. First Missing Positive.cpp ├── 0042-trapping-rain-water ├── 0042-trapping-rain-water.cpp ├── NOTES.md └── README.md ├── 0044-wildcard-matching ├── 0044-wildcard-matching.cpp ├── NOTES.md └── README.md ├── 0046-permutations ├── 0046-permutations.cpp ├── NOTES.md └── README.md ├── 0046. Permutations.cpp ├── 0047. Permutations II.cpp ├── 0048-rotate-image ├── 0048-rotate-image.cpp ├── NOTES.md └── README.md ├── 0049-group-anagrams ├── 0049-group-anagrams.cpp ├── NOTES.md └── README.md ├── 0050-powx-n ├── 0050-powx-n.cpp ├── NOTES.md └── README.md ├── 0050. Pow(x, n).cpp ├── 0053-maximum-subarray ├── NOTES.md └── README.md ├── 0053. Maximum Subarray.cpp ├── 0054-spiral-matrix ├── 0054-spiral-matrix.cpp ├── NOTES.md └── README.md ├── 0054. Spiral Matrix.cpp ├── 0055-jump-game ├── 0055-jump-game.cpp ├── NOTES.md └── README.md ├── 0056-merge-intervals ├── 0056-merge-intervals.cpp └── README.md ├── 0056. Merge Intervals.cpp ├── 0057-insert-interval ├── 0057-insert-interval.cpp ├── NOTES.md └── README.md ├── 0058-length-of-last-word ├── 0058-length-of-last-word.cpp ├── NOTES.md └── README.md ├── 0058. Length of Last Word.cpp ├── 0059. Spiral Matrix II.cpp ├── 0060. Permutation Sequence.cpp ├── 0061. Rotate List.cpp ├── 0062-unique-paths ├── 0062-unique-paths.cpp ├── NOTES.md └── README.md ├── 0062. Unique Paths.cpp ├── 0063-unique-paths-ii ├── 0063-unique-paths-ii.cpp └── NOTES.md ├── 0066. Plus One.cpp ├── 0067-add-binary ├── 0067-add-binary.cpp ├── NOTES.md └── README.md ├── 0067. Add Binary.cpp ├── 0068-text-justification ├── 0068-text-justification.cpp └── README.md ├── 0069-sqrtx ├── 0069-sqrtx.cpp ├── NOTES.md └── README.md ├── 0069. Sqrt(x).cpp ├── 0070-climbing-stairs ├── 0070-climbing-stairs.cpp └── README.md ├── 0070. Climbing Stairs.cpp ├── 0071-simplify-path ├── 0071-simplify-path.cpp └── README.md ├── 0071. Simplify Path.cpp ├── 0072-edit-distance ├── 0072-edit-distance.cpp ├── NOTES.md └── README.md ├── 0073-set-matrix-zeroes ├── 0073-set-matrix-zeroes.cpp ├── NOTES.md └── README.md ├── 0073. Set Matrix Zeroes.cpp ├── 0074-search-a-2d-matrix ├── 0074-search-a-2d-matrix.cpp ├── NOTES.md └── README.md ├── 0074. Search a 2D Matrix.cpp ├── 0075-sort-colors ├── 0075-sort-colors.cpp ├── NOTES.md └── README.md ├── 0075. Sort Colors.cpp ├── 0076-minimum-window-substring ├── 0076-minimum-window-substring.cpp └── README.md ├── 0076. Minimum Window Substring.cpp ├── 0077-combinations ├── 0077-combinations.cpp └── NOTES.md ├── 0078-subsets ├── 0078-subsets.cpp ├── NOTES.md └── README.md ├── 0078. Subsets.cpp ├── 0079-word-search ├── 0079-word-search.cpp ├── NOTES.md └── README.md ├── 0080. Remove Duplicates from Sorted Array II.cpp ├── 0081-search-in-rotated-sorted-array-ii ├── 0081-search-in-rotated-sorted-array-ii.cpp └── NOTES.md ├── 0081. Search in Rotated Sorted Array II.cpp ├── 0082. Remove Duplicates from Sorted List II.cpp ├── 0083. Remove Duplicates from Sorted List.cpp ├── 0084-largest-rectangle-in-histogram ├── 0084-largest-rectangle-in-histogram.cpp ├── NOTES.md └── README.md ├── 0085-maximal-rectangle ├── 0085-maximal-rectangle.cpp ├── NOTES.md └── README.md ├── 0086-partition-list ├── 0086-partition-list.cpp ├── NOTES.md └── README.md ├── 0086. Partition List.cpp ├── 0087-scramble-string ├── 0087-scramble-string.cpp ├── NOTES.md └── README.md ├── 0088-merge-sorted-array ├── 0088-merge-sorted-array.cpp ├── NOTES.md └── README.md ├── 0088. Merge Sorted Array.cpp ├── 0090-subsets-ii ├── 0090-subsets-ii.cpp ├── NOTES.md └── README.md ├── 0091-decode-ways ├── 0091-decode-ways.cpp ├── NOTES.md └── README.md ├── 0092-reverse-linked-list-ii ├── 0092-reverse-linked-list-ii.cpp └── README.md ├── 0092. Reverse Linked List II.cpp ├── 0093-restore-ip-addresses ├── 0093-restore-ip-addresses.cpp ├── NOTES.md └── README.md ├── 0094-binary-tree-inorder-traversal ├── 0094-binary-tree-inorder-traversal.cpp ├── NOTES.md └── README.md ├── 0094. Binary Tree Inorder Traversal.cpp ├── 0095-unique-binary-search-trees-ii ├── 0095-unique-binary-search-trees-ii.cpp └── NOTES.md ├── 0096-unique-binary-search-trees ├── 0096-unique-binary-search-trees.cpp ├── NOTES.md └── README.md ├── 0097-interleaving-string ├── 0097-interleaving-string.cpp ├── NOTES.md └── README.md ├── 0097. Interleaving String.cpp ├── 0098. Validate Binary Search Tree.cpp ├── 0100-same-tree ├── 0100-same-tree.cpp ├── NOTES.md └── README.md ├── 0100. Same Tree.cpp ├── 0101-symmetric-tree ├── 0101-symmetric-tree.cpp ├── NOTES.md └── README.md ├── 0101. Symmetric Tree.cpp ├── 0102. Binary Tree Level Order Traversal.cpp ├── 0103-binary-tree-zigzag-level-order-traversal ├── 0103-binary-tree-zigzag-level-order-traversal.cpp └── README.md ├── 0104-maximum-depth-of-binary-tree ├── 0104-maximum-depth-of-binary-tree.cpp ├── NOTES.md └── README.md ├── 0104. Maximum Depth of Binary Tree.cpp ├── 0105-construct-binary-tree-from-preorder-and-inorder-traversal ├── 0105-construct-binary-tree-from-preorder-and-inorder-traversal.cpp └── README.md ├── 0106-construct-binary-tree-from-inorder-and-postorder-traversal └── README.md ├── 0108. Convert Sorted Array to Binary Search Tree.cpp ├── 0109-convert-sorted-list-to-binary-search-tree ├── 0109-convert-sorted-list-to-binary-search-tree.cpp └── README.md ├── 0109. Convert Sorted List to Binary Search Tree.cpp ├── 0110-balanced-binary-tree ├── 0110-balanced-binary-tree.cpp ├── NOTES.md └── README.md ├── 0110. Balanced Binary Tree.cpp ├── 0111. Minimum Depth of Binary Tree.cpp ├── 0112-path-sum ├── 0112-path-sum.cpp ├── NOTES.md └── README.md ├── 0112. Path Sum.cpp ├── 0113-path-sum-ii ├── 0113-path-sum-ii.cpp └── README.md ├── 0114. Flatten Binary Tree to Linked List.cpp ├── 0115-distinct-subsequences ├── 0115-distinct-subsequences.cpp ├── NOTES.md └── README.md ├── 0116. Populating Next Right Pointers in Each Node.cpp ├── 0117. Populating Next Right Pointers in Each Node II.cpp ├── 0118-pascals-triangle ├── 0118-pascals-triangle.cpp ├── NOTES.md └── README.md ├── 0118. Pascal's Triangle.cpp ├── 0119-pascals-triangle-ii ├── 0119-pascals-triangle-ii.cpp ├── NOTES.md └── README.md ├── 0119. Pascal's Triangle II.cpp ├── 0120. Triangle.cpp ├── 0121-best-time-to-buy-and-sell-stock ├── 0121-best-time-to-buy-and-sell-stock.cpp ├── NOTES.md └── README.md ├── 0121. Best Time to Buy and Sell Stock.cpp ├── 0122-best-time-to-buy-and-sell-stock-ii ├── 0122-best-time-to-buy-and-sell-stock-ii.cpp ├── NOTES.md └── README.md ├── 0122. Best Time to Buy and Sell Stock II.cpp ├── 0123-best-time-to-buy-and-sell-stock-iii ├── 0123-best-time-to-buy-and-sell-stock-iii.cpp ├── NOTES.md └── README.md ├── 0124-binary-tree-maximum-path-sum ├── 0124-binary-tree-maximum-path-sum.cpp └── NOTES.md ├── 0125. Valid Palindrome.cpp ├── 0126-word-ladder-ii ├── 0126-word-ladder-ii.cpp └── README.md ├── 0128-longest-consecutive-sequence ├── 0128-longest-consecutive-sequence.cpp ├── NOTES.md └── README.md ├── 0128. Longest Consecutive Sequence.cpp ├── 0129-sum-root-to-leaf-numbers ├── 0129-sum-root-to-leaf-numbers.cpp ├── NOTES.md └── README.md ├── 0129. Sum Root to Leaf Numbers.cpp ├── 0130-surrounded-regions ├── 0130-surrounded-regions.cpp └── README.md ├── 0131-palindrome-partitioning ├── 0131-palindrome-partitioning.cpp ├── NOTES.md └── README.md ├── 0132-palindrome-partitioning-ii ├── 0132-palindrome-partitioning-ii.cpp ├── NOTES.md └── README.md ├── 0133-clone-graph ├── 0133-clone-graph.cpp ├── NOTES.md └── README.md ├── 0133. Clone Graph.cpp ├── 0134-gas-station ├── 0134-gas-station.cpp └── README.md ├── 0135-candy ├── 0135-candy.cpp ├── NOTES.md └── README.md ├── 0135. Candy.cpp ├── 0136. Single Number.cpp ├── 0137-single-number-ii ├── 0137-single-number-ii.cpp ├── NOTES.md └── README.md ├── 0137. Single Number II.cpp ├── 0138-copy-list-with-random-pointer ├── 0138-copy-list-with-random-pointer.cpp ├── NOTES.md └── README.md ├── 0138. Copy List with Random Pointer.cpp ├── 0139-word-break ├── 0139-word-break.cpp ├── NOTES.md └── README.md ├── 0141-linked-list-cycle ├── 0141-linked-list-cycle.cpp ├── NOTES.md └── README.md ├── 0141. Linked List Cycle.cpp ├── 0142-linked-list-cycle-ii ├── 0142-linked-list-cycle-ii.cpp ├── NOTES.md └── README.md ├── 0142. Linked List Cycle II.cpp ├── 0143-reorder-list ├── 0143-reorder-list.cpp └── README.md ├── 0143. Reorder List.cpp ├── 0144 leetcode preorder traversal.cpp ├── 0144-binary-tree-preorder-traversal ├── 0144-binary-tree-preorder-traversal.cpp ├── NOTES.md └── README.md ├── 0145-binary-tree-postorder-traversal ├── 0145-binary-tree-postorder-traversal.cpp ├── NOTES.md └── README.md ├── 0145. Binary Tree Postorder Traversal.cpp ├── 0146-lru-cache ├── 0146-lru-cache.cpp ├── NOTES.md └── README.md ├── 0147. Insertion Sort List.cpp ├── 0148-sort-list ├── 0148-sort-list.cpp └── README.md ├── 0148. Sort List.cpp ├── 0149-max-points-on-a-line ├── 0149-max-points-on-a-line.cpp └── README.md ├── 0150-evaluate-reverse-polish-notation ├── 0150-evaluate-reverse-polish-notation.cpp ├── NOTES.md └── README.md ├── 0152-maximum-product-subarray ├── 0152-maximum-product-subarray.cpp ├── NOTES.md └── README.md ├── 0152. Maximum Product Subarray.cpp ├── 0153. Find Minimum in Rotated Sorted Array.cpp ├── 0154. Find Minimum in Rotated Sorted Array II.cpp ├── 0160-intersection-of-two-linked-lists └── README.md ├── 0160. Intersection of Two Linked Lists.cpp ├── 0162-find-peak-element ├── 0162-find-peak-element.cpp ├── NOTES.md └── README.md ├── 0162. Find Peak Element.cpp ├── 0165-compare-version-numbers ├── 0165-compare-version-numbers.cpp └── README.md ├── 0165. Compare Version Numbers.cpp ├── 0167. Two Sum II - Input Array Is Sorted.cpp ├── 0168-excel-sheet-column-title ├── 0168-excel-sheet-column-title.cpp ├── NOTES.md └── README.md ├── 0168. Excel Sheet Column Title.cpp ├── 0169-majority-element ├── 0169-majority-element.cpp ├── NOTES.md └── README.md ├── 0169. Majority Element.cpp ├── 0171. Excel Sheet Column Number.cpp ├── 0173. Binary Search Tree Iterator.cpp ├── 0179. Largest Number.cpp ├── 0187. Repeated DNA Sequences.cpp ├── 0189-rotate-array ├── 0189-rotate-array.cpp └── NOTES.md ├── 0189. Rotate Array.cpp ├── 0190. Reverse Bits.cpp ├── 0191. Number of 1 Bits.cpp ├── 0198-house-robber ├── 0198-house-robber.cpp ├── NOTES.md └── README.md ├── 0198. House Robber.cpp ├── 0199. Binary Tree Right Side View.cpp ├── 0200-number-of-islands ├── 0200-number-of-islands.cpp ├── NOTES.md └── README.md ├── 0201-bitwise-and-of-numbers-range ├── 0201-bitwise-and-of-numbers-range.cpp ├── NOTES.md └── README.md ├── 0202. Happy Number.cpp ├── 0203. Remove Linked List Elements.cpp ├── 0205-isomorphic-strings ├── 0205-isomorphic-strings.cpp ├── NOTES.md └── README.md ├── 0206-reverse-linked-list ├── 0206-reverse-linked-list.cpp └── NOTES.md ├── 0206. Reverse Linked List.cpp ├── 0207-course-schedule ├── 0207-course-schedule.cpp ├── NOTES.md └── README.md ├── 0207. Course Schedule.cpp ├── 0208-implement-trie-prefix-tree ├── 0208-implement-trie-prefix-tree.cpp ├── NOTES.md └── README.md ├── 0209-minimum-size-subarray-sum ├── 0209-minimum-size-subarray-sum.cpp ├── NOTES.md └── README.md ├── 0210-course-schedule-ii ├── 0210-course-schedule-ii.cpp ├── NOTES.md └── README.md ├── 0210. Course Schedule II.cpp ├── 0211-design-add-and-search-words-data-structure ├── 0211-design-add-and-search-words-data-structure.cpp └── README.md ├── 0214-shortest-palindrome ├── 0214-shortest-palindrome.cpp └── NOTES.md ├── 0215-kth-largest-element-in-an-array ├── 0215-kth-largest-element-in-an-array.cpp ├── NOTES.md └── README.md ├── 0215. Kth Largest Element in an Array.cpp ├── 0216. Combination Sum III.cpp ├── 0217. Contains Duplicate.cpp ├── 0221-maximal-square ├── 0221-maximal-square.cpp ├── NOTES.md └── README.md ├── 0225-implement-stack-using-queues ├── 0225-implement-stack-using-queues.cpp ├── NOTES.md └── README.md ├── 0225. Implement Stack using Queues.cpp ├── 0226-invert-binary-tree ├── 0226-invert-binary-tree.cpp ├── NOTES.md └── README.md ├── 0226. Invert Binary Tree.cpp ├── 0228-summary-ranges ├── 0228-summary-ranges.cpp ├── NOTES.md └── README.md ├── 0228. Summary Ranges.cpp ├── 0229. Majority Element II.cpp ├── 0230. Kth Smallest Element in a BST.cpp ├── 0231-power-of-two ├── 0231-power-of-two.cpp ├── NOTES.md └── README.md ├── 0231. Power of Two.cpp ├── 0232-implement-queue-using-stacks ├── 0232-implement-queue-using-stacks.cpp ├── NOTES.md └── README.md ├── 0234-palindrome-linked-list ├── 0234-palindrome-linked-list.cpp └── README.md ├── 0234. Palindrome Linked List.cpp ├── 0235. Lowest Common Ancestor of a Binary Search Tree.cpp ├── 0236-lowest-common-ancestor-of-a-binary-tree ├── 0236-lowest-common-ancestor-of-a-binary-tree.cpp ├── NOTES.md └── README.md ├── 0236. Lowest Common Ancestor of a Binary Tree.cpp ├── 0237-delete-node-in-a-linked-list ├── 0237-delete-node-in-a-linked-list.cpp ├── NOTES.md └── README.md ├── 0237. Delete Node in a Linked List.cpp ├── 0238-product-of-array-except-self ├── 0238-product-of-array-except-self.cpp └── README.md ├── 0239-sliding-window-maximum ├── 0239-sliding-window-maximum.cpp ├── NOTES.md └── README.md ├── 0240. Search a 2D Matrix II.cpp ├── 0242-valid-anagram ├── 0242-valid-anagram.cpp ├── NOTES.md └── README.md ├── 0242. Valid Anagram.cpp ├── 0257. Binary Tree Paths.cpp ├── 0258-add-digits ├── 0258-add-digits.cpp ├── NOTES.md └── README.md ├── 0258. Add Digits.cpp ├── 0260-single-number-iii ├── 0260-single-number-iii.cpp └── README.md ├── 0260. Single Number III.cpp ├── 0263. Ugly Number.cpp ├── 0264-ugly-number-ii ├── 0264-ugly-number-ii.cpp └── README.md ├── 0264. Ugly Number II.cpp ├── 0268-missing-number ├── 0268-missing-number.cpp ├── NOTES.md └── README.md ├── 0268. Missing Number.cpp ├── 0273-integer-to-english-words ├── 0273-integer-to-english-words.cpp └── README.md ├── 0278. First Bad Version.cpp ├── 0279-perfect-squares ├── 0279-perfect-squares.cpp ├── NOTES.md └── README.md ├── 0283-move-zeroes ├── 0283-move-zeroes.cpp ├── NOTES.md └── README.md ├── 0283. Move Zeroes.cpp ├── 0284. Peeking Iterator.cpp ├── 0287-find-the-duplicate-number ├── 0287-find-the-duplicate-number.cpp ├── NOTES.md └── README.md ├── 0287. Find the Duplicate Number.cpp ├── 0289-game-of-life ├── 0289-game-of-life.cpp ├── NOTES.md └── README.md ├── 0289. Game of Life.cpp ├── 0290-word-pattern ├── 0290-word-pattern.cpp ├── NOTES.md └── README.md ├── 0290. Word Pattern.cpp ├── 0292. Nim Game.cpp ├── 0295-find-median-from-data-stream ├── 0295-find-median-from-data-stream.cpp └── README.md ├── 0299. Bulls and Cows.cpp ├── 0300-longest-increasing-subsequence ├── 0300-longest-increasing-subsequence.cpp ├── NOTES.md └── README.md ├── 0300. Longest Increasing Subsequence.cpp ├── 0304. Range Sum Query 2D - Immutable.cpp ├── 0307-range-sum-query-mutable ├── 0307-range-sum-query-mutable.cpp └── NOTES.md ├── 0307. Range Sum Query - Mutable.cpp ├── 0309-best-time-to-buy-and-sell-stock-with-cooldown ├── 0309-best-time-to-buy-and-sell-stock-with-cooldown.cpp ├── NOTES.md └── README.md ├── 0310-minimum-height-trees ├── 0310-minimum-height-trees.cpp └── README.md ├── 0312-burst-balloons ├── 0312-burst-balloons.cpp ├── NOTES.md └── README.md ├── 0316. Remove Duplicate Letters.cpp ├── 0318. Maximum Product of Word Lengths.cpp ├── 0319-bulb-switcher ├── 0319-bulb-switcher.cpp └── README.md ├── 0322-coin-change ├── 0322-coin-change.cpp ├── NOTES.md └── README.md ├── 0322. Coin Change.cpp ├── 0324-wiggle-sort-ii ├── 0324-wiggle-sort-ii.cpp ├── NOTES.md └── README.md ├── 0326. Power of Three.cpp ├── 0328. Odd Even Linked List.cpp ├── 0330-patching-array ├── 0330-patching-array.cpp └── README.md ├── 0332-reconstruct-itinerary ├── 0332-reconstruct-itinerary.cpp └── README.md ├── 0334. Increasing Triplet Subsequence.cpp ├── 0338-counting-bits ├── 0338-counting-bits.cpp ├── NOTES.md └── README.md ├── 0338. Counting Bits.cpp ├── 0341-flatten-nested-list-iterator ├── 0341-flatten-nested-list-iterator.cpp ├── NOTES.md └── README.md ├── 0341. Flatten Nested List Iterator.cpp ├── 0342-power-of-four ├── 0342-power-of-four.cpp ├── NOTES.md └── README.md ├── 0342. Power of Four.cpp ├── 0343-integer-break ├── 0343-integer-break.cpp ├── NOTES.md └── README.md ├── 0344-reverse-string ├── 0344-reverse-string.cpp ├── NOTES.md └── README.md ├── 0344. Reverse String.cpp ├── 0345. Reverse Vowels of a String.cpp ├── 0347. Top K Frequent Elements.cpp ├── 0349-intersection-of-two-arrays ├── 0349-intersection-of-two-arrays.cpp ├── NOTES.md └── README.md ├── 0349. Intersection of Two Arrays.cpp ├── 0350-intersection-of-two-arrays-ii ├── 0350-intersection-of-two-arrays-ii.cpp └── README.md ├── 0350. Intersection of Two Arrays II.cpp ├── 0352-data-stream-as-disjoint-intervals ├── 0352-data-stream-as-disjoint-intervals.cpp └── README.md ├── 0354-russian-doll-envelopes ├── NOTES.md └── README.md ├── 0354. Russian Doll Envelopes.cpp ├── 0367. Valid Perfect Square.cpp ├── 0368-largest-divisible-subset ├── 0368-largest-divisible-subset.cpp └── README.md ├── 0371. Sum of Two Integers.cpp ├── 0372. Super Pow.cpp ├── 0373-find-k-pairs-with-smallest-sums ├── 0373-find-k-pairs-with-smallest-sums.cpp └── README.md ├── 0374. Guess Number Higher or Lower.cpp ├── 0375. Guess Number Higher or Lower II.cpp ├── 0376. Wiggle Subsequence.cpp ├── 0377-combination-sum-iv ├── 0377-combination-sum-iv.cpp ├── NOTES.md └── README.md ├── 0377. Combination Sum IV.cpp ├── 0380-insert-delete-getrandom-o1 ├── 0380-insert-delete-getrandom-o1.cpp ├── NOTES.md └── README.md ├── 0382-linked-list-random-node ├── 0382-linked-list-random-node.cpp └── README.md ├── 0384-shuffle-an-array ├── 0384-shuffle-an-array.cpp └── NOTES.md ├── 0384. Shuffle an Array.cpp ├── 0387-first-unique-character-in-a-string ├── 0387-first-unique-character-in-a-string.cpp ├── NOTES.md └── README.md ├── 0387. First Unique Character in a String.cpp ├── 0389-find-the-difference ├── 0389-find-the-difference.java ├── NOTES.md └── README.md ├── 0389. Find the Difference.cpp ├── 0392-is-subsequence ├── 0392-is-subsequence.java ├── NOTES.md └── README.md ├── 0392. Is Subsequence.cpp ├── 0394. Decode String.cpp ├── 0398. Random Pick Index.cpp ├── 0399-evaluate-division ├── 0399-evaluate-division.cpp └── README.md ├── 0402-remove-k-digits ├── 0402-remove-k-digits.cpp ├── NOTES.md └── README.md ├── 0402. Remove K Digits.cpp ├── 0403-frog-jump ├── 0403-frog-jump.cpp ├── NOTES.md └── README.md ├── 0404-sum-of-left-leaves ├── 0404-sum-of-left-leaves.cpp └── README.md ├── 0406. Queue Reconstruction by Height.cpp ├── 0409-longest-palindrome ├── 0409-longest-palindrome.cpp ├── NOTES.md └── README.md ├── 0409. Longest Palindrome.cpp ├── 0410-split-array-largest-sum ├── 0410-split-array-largest-sum.cpp ├── NOTES.md └── README.md ├── 0410. Split Array Largest Sum.cpp ├── 0412. Fizz Buzz.cpp ├── 0413. Arithmetic Slices.cpp ├── 0414. Third Maximum Number.cpp ├── 0415. Add Strings.cpp ├── 0416. Partition Equal Subset Sum.cpp ├── 0421. Maximum XOR of Two Numbers in an Array.cpp ├── 0427-construct-quad-tree ├── 0427-construct-quad-tree.cpp └── README.md ├── 0435-non-overlapping-intervals ├── 0435-non-overlapping-intervals.cpp ├── NOTES.md └── README.md ├── 0438. Find All Anagrams in a String.cpp ├── 0441. Arranging Coins.cpp ├── 0442-find-all-duplicates-in-an-array ├── 0442-find-all-duplicates-in-an-array.cpp ├── NOTES.md └── README.md ├── 0442. Find All Duplicates in an Array.cpp ├── 0443-string-compression ├── 0443-string-compression.cpp └── README.md ├── 0445-add-two-numbers-ii ├── 0445-add-two-numbers-ii.cpp ├── NOTES.md └── README.md ├── 0446-arithmetic-slices-ii-subsequence ├── 0446-arithmetic-slices-ii-subsequence.cpp ├── NOTES.md └── README.md ├── 0448. Find All Numbers Disappeared in an Array.cpp ├── 0451-sort-characters-by-frequency ├── 0451-sort-characters-by-frequency.cpp ├── NOTES.md └── README.md ├── 0452-minimum-number-of-arrows-to-burst-balloons ├── 0452-minimum-number-of-arrows-to-burst-balloons.cpp ├── NOTES.md └── README.md ├── 0454. 4Sum II.cpp ├── 0455-assign-cookies ├── 0455-assign-cookies.cpp └── README.md ├── 0455. Assign Cookies.cpp ├── 0456-132-pattern ├── 0456-132-pattern.cpp ├── NOTES.md └── README.md ├── 0456. 132 Pattern.cpp ├── 0458. Poor Pigs.cpp ├── 0459-repeated-substring-pattern ├── 0459-repeated-substring-pattern.cpp ├── NOTES.md └── README.md ├── 0460-lfu-cache ├── 0460-lfu-cache.cpp └── README.md ├── 0461. Hamming Distance.cpp ├── 0462-minimum-moves-to-equal-array-elements-ii ├── 0462-minimum-moves-to-equal-array-elements-ii.cpp ├── NOTES.md └── README.md ├── 0462. Minimum Moves to Equal Array Elements II.cpp ├── 0463. Island Perimeter.cpp ├── 0472-concatenated-words ├── 0472-concatenated-words.cpp └── README.md ├── 0473. Matchsticks to Square.cpp ├── 0476-number-complement ├── 0476-number-complement.cpp └── README.md ├── 0476. Number Complement.cpp ├── 0485. Max Consecutive Ones.cpp ├── 0486-predict-the-winner ├── 0486-predict-the-winner.cpp └── README.md ├── 0491-non-decreasing-subsequences ├── 0491-non-decreasing-subsequences.cpp ├── NOTES.md └── README.md ├── 0493-reverse-pairs ├── 0493-reverse-pairs.cpp ├── NOTES.md └── README.md ├── 0494. Target Sum.cpp ├── 0495. Teemo Attacking.cpp ├── 0496. Next Greater Element I.cpp ├── 0501-find-mode-in-binary-search-tree ├── 0501-find-mode-in-binary-search-tree.cpp └── README.md ├── 0501. Find Mode in Binary Search Tree.cpp ├── 0502-ipo ├── 0502-ipo.cpp ├── NOTES.md └── README.md ├── 0504. Base 7.cpp ├── 0507. Perfect Number.cpp ├── 0508-most-frequent-subtree-sum ├── 0508-most-frequent-subtree-sum.cpp ├── NOTES.md └── README.md ├── 0509-fibonacci-number ├── 0509-fibonacci-number.cpp ├── NOTES.md └── README.md ├── 0509. Fibonacci Number.cpp ├── 0513-find-bottom-left-tree-value ├── 0513-find-bottom-left-tree-value.cpp ├── NOTES.md └── README.md ├── 0514-freedom-trail ├── 0514-freedom-trail.cpp ├── NOTES.md └── README.md ├── 0515-find-largest-value-in-each-tree-row ├── 0515-find-largest-value-in-each-tree-row.cpp ├── NOTES.md └── README.md ├── 0516-longest-palindromic-subsequence ├── 0516-longest-palindromic-subsequence.cpp └── README.md ├── 0516. Longest Palindromic Subsequence.cpp ├── 0518-coin-change-ii ├── 0518-coin-change-ii.cpp ├── NOTES.md └── README.md ├── 0518. Coin Change 2.cpp ├── 0520-detect-capital ├── 0520-detect-capital.cpp ├── NOTES.md └── README.md ├── 0520. Detect Capital.cpp ├── 0523-continuous-subarray-sum ├── 0523-continuous-subarray-sum.cpp ├── NOTES.md └── README.md ├── 0525-contiguous-array ├── 0525-contiguous-array.cpp └── NOTES.md ├── 0525. Contiguous Array.cpp ├── 0530-minimum-absolute-difference-in-bst ├── 0530-minimum-absolute-difference-in-bst.cpp └── README.md ├── 0530. Minimum Absolute Difference in BST.cpp ├── 0532. K-diff Pairs in an Array.cpp ├── 0535. Encode and Decode TinyURL.cpp ├── 0538. Convert BST to Greater Tree.cpp ├── 0541. Reverse String II.cpp ├── 0542-01-matrix ├── 0542-01-matrix.cpp ├── NOTES.md └── README.md ├── 0543-diameter-of-binary-tree ├── 0543-diameter-of-binary-tree.cpp ├── NOTES.md └── README.md ├── 0547-number-of-provinces ├── 0547-number-of-provinces.cpp ├── NOTES.md └── README.md ├── 0551. Student Attendance Record I.cpp ├── 0552-student-attendance-record-ii ├── 0552-student-attendance-record-ii.cpp └── NOTES.md ├── 0556-next-greater-element-iii ├── 0556-next-greater-element-iii.cpp └── README.md ├── 0557-reverse-words-in-a-string-iii ├── 0557-reverse-words-in-a-string-iii.cpp ├── NOTES.md └── README.md ├── 0557. Reverse Words in a String III.cpp ├── 0560-subarray-sum-equals-k ├── 0560-subarray-sum-equals-k.cpp ├── NOTES.md └── README.md ├── 0560. Subarray Sum Equals K.cpp ├── 0561. Array Partition I.cpp ├── 0564-find-the-closest-palindrome ├── 0564-find-the-closest-palindrome.cpp ├── NOTES.md └── README.md ├── 0567-permutation-in-string ├── 0567-permutation-in-string.cpp └── README.md ├── 0567. Permutation in String.cpp ├── 0575. Distribute Candi.cpp ├── 0576-out-of-boundary-paths ├── 0576-out-of-boundary-paths.cpp ├── NOTES.md └── README.md ├── 0576. Out of Boundary Paths.cpp ├── 0581. Shortest Unsorted Continuous Subarray.cpp ├── 0583. Delete Operation for Two Strings.cpp ├── 0584-find-customer-referee ├── 0584-find-customer-referee.sql ├── NOTES.md └── README.md ├── 0589. N-ary Tree Preorder Traversal. N-ary Tree Preorder Traversal.cpp ├── 0590-n-ary-tree-postorder-traversal ├── 0590-n-ary-tree-postorder-traversal.cpp ├── NOTES.md └── README.md ├── 0590. N-ary Tree Postorder Traversal.cpp ├── 0592-fraction-addition-and-subtraction ├── 0592-fraction-addition-and-subtraction.cpp └── README.md ├── 0593. Valid Square.cpp ├── 0595-big-countries ├── 0595-big-countries.sql └── NOTES.md ├── 0599. Minimum Index Sum of Two Lists.cpp ├── 0605. Can Place Flowers.cpp ├── 0606-construct-string-from-binary-tree ├── 0606-construct-string-from-binary-tree.cpp ├── NOTES.md └── README.md ├── 0617. Merge Two Binary Trees.cpp ├── 0621-task-scheduler ├── 0621-task-scheduler.cpp └── README.md ├── 0623-add-one-row-to-tree ├── 0623-add-one-row-to-tree.cpp └── README.md ├── 0624-maximum-distance-in-arrays ├── 0624-maximum-distance-in-arrays.cpp └── README.md ├── 0628-maximum-product-of-three-numbers ├── 0628-maximum-product-of-three-numbers.cpp ├── NOTES.md └── README.md ├── 0628. Maximum Product of Three Numbers.cpp ├── 0629-k-inverse-pairs-array ├── 0629-k-inverse-pairs-array.cpp └── README.md ├── 0629. K Inverse Pairs Array.cpp ├── 0633-sum-of-square-numbers ├── 0633-sum-of-square-numbers.cpp ├── NOTES.md └── README.md ├── 0633. Sum of Square Numbers.cpp ├── 0645-set-mismatch ├── 0645-set-mismatch.cpp ├── NOTES.md └── README.md ├── 0645. Set Mismatch.cpp ├── 0646-maximum-length-of-pair-chain ├── 0646-maximum-length-of-pair-chain.cpp ├── NOTES.md └── README.md ├── 0647-palindromic-substrings ├── 0647-palindromic-substrings.cpp └── README.md ├── 0647. Palindromic Substrings.cpp ├── 0648-replace-words ├── 0648-replace-words.cpp ├── NOTES.md └── README.md ├── 0649-dota2-senate ├── 0649-dota2-senate.cpp └── NOTES.md ├── 0650-2-keys-keyboard ├── 0650-2-keys-keyboard.cpp ├── NOTES.md └── README.md ├── 0652-find-duplicate-subtrees ├── 0652-find-duplicate-subtrees.cpp └── README.md ├── 0652. Find Duplicate Subtrees.cpp ├── 0653. Two Sum IV - Input is a BST.cpp ├── 0654. Maximum Binary Tree.cpp ├── 0661-image-smoother ├── 0661-image-smoother.cpp └── README.md ├── 0662-maximum-width-of-binary-tree ├── 0662-maximum-width-of-binary-tree.cpp ├── NOTES.md └── README.md ├── 0662. Maximum Width of Binary Tree.cpp ├── 0664-strange-printer ├── 0664-strange-printer.cpp ├── NOTES.md └── README.md ├── 0665. Non-decreasing Array.cpp ├── 0671. Second Minimum Node In a Binary Tree.cpp ├── 0673-number-of-longest-increasing-subsequence ├── 0673-number-of-longest-increasing-subsequence.cpp ├── NOTES.md └── README.md ├── 0674. Longest Continuous Increasing Subsequence.cpp ├── 0678-valid-parenthesis-string ├── NOTES.md └── README.md ├── 0680. Valid Palindrome II.cpp ├── 0682. Baseball Game.cpp ├── 0684-redundant-connection ├── 0684-redundant-connection.cpp ├── NOTES.md └── README.md ├── 0688-knight-probability-in-chessboard ├── 0688-knight-probability-in-chessboard.cpp └── README.md ├── 0690. Employee Importance.cpp ├── 0692-top-k-frequent-words ├── 0692-top-k-frequent-words.cpp └── README.md ├── 0695. Max Area of Island.cpp ├── 0696. Count Binary Substrings.cpp ├── 0698-partition-to-k-equal-sum-subsets ├── 0698-partition-to-k-equal-sum-subsets.cpp ├── NOTES.md └── README.md ├── 0700. Search in a Binary Search Tree.cpp ├── 0701. Insert into a Binary Search Tree.cpp ├── 0703-kth-largest-element-in-a-stream ├── 0703-kth-largest-element-in-a-stream.cpp ├── NOTES.md └── README.md ├── 0703. Kth Largest Element in a Stream.cpp ├── 0704-binary-search ├── 0704-binary-search.cpp └── README.md ├── 0704. Binary Search.cpp ├── 0705-design-hashset ├── 0705-design-hashset.cpp ├── NOTES.md └── README.md ├── 0705. Design HashSet.cpp ├── 0706-design-hashmap ├── 0706-design-hashmap.cpp └── README.md ├── 0706. Design HashMap.cpp ├── 0709. To Lower Case.cpp ├── 0712-minimum-ascii-delete-sum-for-two-strings ├── 0712-minimum-ascii-delete-sum-for-two-strings.cpp ├── NOTES.md └── README.md ├── 0713-subarray-product-less-than-k ├── 0713-subarray-product-less-than-k.cpp ├── NOTES.md └── README.md ├── 0714-best-time-to-buy-and-sell-stock-with-transaction-fee ├── 0714-best-time-to-buy-and-sell-stock-with-transaction-fee.cpp ├── NOTES.md └── README.md ├── 0719-find-k-th-smallest-pair-distance ├── 0719-find-k-th-smallest-pair-distance.cpp ├── NOTES.md └── README.md ├── 0720-longest-word-in-dictionary ├── 0720-longest-word-in-dictionary.cpp └── NOTES.md ├── 0721-accounts-merge ├── 0721-accounts-merge.cpp ├── NOTES.md └── README.md ├── 0724. Find Pivot Index.cpp ├── 0725-split-linked-list-in-parts ├── 0725-split-linked-list-in-parts.cpp ├── NOTES.md └── README.md ├── 0728. Self Dividing Numbers.cpp ├── 0729. My Calendar I.cpp ├── 0733. Flood Fill.cpp ├── 0735-asteroid-collision ├── 0735-asteroid-collision.cpp ├── NOTES.md └── README.md ├── 0735. Asteroid Collision.cpp ├── 0739-daily-temperatures ├── 0739-daily-temperatures.cpp ├── NOTES.md └── README.md ├── 0740. Delete and Earn.cpp ├── 0743-network-delay-time ├── 0743-network-delay-time.cpp └── README.md ├── 0743. Network Delay Time.cpp ├── 0744-find-smallest-letter-greater-than-target └── README.md ├── 0744. Find Smallest Letter Greater Than Target.cpp ├── 0745. Prefix and Suffix Search.cpp ├── 0746-min-cost-climbing-stairs ├── 0746-min-cost-climbing-stairs.cpp ├── NOTES.md └── README.md ├── 0746. Min Cost Climbing Stairs.cpp ├── 0747. Largest Number At Least Twice of Others.cpp ├── 0752-open-the-lock ├── 0752-open-the-lock.cpp └── README.md ├── 0763. Partition Labels.cpp ├── 0766. Toeplitz Matrix.cpp ├── 0767-reorganize-string ├── 0767-reorganize-string.cpp ├── NOTES.md └── README.md ├── 0771. Jewels and Stones.cpp ├── 0777. Swap Adjacent in LR String.cpp ├── 0783-minimum-distance-between-bst-nodes ├── 0783-minimum-distance-between-bst-nodes.cpp ├── NOTES.md └── README.md ├── 0785-is-graph-bipartite ├── 0785-is-graph-bipartite.cpp └── NOTES.md ├── 0785. Is Graph Bipartite.cpp ├── 0786-k-th-smallest-prime-fraction ├── 0786-k-th-smallest-prime-fraction.cpp └── NOTES.md ├── 0787-cheapest-flights-within-k-stops ├── 0787-cheapest-flights-within-k-stops.cpp ├── NOTES.md └── README.md ├── 0790-domino-and-tromino-tiling ├── 0790-domino-and-tromino-tiling.cpp └── README.md ├── 0791-custom-sort-string ├── 0791-custom-sort-string.cpp ├── NOTES.md └── README.md ├── 0792. Number of Matching Subsequences.cpp ├── 0797-all-paths-from-source-to-target ├── 0797-all-paths-from-source-to-target.cpp └── README.md ├── 0799. Champagne Tower.cpp ├── 0802-find-eventual-safe-states ├── 0802-find-eventual-safe-states.cpp ├── NOTES.md └── README.md ├── 0807. Max Increase to Keep City Skyline.cpp ├── 0808-soup-servings └── README.md ├── 0812. Largest Triangle Area.cpp ├── 0820. Short Encoding of Words.cpp ├── 0823-binary-trees-with-factors ├── 0823-binary-trees-with-factors.cpp ├── NOTES.md └── README.md ├── 0823. Binary Trees With Factors.cpp ├── 0826-most-profit-assigning-work ├── 0826-most-profit-assigning-work.cpp ├── NOTES.md └── README.md ├── 0827-making-a-large-island ├── 0827-making-a-large-island.cpp ├── NOTES.md └── README.md ├── 0833. Find And Replace in String.cpp ├── 0834-sum-of-distances-in-tree ├── 0834-sum-of-distances-in-tree.cpp ├── NOTES.md └── README.md ├── 0836. Rectangle Overlap.cpp ├── 0837-new-21-game └── README.md ├── 0839-similar-string-groups ├── 0839-similar-string-groups.cpp ├── NOTES.md └── README.md ├── 0840-magic-squares-in-grid ├── 0840-magic-squares-in-grid.cpp ├── NOTES.md └── README.md ├── 0841-keys-and-rooms ├── 0841-keys-and-rooms.cpp ├── NOTES.md └── README.md ├── 0844-backspace-string-compare ├── 0844-backspace-string-compare.cpp └── NOTES.md ├── 0844. Backspace String Compare.cpp ├── 0845. Longest Mountain in Array.cpp ├── 0846-hand-of-straights ├── 0846-hand-of-straights.cpp ├── NOTES.md └── README.md ├── 0847-shortest-path-visiting-all-nodes ├── 0847-shortest-path-visiting-all-nodes.cpp └── README.md ├── 0848. Shifting Letters.cpp ├── 0852-peak-index-in-a-mountain-array ├── 0852-peak-index-in-a-mountain-array.cpp ├── NOTES.md └── README.md ├── 0852. Peak Index in a Mountain Array.cpp ├── 0853. Car Fleet.cpp ├── 0856. Score of Parentheses.cpp ├── 0857-minimum-cost-to-hire-k-workers ├── 0857-minimum-cost-to-hire-k-workers.cpp ├── NOTES.md └── README.md ├── 0858. Mirror Reflection.cpp ├── 0859-buddy-strings ├── 0859-buddy-strings.cpp ├── NOTES.md └── README.md ├── 0860-lemonade-change ├── 0860-lemonade-change.cpp ├── NOTES.md └── README.md ├── 0863-all-nodes-distance-k-in-binary-tree ├── 0863-all-nodes-distance-k-in-binary-tree.cpp └── NOTES.md ├── 0864-shortest-path-to-get-all-keys ├── 0864-shortest-path-to-get-all-keys.cpp └── README.md ├── 0867-transpose-matrix ├── 0867-transpose-matrix.cpp ├── NOTES.md └── README.md ├── 0867. Transpose Matrix.cpp ├── 0872-leaf-similar-trees └── README.md ├── 0875-koko-eating-bananas ├── 0875-koko-eating-bananas.cpp ├── NOTES.md └── README.md ├── 0875. Koko Eating Bananas.cpp ├── 0876-middle-of-the-linked-list ├── 0876-middle-of-the-linked-list.cpp └── README.md ├── 0876. Middle of the Linked List.cpp ├── 0879-profitable-schemes ├── 0879-profitable-schemes.cpp └── README.md ├── 0880-decoded-string-at-index ├── 0880-decoded-string-at-index.cpp └── README.md ├── 0881-boats-to-save-people ├── 0881-boats-to-save-people.cpp └── NOTES.md ├── 0881. Boats to Save People.cpp ├── 0884. Uncommon Words from Two Sentences.cpp ├── 0885-spiral-matrix-iii ├── 0885-spiral-matrix-iii.cpp └── README.md ├── 0886-possible-bipartition ├── 0886-possible-bipartition.cpp └── README.md ├── 0890. Find and Replace Pattern.cpp ├── 0894-all-possible-full-binary-trees └── README.md ├── 0895. Maximum Frequency Stack.cpp ├── 0897. Increasing Order Search Tree.cpp ├── 0898. Bitwise ORs of Subarrays.cpp ├── 0904-fruit-into-baskets ├── 0904-fruit-into-baskets.cpp ├── NOTES.md └── README.md ├── 0905. Sort Array By Parity.cpp ├── 0907-sum-of-subarray-minimums ├── 0907-sum-of-subarray-minimums.cpp ├── NOTES.md └── README.md ├── 0908. Smallest Range I.cpp ├── 0909-snakes-and-ladders ├── 0909-snakes-and-ladders.cpp └── NOTES.md ├── 0912-sort-an-array ├── 0912-sort-an-array.cpp ├── NOTES.md └── README.md ├── 0912. Sort an Array.cpp ├── 0916. Word Subsets.cpp ├── 0917. Reverse Only Letters.cpp ├── 0918-maximum-sum-circular-subarray ├── 0918-maximum-sum-circular-subarray.cpp └── NOTES.md ├── 0920-number-of-music-playlists ├── 0920-number-of-music-playlists.cpp ├── NOTES.md └── README.md ├── 0922. Sort Array By Parity II.cpp ├── 0923. 3Sum With Multiplicity.cpp ├── 0925. Long Pressed Name.cpp ├── 0926-flip-string-to-monotone-increasing ├── 0926-flip-string-to-monotone-increasing.cpp └── README.md ├── 0930-binary-subarrays-with-sum ├── 0930-binary-subarrays-with-sum.cpp ├── NOTES.md └── README.md ├── 0931-minimum-falling-path-sum ├── 0931-minimum-falling-path-sum.cpp ├── NOTES.md └── README.md ├── 0934-shortest-bridge ├── 0934-shortest-bridge.cpp ├── NOTES.md └── README.md ├── 0938-range-sum-of-bst ├── 0938-range-sum-of-bst.cpp ├── NOTES.md └── README.md ├── 0938. Range Sum of BST.cpp ├── 0941. Valid Mountain Array.cpp ├── 0944-delete-columns-to-make-sorted ├── 0944-delete-columns-to-make-sorted.cpp ├── NOTES.md └── README.md ├── 0944. Delete Columns to Make Sorted.cpp ├── 0945-minimum-increment-to-make-array-unique ├── 0945-minimum-increment-to-make-array-unique.cpp ├── NOTES.md └── README.md ├── 0945. Minimum Increment to Make Array Unique.cpp ├── 0946-validate-stack-sequences ├── 0946-validate-stack-sequences.cpp ├── NOTES.md └── README.md ├── 0946. Validate Stack Sequences.cpp ├── 0947-most-stones-removed-with-same-row-or-column ├── 0947-most-stones-removed-with-same-row-or-column.cpp ├── NOTES.md └── README.md ├── 0948-bag-of-tokens ├── 0948-bag-of-tokens.cpp ├── NOTES.md └── README.md ├── 0950-reveal-cards-in-increasing-order ├── 0950-reveal-cards-in-increasing-order.cpp ├── NOTES.md └── README.md ├── 0951. Flip Equivalent Binary Trees.cpp ├── 0953-verifying-an-alien-dictionary ├── 0953-verifying-an-alien-dictionary.cpp ├── NOTES.md └── README.md ├── 0955-delete-columns-to-make-sorted-ii ├── 0955-delete-columns-to-make-sorted-ii.cpp ├── NOTES.md └── README.md ├── 0956-tallest-billboard ├── 0956-tallest-billboard.cpp └── README.md ├── 0959-regions-cut-by-slashes ├── 0959-regions-cut-by-slashes.cpp ├── NOTES.md └── README.md ├── 0968. Binary Tree Cameras.cpp ├── 0974-subarray-sums-divisible-by-k ├── 0974-subarray-sums-divisible-by-k.cpp ├── NOTES.md └── README.md ├── 0974. Subarray Sums Divisible by K.cpp ├── 0976. Largest Perimeter Triangle.cpp ├── 0977-squares-of-a-sorted-array ├── 0977-squares-of-a-sorted-array.cpp ├── NOTES.md └── README.md ├── 0977. Squares of a Sorted Array.cpp ├── 0979-distribute-coins-in-binary-tree ├── 0979-distribute-coins-in-binary-tree.cpp └── README.md ├── 0980-unique-paths-iii ├── 0980-unique-paths-iii.cpp ├── NOTES.md └── README.md ├── 0987-vertical-order-traversal-of-a-binary-tree ├── 0987-vertical-order-traversal-of-a-binary-tree.cpp └── README.md ├── 0988-smallest-string-starting-from-leaf ├── 0988-smallest-string-starting-from-leaf.cpp └── README.md ├── 0989-add-to-array-form-of-integer ├── 0989-add-to-array-form-of-integer.cpp ├── NOTES.md └── README.md ├── 0989. Add to Array-Form of Integer.cpp ├── 0991. Broken Calculator.cpp ├── 0992-subarrays-with-k-different-integers ├── 0992-subarrays-with-k-different-integers.cpp ├── NOTES.md └── README.md ├── 0994-rotting-oranges ├── 0994-rotting-oranges.cpp ├── NOTES.md └── README.md ├── 0995-minimum-number-of-k-consecutive-bit-flips ├── 0995-minimum-number-of-k-consecutive-bit-flips.cpp ├── NOTES.md └── README.md ├── 0997-find-the-town-judge ├── 0997-find-the-town-judge.cpp ├── NOTES.md └── README.md ├── 0997. Find the Town Judge.cpp ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-hidden-flex-wrap-wrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondiv-styletransform-rotate180deg-svg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1838-frequency-of-the-most-frequent-element ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-hidden-flex-wrap-wrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondiv-styletransform-rotate180deg-svg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1838-frequency-of-the-most-frequent-element.cpp └── NOTES.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divadobe-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div779-k-th-symbol-in-grammar ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divadobe-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div779-k-th-symbol-in-grammar.cpp └── NOTES.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence1-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1337-the-k-weakest-rows-in-a-matrix ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence1-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1337-the-k-weakest-rows-in-a-matrix.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence10-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divmicrosoft-divdiv-classcompanytagscontainer-tagoccurence6-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divlinkedin-divdiv-classcompanytagscontainer-tagoccurence5-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divoracle-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divsalesforce-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoldman-sachs-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divwalmart-global-tech-divdiv-classcompanytagscontainer-tagoccurence3-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div706-design-hashmap ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence10-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divmicrosoft-divdiv-classcompanytagscontainer-tagoccurence6-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divlinkedin-divdiv-classcompanytagscontainer-tagoccurence5-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divoracle-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divsalesforce-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoldman-sachs-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divwalmart-global-tech-divdiv-classcompanytagscontainer-tagoccurence3-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div706-design-hashmap.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence16-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divmicrosoft-divdiv-classcompanytagscontainer-tagoccurence11-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divuber-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divqualcomm-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div287-find-the-duplicate-number ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence16-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divmicrosoft-divdiv-classcompanytagscontainer-tagoccurence11-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divuber-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divqualcomm-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div287-find-the-duplicate-number.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1980-find-unique-binary-string ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1980-find-unique-binary-string.cpp └── NOTES.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div823-binary-trees-with-factors ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div823-binary-trees-with-factors.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divflipkart-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div646-maximum-length-of-pair-chain ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divflipkart-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div646-maximum-length-of-pair-chain.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence32-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence8-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divmicrosoft-divdiv-classcompanytagscontainer-tagoccurence6-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divsalesforce-divdiv-classcompanytagscontainer-tagoccurence6-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divuber-divdiv-classcompanytagscontainer-tagoccurence5-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence5-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divadobe-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divcitadel-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divbytedance-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divtwilio-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divtiktok-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divbloomberg-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divvmware-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divbookingcom-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divdoordash-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divde-shaw-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divquora-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div239-sliding-window-maximum ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence35-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divmicrosoft-divdiv-classcompanytagscontainer-tagoccurence18-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence12-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divadobe-divdiv-classcompanytagscontainer-tagoccurence12-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence7-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence7-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divoracle-divdiv-classcompanytagscontainer-tagoccurence7-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divbloomberg-divdiv-classcompanytagscontainer-tagoccurence6-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoldman-sachs-divdiv-classcompanytagscontainer-tagoccurence5-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div5-longest-palindromic-substring ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence35-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divmicrosoft-divdiv-classcompanytagscontainer-tagoccurence18-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence12-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divadobe-divdiv-classcompanytagscontainer-tagoccurence12-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence7-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence7-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divoracle-divdiv-classcompanytagscontainer-tagoccurence7-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divbloomberg-divdiv-classcompanytagscontainer-tagoccurence6-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoldman-sachs-divdiv-classcompanytagscontainer-tagoccurence5-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div5-longest-palindromic-substring.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence4-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div456-132-pattern ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence4-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div456-132-pattern.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divyandex-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divadobe-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div392-is-subsequence ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divyandex-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divadobe-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div392-is-subsequence.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divmicrosoft-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divadobe-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div229-majority-element-ii ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divmicrosoft-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divadobe-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div229-majority-element-ii.cpp └── NOTES.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence5-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divadobe-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divbloomberg-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div746-min-cost-climbing-stairs ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence5-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divadobe-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divbloomberg-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div746-min-cost-climbing-stairs.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence1-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1662-check-if-two-string-arrays-are-equivalent ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence1-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1662-check-if-two-string-arrays-are-equivalent.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence3-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1266-minimum-time-visiting-all-points ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence3-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1266-minimum-time-visiting-all-points.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divsalesforce-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div316-remove-duplicate-letters ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divsalesforce-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div316-remove-duplicate-letters.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divbloomberg-divdiv-classcompanytagscontainer-tagoccurence10-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence6-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divtwilio-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divmicrosoft-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divsnapchat-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div935-knight-dialer ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divbloomberg-divdiv-classcompanytagscontainer-tagoccurence10-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence6-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divtwilio-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divmicrosoft-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divsnapchat-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div935-knight-dialer.cpp └── NOTES.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divbox-divdiv-classcompanytagscontainer-tagoccurence12-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divcisco-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divoracle-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div191-number-of-1-bits ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divbox-divdiv-classcompanytagscontainer-tagoccurence12-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divcisco-divdiv-classcompanytagscontainer-tagoccurence4-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divoracle-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div191-number-of-1-bits.cpp └── NOTES.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divcapital-one-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1743-restore-the-array-from-adjacent-pairs ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divcapital-one-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1743-restore-the-array-from-adjacent-pairs.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divdirecti-divdiv-classcompanytagscontainer-tagoccurence1-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1535-find-the-winner-of-an-array-game ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divdirecti-divdiv-classcompanytagscontainer-tagoccurence1-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1535-find-the-winner-of-an-array-game.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divdropbox-divdiv-classcompanytagscontainer-tagoccurence1-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1845-seat-reservation-manager ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divdropbox-divdiv-classcompanytagscontainer-tagoccurence1-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1845-seat-reservation-manager.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence12-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div896-monotonic-array ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence12-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div896-monotonic-array.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence18-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div515-find-largest-value-in-each-tree-row ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence18-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div515-find-largest-value-in-each-tree-row.cpp └── NOTES.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1361-validate-binary-tree-nodes ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1361-validate-binary-tree-nodes.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence3-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div343-integer-break ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence3-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div343-integer-break.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence1-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1727-largest-submatrix-with-rearrangements ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence1-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1727-largest-submatrix-with-rearrangements.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence15-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divroblox-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div792-number-of-matching-subsequences └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1441-build-an-array-with-stack-operations ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1441-build-an-array-with-stack-operations.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence3-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1877-minimize-maximum-pair-sum-in-array ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence3-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1877-minimize-maximum-pair-sum-in-array.cpp └── NOTES.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1658-minimum-operations-to-reduce-x-to-zero ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1658-minimum-operations-to-reduce-x-to-zero.cpp └── NOTES.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence6-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div389-find-the-difference ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence6-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div389-find-the-difference.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divibm-divdiv-classcompanytagscontainer-tagoccurence6-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divbookingcom-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divvisa-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divbloomberg-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divtiktok-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div844-backspace-string-compare ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divibm-divdiv-classcompanytagscontainer-tagoccurence6-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divbookingcom-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divvisa-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divbloomberg-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divtiktok-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div844-backspace-string-compare.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divinfosys-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1356-sort-integers-by-the-number-of-1-bits ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divinfosys-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1356-sort-integers-by-the-number-of-1-bits.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divkarat-divdiv-classcompanytagscontainer-tagoccurence12-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divindeed-divdiv-classcompanytagscontainer-tagoccurence6-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1160-find-words-that-can-be-formed-by-characters ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divkarat-divdiv-classcompanytagscontainer-tagoccurence12-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divindeed-divdiv-classcompanytagscontainer-tagoccurence6-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoogle-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1160-find-words-that-can-be-formed-by-characters.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divmicrosoft-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoldman-sachs-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div119-pascals-triangle-ii ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divmicrosoft-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divgoldman-sachs-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div119-pascals-triangle-ii.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divmicrosoft-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divadobe-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1512-number-of-good-pairs ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divmicrosoft-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divadobe-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1512-number-of-good-pairs.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divmicrosoft-divdiv-classcompanytagscontainer-tagoccurence5-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divbolt-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divyandex-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divpaytm-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div557-reverse-words-in-a-string-iii ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divmicrosoft-divdiv-classcompanytagscontainer-tagoccurence5-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divbolt-divdiv-classcompanytagscontainer-tagoccurence3-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divyandex-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divfacebook-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divapple-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divpaytm-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div557-reverse-words-in-a-string-iii.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divpinterest-divdiv-classcompanytagscontainer-tagoccurence4-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2050-parallel-courses-iii ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divpinterest-divdiv-classcompanytagscontainer-tagoccurence4-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2050-parallel-courses-iii.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divtwo-sigma-divdiv-classcompanytagscontainer-tagoccurence1-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div342-power-of-four ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divtwo-sigma-divdiv-classcompanytagscontainer-tagoccurence1-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div342-power-of-four.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divuber-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divadobe-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div799-champagne-tower ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divuber-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divamazon-divdiv-classcompanytagscontainer-tagoccurence2-div-divdiv-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divadobe-divdiv-classcompanytagscontainer-tagoccurence2-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div799-champagne-tower.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divvirtu-financial-divdiv-classcompanytagscontainer-tagoccurence1-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1759-count-number-of-homogenous-substrings ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divvirtu-financial-divdiv-classcompanytagscontainer-tagoccurence1-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1759-count-number-of-homogenous-substrings.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divwalmart-global-tech-divdiv-classcompanytagscontainer-tagoccurence9-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2038-remove-colored-pieces-if-both-neighbors-are-the-same-color ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tag-stylebackground-color-rgba0-10-32-005-divwalmart-global-tech-divdiv-classcompanytagscontainer-tagoccurence9-div-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2038-remove-colored-pieces-if-both-neighbors-are-the-same-color.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1048-longest-string-chain ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1048-longest-string-chain.java └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1081-smallest-subsequence-of-distinct-characters ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1081-smallest-subsequence-of-distinct-characters.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1095-find-in-mountain-array ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1095-find-in-mountain-array.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1220-count-vowels-permutation ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1220-count-vowels-permutation.cpp └── NOTES.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1269-number-of-ways-to-stay-in-the-same-place-after-some-steps ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1269-number-of-ways-to-stay-in-the-same-place-after-some-steps.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1420-build-array-where-you-can-find-the-maximum-exactly-k-comparisons ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1420-build-array-where-you-can-find-the-maximum-exactly-k-comparisons.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1425-constrained-subsequence-sum ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1425-constrained-subsequence-sum.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1458-max-dot-product-of-two-subsequences ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1458-max-dot-product-of-two-subsequences.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1611-minimum-one-bit-operations-to-make-integers-zero ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1611-minimum-one-bit-operations-to-make-integers-zero.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1631-path-with-minimum-effort ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1631-path-with-minimum-effort.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1685-sum-of-absolute-differences-in-a-sorted-array ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1685-sum-of-absolute-differences-in-a-sorted-array.cpp └── NOTES.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1793-maximum-score-of-a-good-subarray ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1793-maximum-score-of-a-good-subarray.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1838-frequency-of-the-most-frequent-element ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1838-frequency-of-the-most-frequent-element.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1846-maximum-element-after-decreasing-and-rearranging ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1846-maximum-element-after-decreasing-and-rearranging.cpp └── NOTES.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1887-reduction-operations-to-make-the-array-elements-equal ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1887-reduction-operations-to-make-the-array-elements-equal.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1921-eliminate-maximum-number-of-monsters ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div1921-eliminate-maximum-number-of-monsters.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2009-minimum-number-of-operations-to-make-array-continuous ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2009-minimum-number-of-operations-to-make-array-continuous.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2147-number-of-ways-to-divide-a-long-corridor ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2147-number-of-ways-to-divide-a-long-corridor.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2251-number-of-flowers-in-full-bloom ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2251-number-of-flowers-in-full-bloom.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2264-largest-3-same-digit-number-in-string ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2264-largest-3-same-digit-number-in-string.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2265-count-nodes-equal-to-average-of-subtree ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2265-count-nodes-equal-to-average-of-subtree.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2391-minimum-amount-of-time-to-collect-garbage ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2391-minimum-amount-of-time-to-collect-garbage.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2433-find-the-original-array-of-prefix-xor ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2433-find-the-original-array-of-prefix-xor.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2642-design-graph-with-shortest-path-calculator ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2642-design-graph-with-shortest-path-calculator.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2742-painting-the-walls ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2785-sort-vowels-in-a-string ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2785-sort-vowels-in-a-string.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2849-determine-if-a-cell-is-reachable-at-a-given-time ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2849-determine-if-a-cell-is-reachable-at-a-given-time.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2876-count-visited-nodes-in-a-directed-graph ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2876-count-visited-nodes-in-a-directed-graph.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2919-minimum-increment-operations-to-make-array-beautiful ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2919-minimum-increment-operations-to-make-array-beautiful.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2949-count-beautiful-substrings-ii ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div2949-count-beautiful-substrings-ii.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div34-find-first-and-last-position-of-element-in-sorted-array ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div34-find-first-and-last-position-of-element-in-sorted-array.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div458-poor-pigs ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div458-poor-pigs.cpp ├── NOTES.md └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div501-find-mode-in-binary-search-tree ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div501-find-mode-in-binary-search-tree.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div815-bus-routes ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div815-bus-routes.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div847-shortest-path-visiting-all-nodes ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div847-shortest-path-visiting-all-nodes.cpp └── README.md ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div905-sort-array-by-parity ├── 0div-idbig-omega-company-tagsdiv-idbig-omega-topbardiv-classcompanytagscontainer-styleoverflow-x-scroll-flex-wrap-nowrap-div-classcompanytagscontainer-tagno-companies-found-for-this-problem-div-divdiv-classcompanytagscontainer-chevrondivsvg-version11-idicon-xmlnshttp-wwww3org-2000-svg-xmlns-xlinkhttp-wwww3org-1999-xlink-x0px-y0px-viewbox0-0-32-32-fill4087f1-xml-spacepreserve-stylewidth-20px-polygon-points16-22-6-12-74-106-16-192-246-106-26-12-polygonrect-id-x3c-transparent-rectangle-x3e-classst0-fillnone-width32-height32-rect-svg-div-div-div-div905-sort-array-by-parity.cpp └── NOTES.md ├── 1002-find-common-characters ├── 1002-find-common-characters.cpp ├── NOTES.md └── README.md ├── 1004-max-consecutive-ones-iii ├── 1004-max-consecutive-ones-iii.cpp └── NOTES.md ├── 1007. Minimum Domino Rotations For Equal Row.cpp ├── 1009. Complement of Base 10 Integer.cpp ├── 1010-pairs-of-songs-with-total-durations-divisible-by-60 ├── 1010-pairs-of-songs-with-total-durations-divisible-by-60.cpp ├── NOTES.md └── README.md ├── 1010. Pairs of Songs With Total Durations Divisible by 60.cpp ├── 1011-capacity-to-ship-packages-within-d-days ├── 1011-capacity-to-ship-packages-within-d-days.cpp ├── NOTES.md └── README.md ├── 1013. Partition Array Into Three Parts With Equal Sum.cpp ├── 1015. Smallest Integer Divisible by K.cpp ├── 1020-number-of-enclaves ├── 1020-number-of-enclaves.cpp ├── NOTES.md └── README.md ├── 1022. Sum of Root To Leaf Binary Numbers.cpp ├── 1025. Divisor Game.cpp ├── 1026-maximum-difference-between-node-and-ancestor ├── 1026-maximum-difference-between-node-and-ancestor.cpp └── README.md ├── 1026. Maximum Difference Between Node and Ancestor.cpp ├── 1027-longest-arithmetic-subsequence ├── 1027-longest-arithmetic-subsequence.cpp └── README.md ├── 1029. Two City Scheduling.cpp ├── 1038-binary-search-tree-to-greater-sum-tree ├── 1038-binary-search-tree-to-greater-sum-tree.cpp └── README.md ├── 1038. Binary Search Tree to Greater Sum Tree.cpp ├── 1039-minimum-score-triangulation-of-polygon ├── 1039-minimum-score-triangulation-of-polygon.cpp ├── NOTES.md └── README.md ├── 1039. Minimum Score Triangulation of Polygon.cpp ├── 1043-partition-array-for-maximum-sum ├── 1043-partition-array-for-maximum-sum.cpp ├── NOTES.md └── README.md ├── 1046-last-stone-weight ├── 1046-last-stone-weight.cpp ├── NOTES.md └── README.md ├── 1046. Last Stone Weight. Last Stone Weight.cpp ├── 1047. Remove All Adjacent Duplicates In String.cpp ├── 1048. Longest String Chain.cpp ├── 1049. Last Stone Weight II.cpp ├── 1051-height-checker ├── 1051-height-checker.cpp └── README.md ├── 1051. Height Checker.cpp ├── 1052-grumpy-bookstore-owner ├── 1052-grumpy-bookstore-owner.cpp ├── NOTES.md └── README.md ├── 1061-lexicographically-smallest-equivalent-string ├── 1061-lexicographically-smallest-equivalent-string.cpp └── README.md ├── 1068-product-sales-analysis-i ├── 1068-product-sales-analysis-i.sql ├── NOTES.md └── README.md ├── 1071-greatest-common-divisor-of-strings ├── 1071-greatest-common-divisor-of-strings.cpp ├── NOTES.md └── README.md ├── 1071. Greatest Common Divisor of Strings.cpp ├── 1074-number-of-submatrices-that-sum-to-target ├── 1074-number-of-submatrices-that-sum-to-target.cpp └── NOTES.md ├── 1081-smallest-subsequence-of-distinct-characters ├── 1081-smallest-subsequence-of-distinct-characters.cpp ├── NOTES.md └── README.md ├── 1089. Duplicate Zeros.cpp ├── 1091-shortest-path-in-binary-matrix ├── 1091-shortest-path-in-binary-matrix.cpp └── README.md ├── 1091. Shortest Path in Binary Matrix.cpp ├── 1092-shortest-common-supersequence ├── 1092-shortest-common-supersequence.cpp ├── NOTES.md └── README.md ├── 1092. Shortest Common Supersequence.cpp ├── 1105-filling-bookcase-shelves ├── 1105-filling-bookcase-shelves.cpp └── NOTES.md ├── 1108. Defanging an IP Address.cpp ├── 1110-delete-nodes-and-return-forest ├── 1110-delete-nodes-and-return-forest.cpp ├── NOTES.md └── README.md ├── 1111. Maximum Nesting Depth of Two Valid Parentheses Strings.cpp ├── 1114. Print in Order.cpp ├── 1122-relative-sort-array ├── 1122-relative-sort-array.cpp ├── NOTES.md └── README.md ├── 1125-smallest-sufficient-team ├── 1125-smallest-sufficient-team.cpp ├── NOTES.md └── README.md ├── 1129-shortest-path-with-alternating-colors ├── 1129-shortest-path-with-alternating-colors.cpp ├── NOTES.md └── README.md ├── 1137-n-th-tribonacci-number ├── 1137-n-th-tribonacci-number.cpp ├── NOTES.md └── README.md ├── 1137. N-th Tribonacci Number.cpp ├── 1140-stone-game-ii ├── 1140-stone-game-ii.cpp ├── NOTES.md └── README.md ├── 1143-longest-common-subsequence ├── 1143-longest-common-subsequence.cpp ├── NOTES.md └── README.md ├── 1146-snapshot-array ├── 1146-snapshot-array.cpp └── README.md ├── 1148-article-views-i ├── 1148-article-views-i.sql ├── NOTES.md └── README.md ├── 1154. Day of the Year.cpp ├── 1155-number-of-dice-rolls-with-target-sum ├── 1155-number-of-dice-rolls-with-target-sum.cpp ├── NOTES.md └── README.md ├── 1160-find-words-that-can-be-formed-by-characters ├── 1160-find-words-that-can-be-formed-by-characters.cpp ├── NOTES.md └── README.md ├── 1161-maximum-level-sum-of-a-binary-tree ├── 1161-maximum-level-sum-of-a-binary-tree.cpp └── README.md ├── 1162-as-far-from-land-as-possible ├── 1162-as-far-from-land-as-possible.cpp └── README.md ├── 1171-remove-zero-sum-consecutive-nodes-from-linked-list ├── 1171-remove-zero-sum-consecutive-nodes-from-linked-list.cpp ├── NOTES.md └── README.md ├── 1187-make-array-strictly-increasing ├── 1187-make-array-strictly-increasing.cpp └── README.md ├── 1189. Maximum Number of Balloons.cpp ├── 1192-critical-connections-in-a-network ├── 1192-critical-connections-in-a-network.cpp ├── NOTES.md └── README.md ├── 1192. Critical Connections in a Network.cpp ├── 1202. Smallest String With Swaps.cpp ├── 1203-sort-items-by-groups-respecting-dependencies ├── 1203-sort-items-by-groups-respecting-dependencies.cpp ├── NOTES.md └── README.md ├── 1207-unique-number-of-occurrences ├── 1207-unique-number-of-occurrences.cpp ├── NOTES.md └── README.md ├── 1207. Unique Number of Occurrences.cpp ├── 1208-get-equal-substrings-within-budget ├── 1208-get-equal-substrings-within-budget.cpp ├── NOTES.md └── README.md ├── 1209. Remove All Adjacent Duplicates in String II.cpp ├── 1217. Minimum Cost to Move Chips to The Same Position.cpp ├── 1218-longest-arithmetic-subsequence-of-given-difference ├── 1218-longest-arithmetic-subsequence-of-given-difference.cpp └── README.md ├── 1219-path-with-maximum-gold ├── 1219-path-with-maximum-gold.cpp └── README.md ├── 1220-count-vowels-permutation ├── 1220-count-vowels-permutation.cpp ├── NOTES.md └── README.md ├── 1220. Count Vowels Permutation.cpp ├── 1221. Split a String in Balanced Strings.cpp ├── 1232-check-if-it-is-a-straight-line ├── 1232-check-if-it-is-a-straight-line.cpp └── README.md ├── 1235-maximum-profit-in-job-scheduling ├── 1235-maximum-profit-in-job-scheduling.cpp └── README.md ├── 1239-maximum-length-of-a-concatenated-string-with-unique-characters ├── 1239-maximum-length-of-a-concatenated-string-with-unique-characters.cpp ├── NOTES.md └── README.md ├── 1248-count-number-of-nice-subarrays ├── 1248-count-number-of-nice-subarrays.cpp └── NOTES.md ├── 1249-minimum-remove-to-make-valid-parentheses ├── 1249-minimum-remove-to-make-valid-parentheses.cpp └── README.md ├── 1249. Minimum Remove to Make Valid Parentheses.cpp ├── 1254-number-of-closed-islands ├── 1254-number-of-closed-islands.cpp └── README.md ├── 1260. Shift 2D Grid.cpp ├── 1266. Minimum Time Visiting All Points.cpp ├── 1268. Search Suggestions System.cpp ├── 1277-count-square-submatrices-with-all-ones ├── 1277-count-square-submatrices-with-all-ones.cpp ├── NOTES.md └── README.md ├── 1281. Subtract the Product and Sum of Digits of an Integer.cpp ├── 1282-group-the-people-given-the-group-size-they-belong-to ├── 1282-group-the-people-given-the-group-size-they-belong-to.cpp ├── NOTES.md └── README.md ├── 1287-element-appearing-more-than-25-in-sorted-array ├── 1287-element-appearing-more-than-25-in-sorted-array.cpp └── README.md ├── 1288. Remove Covered Intervals.cpp ├── 1289-minimum-falling-path-sum-ii ├── 1289-minimum-falling-path-sum-ii.cpp └── README.md ├── 1290. Convert Binary Number in a Linked List to Integer.cpp ├── 1291-sequential-digits ├── 1291-sequential-digits.cpp └── NOTES.md ├── 1291. Sequential Digits.cpp ├── 1295. Find Numbers with Even Number of Digits.cpp ├── 1299. Replace Elements with Greatest Element on Right Side.cpp ├── 1302. Deepest Leaves Sum.cpp ├── 1305. All Elements in Two Binary Search Trees.cpp ├── 1312-minimum-insertion-steps-to-make-a-string-palindrome └── README.md ├── 1312. Minimum Insertion Steps to Make a String Palindrome.cpp ├── 1313. Decompress Run-Length Encoded List.cpp ├── 1315. Sum of Nodes with Even-Valued Grandparent.cpp ├── 1318-minimum-flips-to-make-a-or-b-equal-to-c ├── 1318-minimum-flips-to-make-a-or-b-equal-to-c.cpp ├── NOTES.md └── README.md ├── 1319-number-of-operations-to-make-network-connected ├── 1319-number-of-operations-to-make-network-connected.cpp ├── NOTES.md └── README.md ├── 1323. Maximum 69 Number.cpp ├── 1325-delete-leaves-with-a-given-value ├── 1325-delete-leaves-with-a-given-value.cpp └── README.md ├── 1325. Delete Leaves With a Given Value.cpp ├── 1326-minimum-number-of-taps-to-open-to-water-a-garden ├── 1326-minimum-number-of-taps-to-open-to-water-a-garden.cpp ├── NOTES.md └── README.md ├── 1328. Break a Palindrome.cpp ├── 1331. Rank Transform of an Array.cpp ├── 1332. Remove Palindromic Subsequences.cpp ├── 1334-find-the-city-with-the-smallest-number-of-neighbors-at-a-threshold-distance ├── 1334-find-the-city-with-the-smallest-number-of-neighbors-at-a-threshold-distance.cpp ├── NOTES.md └── README.md ├── 1335-minimum-difficulty-of-a-job-schedule ├── 1335-minimum-difficulty-of-a-job-schedule.cpp └── README.md ├── 1337-the-k-weakest-rows-in-a-matrix ├── 1337-the-k-weakest-rows-in-a-matrix.cpp └── README.md ├── 1337. The K Weakest Rows in a Matrix.cpp ├── 1339-maximum-product-of-splitted-binary-tree ├── 1339-maximum-product-of-splitted-binary-tree.cpp ├── NOTES.md └── README.md ├── 1342. Number of Steps to Reduce a Number to Zero.cpp ├── 1345-jump-game-iv ├── 1345-jump-game-iv.cpp └── README.md ├── 1346. Check If N and Its Double Exist.cpp ├── 1347-minimum-number-of-steps-to-make-two-strings-anagram ├── 1347-minimum-number-of-steps-to-make-two-strings-anagram.cpp ├── NOTES.md └── README.md ├── 1351-count-negative-numbers-in-a-sorted-matrix ├── 1351-count-negative-numbers-in-a-sorted-matrix.cpp ├── NOTES.md └── README.md ├── 1351. Count Negative Numbers in a Sorted Matrix.cpp ├── 1358-number-of-substrings-containing-all-three-characters ├── NOTES.md └── README.md ├── 1359-count-all-valid-pickup-and-delivery-options ├── 1359-count-all-valid-pickup-and-delivery-options.cpp └── README.md ├── 1359. Count All Valid Pickup and Delivery Options.cpp ├── 1365. How Many Numbers Are Smaller Than the Current Number.cpp ├── 1372-longest-zigzag-path-in-a-binary-tree ├── 1372-longest-zigzag-path-in-a-binary-tree.cpp └── README.md ├── 1374. Generate a String With Characters That Have Odd Counts.cpp ├── 1376-time-needed-to-inform-all-employees ├── 1376-time-needed-to-inform-all-employees.cpp ├── NOTES.md └── README.md ├── 1378-replace-employee-id-with-the-unique-identifier ├── 1378-replace-employee-id-with-the-unique-identifier.sql ├── NOTES.md └── README.md ├── 1379. Find a Corresponding Node of a Binary Tree in a Clone of That Tree.cpp ├── 1380-lucky-numbers-in-a-matrix ├── 1380-lucky-numbers-in-a-matrix.cpp └── README.md ├── 1380. Lucky Numbers in a Matrix.cpp ├── 1382-balance-a-binary-search-tree ├── 1382-balance-a-binary-search-tree.cpp ├── NOTES.md └── README.md ├── 1385. Find the Distance Value Between Two Arrays.cpp ├── 1389. Create Target Array in the Given Order.cpp ├── 1394. Find Lucky Integer in an Array.cpp ├── 1395-count-number-of-teams └── README.md ├── 1396-design-underground-system ├── 1396-design-underground-system.cpp ├── NOTES.md └── README.md ├── 1396. Design Underground System.cpp ├── 1404-number-of-steps-to-reduce-a-number-in-binary-representation-to-one ├── 1404-number-of-steps-to-reduce-a-number-in-binary-representation-to-one.cpp └── README.md ├── 1406-stone-game-iii ├── 1406-stone-game-iii.cpp └── NOTES.md ├── 1416-restore-the-array ├── 1416-restore-the-array.cpp └── NOTES.md ├── 1417. Reformat The String.cpp ├── 1422-maximum-score-after-splitting-a-string ├── 1422-maximum-score-after-splitting-a-string.cpp ├── NOTES.md └── README.md ├── 1423-maximum-points-you-can-obtain-from-cards ├── 1423-maximum-points-you-can-obtain-from-cards.cpp ├── NOTES.md └── README.md ├── 1423. Maximum Points You Can Obtain from Cards.cpp ├── 1424. Diagonal Traverse II.cpp ├── 1425-constrained-subsequence-sum ├── 1425-constrained-subsequence-sum.cpp ├── NOTES.md └── README.md ├── 1431-kids-with-the-greatest-number-of-candies ├── 1431-kids-with-the-greatest-number-of-candies.cpp └── NOTES.md ├── 1431. Kids With the Greatest Number of Candies.cpp ├── 1438-longest-continuous-subarray-with-absolute-diff-less-than-or-equal-to-limit ├── 1438-longest-continuous-subarray-with-absolute-diff-less-than-or-equal-to-limit.cpp ├── NOTES.md └── README.md ├── 1442-count-triplets-that-can-form-two-arrays-of-equal-xor ├── 1442-count-triplets-that-can-form-two-arrays-of-equal-xor.cpp └── README.md ├── 1443-minimum-time-to-collect-all-apples-in-a-tree ├── 1443-minimum-time-to-collect-all-apples-in-a-tree.cpp └── README.md ├── 1444-number-of-ways-of-cutting-a-pizza ├── 1444-number-of-ways-of-cutting-a-pizza.cpp └── README.md ├── 1446. Consecutive Characters.cpp ├── 1448. Count Good Nodes in Binary Tree.cpp ├── 1450. Number of Students Doing Homework at a Given Time.cpp ├── 1456-maximum-number-of-vowels-in-a-substring-of-given-length ├── 1456-maximum-number-of-vowels-in-a-substring-of-given-length.cpp ├── NOTES.md └── README.md ├── 1457-pseudo-palindromic-paths-in-a-binary-tree ├── 1457-pseudo-palindromic-paths-in-a-binary-tree.cpp └── README.md ├── 1457. Pseudo-Palindromic Paths in a Binary Tree.cpp ├── 1458-max-dot-product-of-two-subsequences ├── 1458-max-dot-product-of-two-subsequences.cpp ├── NOTES.md └── README.md ├── 1460-make-two-arrays-equal-by-reversing-subarrays ├── 1460-make-two-arrays-equal-by-reversing-subarrays.cpp └── NOTES.md ├── 1460. Make Two Arrays Equal by Reversing Sub-arrays.cpp ├── 1461. Check If a String Contains All Binary Codes of Size K.cpp ├── 1463-cherry-pickup-ii ├── 1463-cherry-pickup-ii.cpp ├── NOTES.md └── README.md ├── 1464-maximum-product-of-two-elements-in-an-array ├── 1464-maximum-product-of-two-elements-in-an-array.cpp ├── NOTES.md └── README.md ├── 1465. Maximum Area of a Piece of Cake After Horizontal and Vertical Cuts.cpp ├── 1466-reorder-routes-to-make-all-paths-lead-to-the-city-zero ├── 1466-reorder-routes-to-make-all-paths-lead-to-the-city-zero.cpp ├── NOTES.md └── README.md ├── 1470-shuffle-the-array ├── 1470-shuffle-the-array.cpp ├── NOTES.md └── README.md ├── 1470. Shuffle the Array.cpp ├── 1472-design-browser-history ├── 1472-design-browser-history.cpp └── README.md ├── 1473. Paint House III.cpp ├── 1475. Final Prices With a Special Discount in a Shop.cpp ├── 1476. Subrectangle Queries.cpp ├── 1480. Running Sum of 1d Array.cpp ├── 1481-least-number-of-unique-integers-after-k-removals ├── 1481-least-number-of-unique-integers-after-k-removals.cpp └── README.md ├── 1482-minimum-number-of-days-to-make-m-bouquets ├── 1482-minimum-number-of-days-to-make-m-bouquets.cpp ├── NOTES.md └── README.md ├── 1486. XOR Operation in an Array.cpp ├── 1489-find-critical-and-pseudo-critical-edges-in-minimum-spanning-tree ├── 1489-find-critical-and-pseudo-critical-edges-in-minimum-spanning-tree.cpp └── NOTES.md ├── 1491. Average Salary Excluding the Minimum and Maximum Salary.cpp ├── 1493-longest-subarray-of-1s-after-deleting-one-element ├── 1493-longest-subarray-of-1s-after-deleting-one-element.cpp └── NOTES.md ├── 1496-path-crossing ├── 1496-path-crossing.cpp ├── NOTES.md └── README.md ├── 1498-number-of-subsequences-that-satisfy-the-given-sum-condition ├── 1498-number-of-subsequences-that-satisfy-the-given-sum-condition.cpp ├── NOTES.md └── README.md ├── 1502-can-make-arithmetic-progression-from-sequence ├── 1502-can-make-arithmetic-progression-from-sequence.cpp ├── NOTES.md └── README.md ├── 1502. Can Make Arithmetic Progression From Sequence.cpp ├── 1503-last-moment-before-all-ants-fall-out-of-a-plank ├── 1503-last-moment-before-all-ants-fall-out-of-a-plank.cpp ├── NOTES.md └── README.md ├── 1508-range-sum-of-sorted-subarray-sums ├── 1508-range-sum-of-sorted-subarray-sums.cpp ├── NOTES.md └── README.md ├── 1509-minimum-difference-between-largest-and-smallest-value-in-three-moves ├── 1509-minimum-difference-between-largest-and-smallest-value-in-three-moves.cpp ├── NOTES.md └── README.md ├── 1512-number-of-good-pairs ├── 1512-number-of-good-pairs.cpp ├── NOTES.md └── README.md ├── 1512. Number of Good Pairs.cpp ├── 1514-path-with-maximum-probability ├── 1514-path-with-maximum-probability.cpp ├── NOTES.md └── README.md ├── 1518-water-bottles ├── 1518-water-bottles.cpp ├── NOTES.md └── README.md ├── 1519-number-of-nodes-in-the-sub-tree-with-the-same-label ├── 1519-number-of-nodes-in-the-sub-tree-with-the-same-label.cpp └── README.md ├── 1523-count-odd-numbers-in-an-interval-range ├── 1523-count-odd-numbers-in-an-interval-range.cpp └── NOTES.md ├── 1523. Count Odd Numbers in an Interval Range.cpp ├── 1528. Shuffle String.cpp ├── 1530-number-of-good-leaf-nodes-pairs └── NOTES.md ├── 1531-string-compression-ii ├── 1531-string-compression-ii.cpp └── README.md ├── 1534. Count Good Triplets.cpp ├── 1539-kth-missing-positive-number ├── 1539-kth-missing-positive-number.cpp ├── NOTES.md └── README.md ├── 1539. Kth Missing Positive Number.cpp ├── 1544-make-the-string-great ├── 1544-make-the-string-great.cpp ├── NOTES.md └── README.md ├── 1547-minimum-cost-to-cut-a-stick ├── 1547-minimum-cost-to-cut-a-stick.cpp └── README.md ├── 1550-three-consecutive-odds ├── 1550-three-consecutive-odds.cpp ├── NOTES.md └── README.md ├── 1550. Three Consecutive Odds.cpp ├── 1551. Minimum Operations to Make Array Equal.cpp ├── 1552-magnetic-force-between-two-balls ├── 1552-magnetic-force-between-two-balls.cpp ├── NOTES.md └── README.md ├── 1568-minimum-number-of-days-to-disconnect-island ├── 1568-minimum-number-of-days-to-disconnect-island.cpp └── README.md ├── 1569-number-of-ways-to-reorder-array-to-get-same-bst ├── 1569-number-of-ways-to-reorder-array-to-get-same-bst.cpp ├── NOTES.md └── README.md ├── 1572-matrix-diagonal-sum ├── 1572-matrix-diagonal-sum.cpp ├── NOTES.md └── README.md ├── 1572. Matrix Diagonal Sum.cpp ├── 1575-count-all-possible-routes ├── 1575-count-all-possible-routes.cpp ├── NOTES.md └── README.md ├── 1578-minimum-time-to-make-rope-colorful ├── 1578-minimum-time-to-make-rope-colorful.cpp ├── NOTES.md └── README.md ├── 1578. Minimum Time to Make Rope Colorful.cpp ├── 1579-remove-max-number-of-edges-to-keep-graph-fully-traversable ├── 1579-remove-max-number-of-edges-to-keep-graph-fully-traversable.cpp ├── NOTES.md └── README.md ├── 1582-special-positions-in-a-binary-matrix ├── 1582-special-positions-in-a-binary-matrix.cpp ├── NOTES.md └── README.md ├── 1584-min-cost-to-connect-all-points ├── 1584-min-cost-to-connect-all-points.cpp ├── NOTES.md └── README.md ├── 1584. Min Cost to Connect All Points.cpp ├── 1592. Rearrange Spaces Between Words.cpp ├── 1598. Crawler Log Folder.cpp ├── 1601-maximum-number-of-achievable-transfer-requests ├── 1601-maximum-number-of-achievable-transfer-requests.cpp └── README.md ├── 1603-design-parking-system ├── 1603-design-parking-system.cpp └── README.md ├── 1603. Design Parking System.cpp ├── 1605-find-valid-matrix-given-row-and-column-sums ├── 1605-find-valid-matrix-given-row-and-column-sums.cpp └── NOTES.md ├── 1608-special-array-with-x-elements-greater-than-or-equal-x ├── 1608-special-array-with-x-elements-greater-than-or-equal-x.cpp ├── NOTES.md └── README.md ├── 1608. Special Array With X Elements Greater Than or Equal X.cpp ├── 1609-even-odd-tree ├── 1609-even-odd-tree.cpp ├── NOTES.md └── README.md ├── 1614-maximum-nesting-depth-of-the-parentheses ├── 1614-maximum-nesting-depth-of-the-parentheses.cpp ├── NOTES.md └── README.md ├── 1614. Maximum Nesting Depth of the Parentheses.cpp ├── 1615-maximal-network-rank ├── 1615-maximal-network-rank.cpp ├── NOTES.md └── README.md ├── 1624-largest-substring-between-two-equal-characters ├── 1624-largest-substring-between-two-equal-characters.cpp ├── NOTES.md └── README.md ├── 1626-best-team-with-no-conflicts ├── 1626-best-team-with-no-conflicts.cpp └── README.md ├── 1631. Path With Minimum Effort.cpp ├── 1636-sort-array-by-increasing-frequency └── README.md ├── 1637-widest-vertical-area-between-two-points-containing-no-points ├── 1637-widest-vertical-area-between-two-points-containing-no-points.cpp ├── NOTES.md └── README.md ├── 1637. Widest Vertical Area Between Two Points Containing No Points.cpp ├── 1639-number-of-ways-to-form-a-target-string-given-a-dictionary ├── 1639-number-of-ways-to-form-a-target-string-given-a-dictionary.cpp └── NOTES.md ├── 1641. Count Sorted Vowel Strings.cpp ├── 1642-furthest-building-you-can-reach ├── 1642-furthest-building-you-can-reach.cpp └── README.md ├── 1642. Furthest Building You Can Reach.cpp ├── 1647-minimum-deletions-to-make-character-frequencies-unique ├── 1647-minimum-deletions-to-make-character-frequencies-unique.cpp ├── NOTES.md └── README.md ├── 1647. Minimum Deletions to Make Character Frequencies Unique.cpp ├── 1653-minimum-deletions-to-make-string-balanced └── README.md ├── 1653. Minimum Deletions to Make String Balanced.cpp ├── 1657-determine-if-two-strings-are-close ├── 1657-determine-if-two-strings-are-close.cpp ├── NOTES.md └── README.md ├── 1658. Minimum Operations to Reduce X to Zero.cpp ├── 1662. Check If Two String Arrays are Equivalent.cpp ├── 1663. Smallest String With A Given Numeric Value.cpp ├── 1669-merge-in-between-linked-lists ├── 1669-merge-in-between-linked-lists.cpp └── README.md ├── 1672. Richest Customer Wealth.cpp ├── 1675-minimize-deviation-in-array ├── 1675-minimize-deviation-in-array.cpp ├── NOTES.md └── README.md ├── 1675. Minimize Deviation in Array.cpp ├── 1678. Goal Parser Interpretation.cpp ├── 1679. Max Number of K-Sum Pairs.cpp ├── 1683-invalid-tweets ├── 1683-invalid-tweets.sql ├── NOTES.md └── README.md ├── 1685-sum-of-absolute-differences-in-a-sorted-array ├── 1685-sum-of-absolute-differences-in-a-sorted-array.cpp └── NOTES.md ├── 1688. Count of Matches in Tournament.cpp ├── 1689. Partitioning Into Minimum Number Of Deci-Binary Numbers.cpp ├── 1695. Maximum Erasure Value.cpp ├── 1696. Jump Game VI.cpp ├── 1697-checking-existence-of-edge-length-limited-paths ├── 1697-checking-existence-of-edge-length-limited-paths.cpp └── README.md ├── 1700-number-of-students-unable-to-eat-lunch ├── 1700-number-of-students-unable-to-eat-lunch.cpp ├── NOTES.md └── README.md ├── 1700. Number of Students Unable to Eat Lunch.cpp ├── 1704-determine-if-string-halves-are-alike ├── 1704-determine-if-string-halves-are-alike.cpp ├── NOTES.md └── README.md ├── 1704. Determine if String Halves Are Alike.cpp ├── 1707-maximum-xor-with-an-element-from-array ├── 1707-maximum-xor-with-an-element-from-array.cpp └── README.md ├── 1716-calculate-money-in-leetcode-bank ├── 1716-calculate-money-in-leetcode-bank.cpp ├── NOTES.md └── README.md ├── 1720. Decode XORed Array.cpp ├── 1721-swapping-nodes-in-a-linked-list ├── NOTES.md └── README.md ├── 1721. Swapping Nodes in a Linked List.cpp ├── 1727-largest-submatrix-with-rearrangements ├── 1727-largest-submatrix-with-rearrangements.cpp ├── NOTES.md └── README.md ├── 1732-find-the-highest-altitude ├── 1732-find-the-highest-altitude.cpp ├── NOTES.md └── README.md ├── 1732. Find the Highest Altitude.cpp ├── 1743-restore-the-array-from-adjacent-pairs ├── 1743-restore-the-array-from-adjacent-pairs.cpp ├── NOTES.md └── README.md ├── 1748. Sum of Unique Elements.cpp ├── 1749. Maximum Absolute Sum of Any Subarray.cpp ├── 1750-minimum-length-of-string-after-deleting-similar-ends ├── 1750-minimum-length-of-string-after-deleting-similar-ends.cpp └── README.md ├── 1751-maximum-number-of-events-that-can-be-attended-ii ├── 1751-maximum-number-of-events-that-can-be-attended-ii.cpp └── README.md ├── 1752. Check if Array Is Sorted and Rotated.cpp ├── 1757-recyclable-and-low-fat-products ├── 1757-recyclable-and-low-fat-products.sql └── NOTES.md ├── 1758-minimum-changes-to-make-alternating-binary-string ├── 1758-minimum-changes-to-make-alternating-binary-string.cpp ├── NOTES.md └── README.md ├── 1759-count-number-of-homogenous-substrings ├── 1759-count-number-of-homogenous-substrings.cpp ├── NOTES.md └── README.md ├── 1768-merge-strings-alternately ├── 1768-merge-strings-alternately.cpp └── NOTES.md ├── 1769. Minimum Number of Operations to Move All Balls to Each Box.cpp ├── 1770-maximum-score-from-performing-multiplication-operations ├── 1770-maximum-score-from-performing-multiplication-operations.cpp └── README.md ├── 1780. Check if Number is a Sum of Powers of Three.cpp ├── 1791-find-center-of-star-graph ├── 1791-find-center-of-star-graph.cpp └── README.md ├── 1791. Find Center of Star Graph.cpp ├── 1793-maximum-score-of-a-good-subarray ├── 1793-maximum-score-of-a-good-subarray.cpp ├── NOTES.md └── README.md ├── 1797-design-authentication-manager ├── 1797-design-authentication-manager.cpp ├── NOTES.md └── README.md ├── 1799-maximize-score-after-n-operations ├── 1799-maximize-score-after-n-operations.cpp └── NOTES.md ├── 1802-maximum-value-at-a-given-index-in-a-bounded-array ├── 1802-maximum-value-at-a-given-index-in-a-bounded-array.cpp ├── NOTES.md └── README.md ├── 1816. Truncate Sentence.cpp ├── 1822-sign-of-the-product-of-an-array ├── 1822-sign-of-the-product-of-an-array.cpp ├── NOTES.md └── README.md ├── 1832. Check if the Sentence Is Pangram.cpp ├── 1833-maximum-ice-cream-bars ├── 1833-maximum-ice-cream-bars.cpp ├── NOTES.md └── README.md ├── 1834-single-threaded-cpu ├── 1834-single-threaded-cpu.cpp └── README.md ├── 1844. Replace All Digits with Characters.cpp ├── 1845-seat-reservation-manager ├── 1845-seat-reservation-manager.cpp ├── NOTES.md └── README.md ├── 1855. Maximum Distance Between a Pair of Values.cpp ├── 1857-largest-color-value-in-a-directed-graph ├── 1857-largest-color-value-in-a-directed-graph.cpp ├── NOTES.md └── README.md ├── 1859. Sorting the Sentence.cpp ├── 1863-sum-of-all-subset-xor-totals ├── 1863-sum-of-all-subset-xor-totals.cpp ├── NOTES.md └── README.md ├── 1870-minimum-speed-to-arrive-on-time ├── 1870-minimum-speed-to-arrive-on-time.cpp ├── NOTES.md └── README.md ├── 1876. Substrings of Size Three with Distinct Characters.cpp ├── 1877-minimize-maximum-pair-sum-in-array ├── NOTES.md └── README.md ├── 1880. Check if Word Equals Summation of Two Words.cpp ├── 1887-reduction-operations-to-make-the-array-elements-equal ├── 1887-reduction-operations-to-make-the-array-elements-equal.cpp └── README.md ├── 1893. Check if All the Integers in a Range Are Covered.cpp ├── 1897-redistribute-characters-to-make-all-strings-equal ├── 1897-redistribute-characters-to-make-all-strings-equal.cpp ├── NOTES.md └── README.md ├── 1903-largest-odd-number-in-string ├── 1903-largest-odd-number-in-string.cpp ├── NOTES.md └── README.md ├── 1903. Largest Odd Number in String.cpp ├── 1905-count-sub-islands ├── 1905-count-sub-islands.cpp ├── NOTES.md └── README.md ├── 1909. Remove One Element to Make the Array Strictly Increasing.cpp ├── 1913-maximum-product-difference-between-two-pairs ├── 1913-maximum-product-difference-between-two-pairs.cpp ├── NOTES.md └── README.md ├── 1915-number-of-wonderful-substrings ├── 1915-number-of-wonderful-substrings.cpp └── README.md ├── 1920. Build Array from Permutation.cpp ├── 1921-eliminate-maximum-number-of-monsters ├── 1921-eliminate-maximum-number-of-monsters.cpp └── README.md ├── 1929. Concatenation of Array.cpp ├── 1930-unique-length-3-palindromic-subsequences ├── 1930-unique-length-3-palindromic-subsequences.cpp ├── NOTES.md └── README.md ├── 1937-maximum-number-of-points-with-cost └── README.md ├── 1941. Check if All Characters Have Equal Number of Occurrences.cpp ├── 1945. Sum of Digits of String After Convert.cpp ├── 1952. Three Divisors.cpp ├── 1957. Delete Characters to Make Fancy String.cpp ├── 1961. Check If String Is a Prefix of Array.cpp ├── 1962-remove-stones-to-minimize-the-total ├── 1962-remove-stones-to-minimize-the-total.cpp ├── NOTES.md └── README.md ├── 1964-find-the-longest-valid-obstacle-course-at-each-position ├── 1964-find-the-longest-valid-obstacle-course-at-each-position.cpp └── NOTES.md ├── 1967. Number of Strings That Appear as Substrings in Word.cpp ├── 1970-last-day-where-you-can-still-cross ├── 1970-last-day-where-you-can-still-cross.cpp └── README.md ├── 1971-find-if-path-exists-in-graph └── README.md ├── 1974. Minimum Time to Type Word Using Special Typewriter.cpp ├── 1976-number-of-ways-to-arrive-at-destination ├── 1976-number-of-ways-to-arrive-at-destination.cpp └── NOTES.md ├── 1979. Find Greatest Common Divisor of Array.cpp ├── 1980-find-unique-binary-string ├── 1980-find-unique-binary-string.cpp ├── NOTES.md └── README.md ├── 1985-find-the-kth-largest-integer-in-the-array ├── 1985-find-the-kth-largest-integer-in-the-array.cpp └── NOTES.md ├── 1991. Find the Middle Index in Array.cpp ├── 1992-find-all-groups-of-farmland ├── 1992-find-all-groups-of-farmland.cpp └── README.md ├── 1995. Count Special Quadruplets.cpp ├── 2000-reverse-prefix-of-word ├── 2000-reverse-prefix-of-word.cpp └── NOTES.md ├── 2000. Reverse Prefix of Word.cpp ├── 2006. Count Number of Pairs With Absolute Difference K.cpp ├── 2011. Final Value of Variable After Performing Operations.cpp ├── 2016. Maximum Difference Between Increasing Elements.cpp ├── 2024-maximize-the-confusion-of-an-exam ├── 2024-maximize-the-confusion-of-an-exam.cpp ├── NOTES.md └── README.md ├── 2032. Two Out of Three.cpp ├── 2037-minimum-number-of-moves-to-seat-everyone ├── 2037-minimum-number-of-moves-to-seat-everyone.cpp ├── NOTES.md └── README.md ├── 2038-remove-colored-pieces-if-both-neighbors-are-the-same-color ├── 2038-remove-colored-pieces-if-both-neighbors-are-the-same-color.cpp ├── NOTES.md └── README.md ├── 2042. Check if Numbers Are Ascending in a Sentence.cpp ├── 2045-second-minimum-time-to-reach-destination ├── 2045-second-minimum-time-to-reach-destination.cpp └── NOTES.md ├── 2047. Number of Valid Words in a Sentence.cpp ├── 2053-kth-distinct-string-in-an-array ├── 2053-kth-distinct-string-in-an-array.cpp ├── NOTES.md └── README.md ├── 2053. Kth Distinct String in an Array.cpp ├── 2057. Smallest Index With Equal Value.cpp ├── 2058-find-the-minimum-and-maximum-number-of-nodes-between-critical-points ├── 2058-find-the-minimum-and-maximum-number-of-nodes-between-critical-points.cpp └── NOTES.md ├── 2062. Count Vowel Substrings of a String.cpp ├── 2063-vowels-of-all-substrings ├── 2063-vowels-of-all-substrings.cpp └── README.md ├── 2068. Check Whether Two Strings are Almost Equivalent.cpp ├── 2073-time-needed-to-buy-tickets ├── 2073-time-needed-to-buy-tickets.cpp ├── NOTES.md └── README.md ├── 2073. Time Needed to Buy Tickets.cpp ├── 2078. Two Furthest Houses With Different Colors.cpp ├── 2079. Watering Plants.cpp ├── 2085. Count Common Words With One Occurrence.cpp ├── 2089. Find Target Indices After Sorting Array.cpp ├── 2090-k-radius-subarray-averages ├── 2090-k-radius-subarray-averages.cpp ├── NOTES.md └── README.md ├── 2091-removing-minimum-and-maximum-from-array ├── 2091-removing-minimum-and-maximum-from-array.cpp ├── NOTES.md └── README.md ├── 2092-find-all-people-with-secret ├── 2092-find-all-people-with-secret.cpp ├── NOTES.md └── README.md ├── 2094. Finding 3-Digit Even Numbers.cpp ├── 2095. Delete the Middle Node of a Linked List.cpp ├── 2096-step-by-step-directions-from-a-binary-tree-node-to-another ├── 2096-step-by-step-directions-from-a-binary-tree-node-to-another.cpp └── README.md ├── 2101-detonate-the-maximum-bombs ├── 2101-detonate-the-maximum-bombs.cpp ├── NOTES.md └── README.md ├── 2105. Watering Plants II.cpp ├── 2108-find-first-palindromic-string-in-the-array ├── 2108-find-first-palindromic-string-in-the-array.cpp └── README.md ├── 2108. Find First Palindromic String in the Array.cpp ├── 2114. Maximum Number of Words Found in Sentences.cpp ├── 2119. A Number After a Double Reversal.cpp ├── 2124. Check if All A's Appears Before All B's.cpp ├── 2125-number-of-laser-beams-in-a-bank ├── 2125-number-of-laser-beams-in-a-bank.cpp ├── NOTES.md └── README.md ├── 2125. Number of Laser Beams in a Bank.cpp ├── 2129. Capitalize the Title.cpp ├── 2130. Maximum Twin Sum of a Linked List.cpp ├── 2133. Check if Every Row and Column Contains All Numbers.cpp ├── 2134-minimum-swaps-to-group-all-1s-together-ii ├── 2134-minimum-swaps-to-group-all-1s-together-ii.cpp ├── NOTES.md └── README.md ├── 2139. Minimum Moves to Reach Target Score.cpp ├── 2140-solving-questions-with-brainpower ├── 2140-solving-questions-with-brainpower.cpp └── README.md ├── 2141-maximum-running-time-of-n-computers ├── 2141-maximum-running-time-of-n-computers.cpp └── NOTES.md ├── 2148. Count Elements With Strictly Smaller and Greater Elements.cpp ├── 2149-rearrange-array-elements-by-sign ├── 2149-rearrange-array-elements-by-sign.cpp ├── NOTES.md └── README.md ├── 2149. Rearrange Array Elements by Sign.cpp ├── 2150. Find All Lonely Numbers in the Array.cpp ├── 2154. Keep Multiplying Found Values by Two.cpp ├── 2160. Minimum Sum of Four Digit Number After Splitting Digits.cpp ├── 2161. Partition Array According to Given Pivot.cpp ├── 2164. Sort Even and Odd Indices Independently.cpp ├── 2169. Count Operations to Obtain Zero.cpp ├── 2177. Find Three Consecutive Integers That Sum to a Given Numbe.cpp ├── 2180. Count Integers With Even Digit Sum.cpp ├── 2181-merge-nodes-in-between-zeros ├── 2181-merge-nodes-in-between-zeros.cpp └── README.md ├── 2181. Merge Nodes in Between Zeros.cpp ├── 2187-minimum-time-to-complete-trips ├── 2187-minimum-time-to-complete-trips.cpp └── NOTES.md ├── 2191-sort-the-jumbled-numbers ├── 2191-sort-the-jumbled-numbers.cpp └── README.md ├── 2192-all-ancestors-of-a-node-in-a-directed-acyclic-graph ├── 2192-all-ancestors-of-a-node-in-a-directed-acyclic-graph.cpp ├── NOTES.md └── README.md ├── 2196-create-binary-tree-from-descriptions ├── 2196-create-binary-tree-from-descriptions.cpp └── README.md ├── 2218-maximum-value-of-k-coins-from-piles ├── 2218-maximum-value-of-k-coins-from-piles.cpp └── NOTES.md ├── 2225-find-players-with-zero-or-one-losses ├── 2225-find-players-with-zero-or-one-losses.cpp ├── NOTES.md └── README.md ├── 2231-largest-number-after-digit-swaps-by-parity ├── 2231-largest-number-after-digit-swaps-by-parity.cpp └── README.md ├── 2244-minimum-rounds-to-complete-all-tasks ├── 2244-minimum-rounds-to-complete-all-tasks.cpp └── README.md ├── 2244. Minimum Rounds to Complete All Tasks.cpp ├── 2246-longest-path-with-different-adjacent-characters ├── 2246-longest-path-with-different-adjacent-characters.cpp └── README.md ├── 2251-number-of-flowers-in-full-bloom ├── 2251-number-of-flowers-in-full-bloom.cpp ├── NOTES.md └── README.md ├── 2256-minimum-average-difference ├── 2256-minimum-average-difference.cpp ├── NOTES.md └── README.md ├── 2262-total-appeal-of-a-string ├── 2262-total-appeal-of-a-string.cpp ├── NOTES.md └── README.md ├── 2264-largest-3-same-digit-number-in-string ├── 2264-largest-3-same-digit-number-in-string.cpp ├── NOTES.md └── README.md ├── 2265-count-nodes-equal-to-average-of-subtree ├── 2265-count-nodes-equal-to-average-of-subtree.cpp └── README.md ├── 2269. Find the K-Beauty of a Number.cpp ├── 2270. Number of Ways to Split Array.cpp ├── 2272-substring-with-largest-variance ├── 2272-substring-with-largest-variance.cpp ├── NOTES.md └── README.md ├── 2273. Find Resultant Array After Removing Anagrams.cpp ├── 2274. Maximum Consecutive Floors Without Special Floors.cpp ├── 2279-maximum-bags-with-full-capacity-of-rocks ├── 2279-maximum-bags-with-full-capacity-of-rocks.cpp ├── NOTES.md └── README.md ├── 2283. Check if Number Has Equal Digit Count and Digit Value.cpp ├── 2285-maximum-total-importance-of-roads ├── 2285-maximum-total-importance-of-roads.cpp └── README.md ├── 2287. Rearrange Characters to Make Target String.cpp ├── 2290-minimum-obstacle-removal-to-reach-corner ├── 2290-minimum-obstacle-removal-to-reach-corner.cpp ├── NOTES.md └── README.md ├── 2293. Min Max Game.cpp ├── 2300-successful-pairs-of-spells-and-potions ├── 2300-successful-pairs-of-spells-and-potions.cpp ├── NOTES.md └── README.md ├── 2305-fair-distribution-of-cookies ├── NOTES.md └── README.md ├── 2306-naming-a-company ├── 2306-naming-a-company.cpp ├── NOTES.md └── README.md ├── 2316-count-unreachable-pairs-of-nodes-in-an-undirected-graph ├── 2316-count-unreachable-pairs-of-nodes-in-an-undirected-graph.cpp └── README.md ├── 2327-number-of-people-aware-of-a-secret ├── 2327-number-of-people-aware-of-a-secret.cpp └── README.md ├── 2328-number-of-increasing-paths-in-a-grid ├── 2328-number-of-increasing-paths-in-a-grid.cpp ├── NOTES.md └── README.md ├── 2331-evaluate-boolean-binary-tree ├── 2331-evaluate-boolean-binary-tree.cpp ├── NOTES.md └── README.md ├── 2336-smallest-number-in-infinite-set ├── 2336-smallest-number-in-infinite-set.cpp ├── NOTES.md └── README.md ├── 2342-max-sum-of-a-pair-with-equal-sum-of-digits ├── 2342-max-sum-of-a-pair-with-equal-sum-of-digits.cpp ├── NOTES.md └── README.md ├── 2343-query-kth-smallest-trimmed-number ├── 2343-query-kth-smallest-trimmed-number.cpp └── NOTES.md ├── 2347. Best Poker Hand.cpp ├── 2348. Number of Zero-Filled Subarrays.cpp ├── 2351. First Letter to Appear Twice.cpp ├── 2352-equal-row-and-column-pairs ├── 2352-equal-row-and-column-pairs.cpp ├── NOTES.md └── README.md ├── 2352. Equal Row and Column Pairs.cpp ├── 2353-design-a-food-rating-system ├── 2353-design-a-food-rating-system.cpp ├── NOTES.md └── README.md ├── 2357. Make Array Zero by Subtracting Equal Amounts.cpp ├── 2358-maximum-number-of-groups-entering-a-competition ├── 2358-maximum-number-of-groups-entering-a-competition.cpp ├── NOTES.md └── README.md ├── 2358. Maximum Number of Groups Entering a Competition.cpp ├── 2359-find-closest-node-to-given-two-nodes ├── 2359-find-closest-node-to-given-two-nodes.cpp └── NOTES.md ├── 2360-longest-cycle-in-a-graph ├── 2360-longest-cycle-in-a-graph.cpp └── README.md ├── 2363. Merge Similar Items.cpp ├── 2365. Task Scheduler II.cpp ├── 2366-minimum-replacements-to-sort-the-array ├── 2366-minimum-replacements-to-sort-the-array.cpp ├── NOTES.md └── README.md ├── 2367. Number of Arithmetic Triplets.cpp ├── 2368. Reachable Nodes With Restrictions.cpp ├── 2369-check-if-there-is-a-valid-partition-for-the-array ├── 2369-check-if-there-is-a-valid-partition-for-the-array.cpp ├── NOTES.md └── README.md ├── 2369. Check if There is a Valid Partition For The Array.cpp ├── 2370-longest-ideal-subsequence ├── 2370-longest-ideal-subsequence.cpp └── README.md ├── 2373-largest-local-values-in-a-matrix ├── 2373-largest-local-values-in-a-matrix.cpp └── README.md ├── 2385-amount-of-time-for-binary-tree-to-be-infected ├── 2385-amount-of-time-for-binary-tree-to-be-infected.cpp └── README.md ├── 2389-longest-subsequence-with-limited-sum ├── 2389-longest-subsequence-with-limited-sum.cpp ├── NOTES.md └── README.md ├── 2390-removing-stars-from-a-string ├── 2390-removing-stars-from-a-string.cpp ├── NOTES.md └── README.md ├── 2391-minimum-amount-of-time-to-collect-garbage ├── 2391-minimum-amount-of-time-to-collect-garbage.cpp ├── NOTES.md └── README.md ├── 2392-build-a-matrix-with-conditions ├── 2392-build-a-matrix-with-conditions.cpp └── README.md ├── 2402-meeting-rooms-iii ├── 2402-meeting-rooms-iii.cpp ├── NOTES.md └── README.md ├── 2405-optimal-partition-of-string ├── 2405-optimal-partition-of-string.cpp ├── NOTES.md └── README.md ├── 2418-sort-the-people ├── 2418-sort-the-people.cpp ├── NOTES.md └── README.md ├── 2421-number-of-good-paths ├── 2421-number-of-good-paths.cpp └── README.md ├── 2433-find-the-original-array-of-prefix-xor ├── 2433-find-the-original-array-of-prefix-xor.cpp ├── NOTES.md └── README.md ├── 2439-minimize-maximum-of-array ├── 2439-minimize-maximum-of-array.cpp └── NOTES.md ├── 2441-largest-positive-integer-that-exists-with-its-negative ├── 2441-largest-positive-integer-that-exists-with-its-negative.cpp ├── NOTES.md └── README.md ├── 2444-count-subarrays-with-fixed-bounds ├── 2444-count-subarrays-with-fixed-bounds.cpp ├── NOTES.md └── README.md ├── 2448-minimum-cost-to-make-array-equal ├── 2448-minimum-cost-to-make-array-equal.cpp └── README.md ├── 2462-total-cost-to-hire-k-workers ├── 2462-total-cost-to-hire-k-workers.cpp ├── NOTES.md └── README.md ├── 2466-count-ways-to-build-good-strings ├── 2466-count-ways-to-build-good-strings.cpp └── README.md ├── 2477-minimum-fuel-cost-to-report-to-the-capital ├── 2477-minimum-fuel-cost-to-report-to-the-capital.cpp └── NOTES.md ├── 2482-difference-between-ones-and-zeros-in-row-and-column ├── 2482-difference-between-ones-and-zeros-in-row-and-column.cpp ├── NOTES.md └── README.md ├── 2483-minimum-penalty-for-a-shop ├── 2483-minimum-penalty-for-a-shop.cpp ├── NOTES.md └── README.md ├── 2485-find-the-pivot-integer ├── 2485-find-the-pivot-integer.cpp ├── NOTES.md └── README.md ├── 2486-append-characters-to-string-to-make-subsequence ├── 2486-append-characters-to-string-to-make-subsequence.cpp └── README.md ├── 2487-remove-nodes-from-linked-list ├── 2487-remove-nodes-from-linked-list.cpp ├── NOTES.md └── README.md ├── 2492-minimum-score-of-a-path-between-two-cities ├── 2492-minimum-score-of-a-path-between-two-cities.cpp ├── NOTES.md └── README.md ├── 2501-longest-square-streak-in-an-array ├── 2501-longest-square-streak-in-an-array.cpp └── README.md ├── 2508-add-edges-to-make-degrees-of-all-nodes-even ├── 2508-add-edges-to-make-degrees-of-all-nodes-even.cpp ├── NOTES.md └── README.md ├── 2512-reward-top-k-students ├── 2512-reward-top-k-students.cpp ├── NOTES.md └── README.md ├── 2513-minimize-the-maximum-of-two-arrays ├── 2513-minimize-the-maximum-of-two-arrays.cpp └── README.md ├── 2515-shortest-distance-to-target-string-in-a-circular-array ├── 2515-shortest-distance-to-target-string-in-a-circular-array.cpp └── README.md ├── 2516-take-k-of-each-character-from-left-and-right ├── 2516-take-k-of-each-character-from-left-and-right.cpp ├── NOTES.md └── README.md ├── 2540-minimum-common-value ├── 2540-minimum-common-value.cpp └── README.md ├── 2542-maximum-subsequence-score ├── 2542-maximum-subsequence-score.cpp └── NOTES.md ├── 2551-put-marbles-in-bags ├── NOTES.md └── README.md ├── 2556-disconnect-path-in-a-binary-matrix-by-at-most-one-flip ├── 2556-disconnect-path-in-a-binary-matrix-by-at-most-one-flip.cpp ├── NOTES.md └── README.md ├── 2567-minimum-score-by-changing-two-elements ├── 2567-minimum-score-by-changing-two-elements.cpp └── NOTES.md ├── 2582-pass-the-pillow ├── 2582-pass-the-pillow.cpp ├── NOTES.md └── README.md ├── 2591-distribute-money-to-maximum-children ├── 2591-distribute-money-to-maximum-children.cpp ├── NOTES.md └── README.md ├── 2596-check-knight-tour-configuration ├── 2596-check-knight-tour-configuration.cpp └── README.md ├── 2597-the-number-of-beautiful-subsets ├── 2597-the-number-of-beautiful-subsets.cpp ├── NOTES.md └── README.md ├── 2598-smallest-missing-non-negative-integer-after-operations ├── 2598-smallest-missing-non-negative-integer-after-operations.cpp └── README.md ├── 2607-make-k-subarray-sums-equal ├── 2607-make-k-subarray-sums-equal.cpp ├── NOTES.md └── README.md ├── 2610-convert-an-array-into-a-2d-array-with-conditions ├── 2610-convert-an-array-into-a-2d-array-with-conditions.cpp ├── NOTES.md └── README.md ├── 2616-minimize-the-maximum-difference-of-pairs ├── 2616-minimize-the-maximum-difference-of-pairs.cpp └── README.md ├── 2618-check-if-object-instance-of-class ├── 2618-check-if-object-instance-of-class.js ├── NOTES.md └── README.md ├── 2619-array-prototype-last ├── 2619-array-prototype-last.js └── NOTES.md ├── 2620-counter ├── 2620-counter.js ├── NOTES.md └── README.md ├── 2621-sleep ├── 2621-sleep.js ├── NOTES.md └── README.md ├── 2622-cache-with-time-limit ├── 2622-cache-with-time-limit.js ├── NOTES.md └── README.md ├── 2623-memoize ├── 2623-memoize.js ├── NOTES.md └── README.md ├── 2625-flatten-deeply-nested-array ├── 2625-flatten-deeply-nested-array.js ├── NOTES.md └── README.md ├── 2627-debounce ├── 2627-debounce.js └── README.md ├── 2628-json-deep-equal ├── 2628-json-deep-equal.js ├── NOTES.md └── README.md ├── 2631-group-by ├── NOTES.md └── README.md ├── 2632-curry ├── 2632-curry.js └── NOTES.md ├── 2633-convert-object-to-json-string ├── 2633-convert-object-to-json-string.js ├── NOTES.md └── README.md ├── 2634-filter-elements-from-array ├── 2634-filter-elements-from-array.js ├── 2634-filter-elements-from-array.ts ├── NOTES.md └── README.md ├── 2635-apply-transform-over-each-element-in-array ├── 2635-apply-transform-over-each-element-in-array.js ├── 2635-apply-transform-over-each-element-in-array.ts ├── NOTES.md └── README.md ├── 2636-promise-pool └── README.md ├── 2637-promise-time-limit ├── 2637-promise-time-limit.js ├── NOTES.md └── README.md ├── 2642-design-graph-with-shortest-path-calculator ├── 2642-design-graph-with-shortest-path-calculator.cpp ├── NOTES.md └── README.md ├── 2648-generate-fibonacci-sequence ├── 2648-generate-fibonacci-sequence.js └── README.md ├── 2649-nested-array-generator ├── 2649-nested-array-generator.js ├── NOTES.md └── README.md ├── 2661-first-completely-painted-row-or-column ├── 2661-first-completely-painted-row-or-column.cpp ├── NOTES.md └── README.md ├── 2665-counter-ii ├── 2665-counter-ii.js └── README.md ├── 2666-allow-one-function-call ├── 2666-allow-one-function-call.js ├── 2666-allow-one-function-call.ts ├── NOTES.md └── README.md ├── 2667-create-hello-world-function ├── 2667-create-hello-world-function.js └── README.md ├── 2672-number-of-adjacent-elements-with-the-same-color ├── 2672-number-of-adjacent-elements-with-the-same-color.cpp └── README.md ├── 2675-array-of-objects-to-matrix ├── 2675-array-of-objects-to-matrix.js ├── NOTES.md └── README.md ├── 2676-throttle ├── 2676-throttle.js ├── NOTES.md └── README.md ├── 2677-chunk-array ├── 2677-chunk-array.js ├── NOTES.md └── README.md ├── 2678-number-of-senior-citizens ├── 2678-number-of-senior-citizens.cpp └── README.md ├── 2680-maximum-or ├── 2680-maximum-or.cpp ├── NOTES.md └── README.md ├── 2693-call-function-with-custom-context ├── 2693-call-function-with-custom-context.js └── README.md ├── 2695-array-wrapper ├── NOTES.md └── README.md ├── 2698-find-the-punishment-number-of-an-integer ├── 2698-find-the-punishment-number-of-an-integer.cpp ├── NOTES.md └── README.md ├── 2700-differences-between-two-objects └── README.md ├── 2706-buy-two-chocolates ├── 2706-buy-two-chocolates.cpp ├── NOTES.md └── README.md ├── 2707-extra-characters-in-a-string ├── 2707-extra-characters-in-a-string.cpp └── README.md ├── 2709-greatest-common-divisor-traversal ├── 2709-greatest-common-divisor-traversal.cpp ├── NOTES.md └── README.md ├── 2741-special-permutations ├── 2741-special-permutations.cpp ├── NOTES.md └── README.md ├── 2742-painting-the-walls ├── 2742-painting-the-walls.cpp ├── NOTES.md └── README.md ├── 2785-sort-vowels-in-a-string ├── NOTES.md └── README.md ├── 2811-check-if-it-is-possible-to-split-array ├── 2811-check-if-it-is-possible-to-split-array.cpp ├── NOTES.md └── README.md ├── 2812-find-the-safest-path-in-a-grid ├── 2812-find-the-safest-path-in-a-grid.cpp ├── NOTES.md └── README.md ├── 2816-double-a-number-represented-as-a-linked-list ├── 2816-double-a-number-represented-as-a-linked-list.cpp ├── NOTES.md └── README.md ├── 2833-furthest-point-from-origin ├── 2833-furthest-point-from-origin.cpp └── NOTES.md ├── 2842-count-k-subsequences-of-a-string-with-maximum-beauty ├── 2842-count-k-subsequences-of-a-string-with-maximum-beauty.cpp └── README.md ├── 2845-count-of-interesting-subarrays ├── 2845-count-of-interesting-subarrays.cpp └── README.md ├── 2849-determine-if-a-cell-is-reachable-at-a-given-time ├── 2849-determine-if-a-cell-is-reachable-at-a-given-time.cpp ├── NOTES.md └── README.md ├── 2864-maximum-odd-binary-number ├── 2864-maximum-odd-binary-number.cpp ├── NOTES.md └── README.md ├── 2870-minimum-number-of-operations-to-make-array-empty ├── 2870-minimum-number-of-operations-to-make-array-empty.cpp └── README.md ├── 2919-minimum-increment-operations-to-make-array-beautiful └── README.md ├── 2949-count-beautiful-substrings-ii ├── 2949-count-beautiful-substrings-ii.cpp └── NOTES.md ├── 2958-length-of-longest-subarray-with-at-most-k-frequency ├── 2958-length-of-longest-subarray-with-at-most-k-frequency.cpp ├── NOTES.md └── README.md ├── 2962-count-subarrays-where-max-element-appears-at-least-k-times ├── 2962-count-subarrays-where-max-element-appears-at-least-k-times.cpp ├── NOTES.md └── README.md ├── 2963-count-the-number-of-good-partitions ├── 2963-count-the-number-of-good-partitions.cpp ├── NOTES.md └── README.md ├── 2966-divide-array-into-arrays-with-max-difference ├── 2966-divide-array-into-arrays-with-max-difference.cpp ├── NOTES.md └── README.md ├── 2971-find-polygon-with-the-largest-perimeter ├── 2971-find-polygon-with-the-largest-perimeter.cpp ├── NOTES.md └── README.md ├── 2976-minimum-cost-to-convert-string-i ├── 2976-minimum-cost-to-convert-string-i.cpp └── README.md ├── 2982-find-longest-special-substring-that-occurs-thrice-ii ├── 2982-find-longest-special-substring-that-occurs-thrice-ii.cpp └── README.md ├── 2997-minimum-number-of-operations-to-make-array-xor-equal-to-k ├── 2997-minimum-number-of-operations-to-make-array-xor-equal-to-k.cpp ├── NOTES.md └── README.md ├── 3005-count-elements-with-maximum-frequency ├── 3005-count-elements-with-maximum-frequency.cpp └── README.md ├── 3035-maximum-palindromes-after-operations ├── 3035-maximum-palindromes-after-operations.cpp ├── NOTES.md └── README.md ├── 3068-find-the-maximum-sum-of-node-values ├── 3068-find-the-maximum-sum-of-node-values.cpp ├── NOTES.md └── README.md ├── 3075-maximize-happiness-of-selected-children ├── 3075-maximize-happiness-of-selected-children.cpp └── README.md ├── 3093-longest-common-suffix-queries ├── 3093-longest-common-suffix-queries.cpp └── README.md ├── 3108-minimum-cost-walk-in-weighted-graph ├── 3108-minimum-cost-walk-in-weighted-graph.cpp └── README.md ├── 3110-score-of-a-string ├── 3110-score-of-a-string.cpp └── README.md ├── 3137-minimum-number-of-operations-to-make-word-k-periodic ├── 3137-minimum-number-of-operations-to-make-word-k-periodic.cpp ├── NOTES.md └── README.md ├── 3138-minimum-length-of-anagram-concatenation ├── 3138-minimum-length-of-anagram-concatenation.cpp ├── NOTES.md └── README.md ├── 3139-minimum-cost-to-equalize-array ├── 3139-minimum-cost-to-equalize-array.cpp └── NOTES.md ├── 3154-find-number-of-ways-to-reach-the-k-th-stair ├── 3154-find-number-of-ways-to-reach-the-k-th-stair.cpp └── README.md ├── 3164-find-the-number-of-good-pairs-ii ├── 3164-find-the-number-of-good-pairs-ii.cpp └── README.md ├── 3169-count-days-without-meetings ├── 3169-count-days-without-meetings.cpp ├── NOTES.md └── README.md ├── 3171-find-subarray-with-bitwise-and-closest-to-k ├── 3171-find-subarray-with-bitwise-and-closest-to-k.cpp └── README.md ├── 3186-maximum-total-damage-with-spell-casting ├── 3186-maximum-total-damage-with-spell-casting.cpp ├── NOTES.md └── README.md ├── 3187-peaks-in-array ├── 3187-peaks-in-array.cpp └── README.md ├── 3202-find-the-maximum-length-of-valid-subsequence-ii ├── 3202-find-the-maximum-length-of-valid-subsequence-ii.cpp ├── NOTES.md └── README.md ├── 3203-find-minimum-diameter-after-merging-two-trees ├── 3203-find-minimum-diameter-after-merging-two-trees.cpp └── README.md ├── 3224-minimum-array-changes-to-make-differences-equal ├── 3224-minimum-array-changes-to-make-differences-equal.cpp └── README.md ├── 6911-continuous-subarrays ├── 6911-continuous-subarrays.cpp ├── NOTES.md └── README.md ├── BFS of graph - GFG └── README.md ├── Boolean Matrix - GFG ├── README.md └── boolean-matrix.cpp ├── Boundary traversal of matrix - GFG ├── README.md └── boundary-traversal-of-matrix.cpp ├── Check for Balanced Tree - GFG ├── README.md └── check-for-balanced-tree.cpp ├── Check if Tree is Isomorphic - GFG ├── README.md └── check-if-tree-is-isomorphic.cpp ├── Check whether K-th bit is set or not - GFG ├── README.md └── check-whether-kth-bit-is-set-or-not.cpp ├── Chocolate Distribution Problem - GFG ├── README.md └── chocolate-distribution-problem.cpp ├── Coin Change - GFG ├── README.md └── coin-change.cpp ├── Column name from a given column number - GFG ├── README.md └── column-name-from-a-given-column-number.cpp ├── DFS of Graph - GFG ├── README.md └── dfs-of-graph.java ├── Delete a Node in Single Linked List - GFG ├── README.md └── delete-a-node-in-single-linked-list.cpp ├── Equilibrium Point - GFG ├── README.md └── equilibrium-point.java ├── Eventual Safe States - GFG ├── README.md └── eventual-safe-states.cpp ├── Find Common Nodes in two BSTs - GFG ├── README.md └── find-common-nodes-in-two-bsts.cpp ├── Find duplicates in an array - GFG ├── README.md └── find-duplicates-in-an-array.java ├── Find first set bit - GFG └── find-first-set-bit.cpp ├── Find kth element of spiral matrix - GFG ├── README.md └── find-kth-element-of-spiral-matrix.java ├── Find triplets with zero sum - GFG ├── README.md └── find-triplets-with-zero-sum.java ├── First and last occurrences of x - GFG ├── README.md └── first-and-last-occurrences-of-x.cpp ├── First non-repeating character in a stream - GFG ├── README.md └── first-nonrepeating-character-in-a-stream.cpp ├── Flip Bits - GFG ├── README.md └── flip-bits.cpp ├── Form a number divisible by 3 using array digits - GFG ├── README.md └── form-a-number-divisible-by-3-using-array-digits.cpp ├── Fraction pairs with sum 1 - GFG ├── README.md └── fraction-pairs-with-sum-1.cpp ├── Height of Binary Tree - GFG ├── README.md └── height-of-binary-tree.cpp ├── Implement two stacks in an array - GFG ├── README.md ├── implement-two-stacks-in-an-array.cpp └── implement-two-stacks-in-an-array.java ├── Insert in a Sorted List - GFG ├── README.md └── insert-in-a-sorted-list.cpp ├── Knapsack with Duplicate Items - GFG ├── README.md └── knapsack-with-duplicate-items.cpp ├── Kth Ancestor in a Tree - GFG ├── README.md └── kth-ancestor-in-a-tree.cpp ├── Largest number possible - GFG ├── README.md └── largest-number-possible.cpp ├── Largest prime factor - GFG ├── README.md └── largest-prime-factor.cpp ├── Leaders in an array - GFG ├── README.md └── leaders-in-an-array.cpp ├── Leaf under budget - GFG ├── README.md └── leaf-under-budget.cpp ├── Leftmost and rightmost nodes of binary tree - GFG ├── README.md └── leftmost-and-rightmost-nodes-of-binary-tree.cpp ├── Level order traversal in spiral form - GFG ├── README.md └── level-order-traversal-in-spiral-form.java ├── Longest Common Subsequence - GFG ├── README.md └── longest-common-subsequence.cpp ├── Longest K unique characters substring - GFG ├── README.md └── longest-k-unique-characters-substring.cpp ├── Longest Palindromic Subsequence - GFG ├── README.md └── longest-palindromic-subsequence.java ├── Longest Repeating Subsequence - GFG ├── README.md └── longest-repeating-subsequence.cpp ├── Lowest Common Ancestor in a BST - GFG ├── README.md └── lowest-common-ancestor-in-a-bst.cpp ├── Maximum Sum Combination - GFG ├── README.md └── maximum-sum-combination.cpp ├── Maximum product subset of an array - GFG ├── README.md └── maximum-product-subset-of-an-array.cpp ├── Minimum Deletions - GFG ├── README.md └── minimum-deletions.cpp ├── Minimum Operations - GFG ├── README.md └── minimum-operations.cpp ├── Mother Vertex - GFG ├── README.md └── mother-vertex.cpp ├── Next Smallest Palindrome - GFG ├── README.md └── next-smallest-palindrome.cpp ├── Non Repeating Character - GFG ├── README.md └── non-repeating-character.cpp ├── Non Repeating Numbers - GFG ├── README.md └── non-repeating-numbers.cpp ├── Normal BST to Balanced BST - GFG ├── README.md └── normal-bst-to-balanced-bst.cpp ├── Nth Fibonacci Number - GFG ├── README.md └── nth-fibonacci-number.cpp ├── Number Of Enclaves - GFG ├── README.md └── number-of-enclaves.cpp ├── Number of paths - GFG ├── README.md └── number-of-paths.cpp ├── Pairwise swap elements of a linked list - GFG ├── README.md └── pairwise-swap-elements-of-a-linked-list.cpp ├── Palindrome String - GFG ├── README.md └── palindrome-string.cpp ├── Partition Equal Subset Sum - GFG ├── README.md └── partition-equal-subset-sum.cpp ├── Perfect Numbers - GFG ├── README.md └── perfect-numbers.cpp ├── Perfect Sum Problem - GFG ├── README.md └── perfect-sum-problem.cpp ├── Power Of Numbers - GFG ├── README.md └── power-of-numbers.java ├── Power of 2 - GFG ├── README.md └── power-of-2.cpp ├── Print adjacency list - GFG ├── README.md └── print-adjacency-list.cpp ├── Print first n Fibonacci Numbers - GFG ├── README.md └── print-first-n-fibonacci-numbers.cpp ├── Queue Reversal - GFG ├── README.md └── queue-reversal.cpp ├── README.md ├── Remove duplicate element from sorted Linked List - GFG ├── README.md └── remove-duplicate-element-from-sorted-linked-list.cpp ├── Reverse a Stack - GFG ├── README.md └── reverse-a-stack.cpp ├── Reverse alternate nodes in Link List - GFG ├── README.md └── reverse-alternate-nodes-in-link-list.cpp ├── Right View of Binary Tree - GFG ├── README.md └── right-view-of-binary-tree.cpp ├── Shortest Source to Destination Path - GFG ├── README.md ├── shortest-source-to-destination-path.cpp └── shortest-source-to-destination-path.java ├── Shortest path in Directed Acyclic Graph - GFG ├── README.md └── shortest-path-in-directed-acyclic-graph.cpp ├── Solve the Sudoku - GFG ├── README.md └── solve-the-sudoku.cpp ├── Sort an array of 0s, 1s and 2s - GFG ├── README.md └── sort-an-array-of-0s-1s-and-2s.java ├── String Permutations - GFG ├── README.md └── string-permutations.cpp ├── Strongly connected component (Tarjans's Algo) - GFG ├── README.md └── strongly-connected-component-tarjanss-algo.cpp ├── Subarray with given sum - GFG ├── README.md └── subarray-with-given-sum.cpp ├── Sum of all divisors from 1 to n - GFG ├── README.md └── sum-of-all-divisors-from-1-to-n.cpp ├── Surround the 1's - GFG ├── README.md └── surround-the-1s.cpp ├── Transitive closure of a Graph - GFG ├── README.md └── transitive-closure-of-a-graph.cpp ├── Unique Number of Occurrences - GFG ├── README.md └── unique-number-of-occurrences.java └── Wave Array - GFG ├── README.md └── wave-array.cpp /.github/KNOCKCATFUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/.github/KNOCKCATFUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/.gitignore -------------------------------------------------------------------------------- /0001-two-sum/0001-two-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0001-two-sum/0001-two-sum.cpp -------------------------------------------------------------------------------- /0001-two-sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0001-two-sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0001-two-sum/README.md -------------------------------------------------------------------------------- /0001. Two sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0001. Two sum.cpp -------------------------------------------------------------------------------- /0002. Add Two Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0002. Add Two Numbers.cpp -------------------------------------------------------------------------------- /0004-median-of-two-sorted-arrays/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0005-longest-palindromic-substring/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0006-zigzag-conversion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0006-zigzag-conversion/README.md -------------------------------------------------------------------------------- /0007. Reverse Integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0007. Reverse Integer.cpp -------------------------------------------------------------------------------- /0008. String to Integer (atoi).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0008. String to Integer (atoi).cpp -------------------------------------------------------------------------------- /0009-palindrome-number/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0009-palindrome-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0009-palindrome-number/README.md -------------------------------------------------------------------------------- /0009. Palindrome Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0009. Palindrome Number.cpp -------------------------------------------------------------------------------- /0011-container-with-most-water/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0011. Container With Most Water.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0011. Container With Most Water.cpp -------------------------------------------------------------------------------- /0012. Integer to Roman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0012. Integer to Roman.cpp -------------------------------------------------------------------------------- /0013. Roman to Integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0013. Roman to Integer.cpp -------------------------------------------------------------------------------- /0014. Longest Common Prefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0014. Longest Common Prefix.cpp -------------------------------------------------------------------------------- /0015-3sum/0015-3sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0015-3sum/0015-3sum.cpp -------------------------------------------------------------------------------- /0015-3sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0015-3sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0015-3sum/README.md -------------------------------------------------------------------------------- /0015. 3Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0015. 3Sum.cpp -------------------------------------------------------------------------------- /0016. 3Sum Closest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0016. 3Sum Closest.cpp -------------------------------------------------------------------------------- /0017-letter-combinations-of-a-phone-number/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0018-4sum/0018-4sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0018-4sum/0018-4sum.cpp -------------------------------------------------------------------------------- /0018-4sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0018-4sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0018-4sum/README.md -------------------------------------------------------------------------------- /0018. 4Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0018. 4Sum.cpp -------------------------------------------------------------------------------- /0019-remove-nth-node-from-end-of-list/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0020-valid-parentheses/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0020-valid-parentheses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0020-valid-parentheses/README.md -------------------------------------------------------------------------------- /0020. Valid Parentheses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0020. Valid Parentheses.cpp -------------------------------------------------------------------------------- /0021-merge-two-sorted-lists/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0021. Merge Two Sorted Lists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0021. Merge Two Sorted Lists.cpp -------------------------------------------------------------------------------- /0022-generate-parentheses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0022-generate-parentheses/README.md -------------------------------------------------------------------------------- /0022. Generate Parentheses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0022. Generate Parentheses.cpp -------------------------------------------------------------------------------- /0023-merge-k-sorted-lists/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0023-merge-k-sorted-lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0023-merge-k-sorted-lists/README.md -------------------------------------------------------------------------------- /0023. Merge k Sorted Lists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0023. Merge k Sorted Lists.cpp -------------------------------------------------------------------------------- /0024. Swap Nodes in Pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0024. Swap Nodes in Pairs.cpp -------------------------------------------------------------------------------- /0025-reverse-nodes-in-k-group/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0026-remove-duplicates-from-sorted-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0027. Remove Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0027. Remove Element.cpp -------------------------------------------------------------------------------- /0028-find-the-index-of-the-first-occurrence-in-a-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0028. Implement strStr().cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0028. Implement strStr().cpp -------------------------------------------------------------------------------- /0031-next-permutation/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0031-next-permutation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0031-next-permutation/README.md -------------------------------------------------------------------------------- /0031. Next Permutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0031. Next Permutation.cpp -------------------------------------------------------------------------------- /0033-search-in-rotated-sorted-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0035. Search Insert Position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0035. Search Insert Position.cpp -------------------------------------------------------------------------------- /0036. Valid Sudoku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0036. Valid Sudoku.cpp -------------------------------------------------------------------------------- /0039. Combination Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0039. Combination Sum.cpp -------------------------------------------------------------------------------- /0040-combination-sum-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0040-combination-sum-ii/README.md -------------------------------------------------------------------------------- /0040. Combination Sum II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0040. Combination Sum II.cpp -------------------------------------------------------------------------------- /0041. First Missing Positive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0041. First Missing Positive.cpp -------------------------------------------------------------------------------- /0042-trapping-rain-water/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0042-trapping-rain-water/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0042-trapping-rain-water/README.md -------------------------------------------------------------------------------- /0044-wildcard-matching/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0044-wildcard-matching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0044-wildcard-matching/README.md -------------------------------------------------------------------------------- /0046-permutations/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0046-permutations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0046-permutations/README.md -------------------------------------------------------------------------------- /0046. Permutations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0046. Permutations.cpp -------------------------------------------------------------------------------- /0047. Permutations II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0047. Permutations II.cpp -------------------------------------------------------------------------------- /0048-rotate-image/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0048-rotate-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0048-rotate-image/README.md -------------------------------------------------------------------------------- /0049-group-anagrams/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0049-group-anagrams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0049-group-anagrams/README.md -------------------------------------------------------------------------------- /0050-powx-n/0050-powx-n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0050-powx-n/0050-powx-n.cpp -------------------------------------------------------------------------------- /0050-powx-n/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0050-powx-n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0050-powx-n/README.md -------------------------------------------------------------------------------- /0050. Pow(x, n).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0050. Pow(x, n).cpp -------------------------------------------------------------------------------- /0053-maximum-subarray/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0053-maximum-subarray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0053-maximum-subarray/README.md -------------------------------------------------------------------------------- /0053. Maximum Subarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0053. Maximum Subarray.cpp -------------------------------------------------------------------------------- /0054-spiral-matrix/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0054-spiral-matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0054-spiral-matrix/README.md -------------------------------------------------------------------------------- /0054. Spiral Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0054. Spiral Matrix.cpp -------------------------------------------------------------------------------- /0055-jump-game/0055-jump-game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0055-jump-game/0055-jump-game.cpp -------------------------------------------------------------------------------- /0055-jump-game/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0055-jump-game/NOTES.md -------------------------------------------------------------------------------- /0055-jump-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0055-jump-game/README.md -------------------------------------------------------------------------------- /0056-merge-intervals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0056-merge-intervals/README.md -------------------------------------------------------------------------------- /0056. Merge Intervals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0056. Merge Intervals.cpp -------------------------------------------------------------------------------- /0057-insert-interval/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0057-insert-interval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0057-insert-interval/README.md -------------------------------------------------------------------------------- /0058-length-of-last-word/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0058-length-of-last-word/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0058-length-of-last-word/README.md -------------------------------------------------------------------------------- /0058. Length of Last Word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0058. Length of Last Word.cpp -------------------------------------------------------------------------------- /0059. Spiral Matrix II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0059. Spiral Matrix II.cpp -------------------------------------------------------------------------------- /0060. Permutation Sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0060. Permutation Sequence.cpp -------------------------------------------------------------------------------- /0061. Rotate List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0061. Rotate List.cpp -------------------------------------------------------------------------------- /0062-unique-paths/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0062-unique-paths/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0062-unique-paths/README.md -------------------------------------------------------------------------------- /0062. Unique Paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0062. Unique Paths.cpp -------------------------------------------------------------------------------- /0063-unique-paths-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0066. Plus One.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0066. Plus One.cpp -------------------------------------------------------------------------------- /0067-add-binary/0067-add-binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0067-add-binary/0067-add-binary.cpp -------------------------------------------------------------------------------- /0067-add-binary/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0067-add-binary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0067-add-binary/README.md -------------------------------------------------------------------------------- /0067. Add Binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0067. Add Binary.cpp -------------------------------------------------------------------------------- /0068-text-justification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0068-text-justification/README.md -------------------------------------------------------------------------------- /0069-sqrtx/0069-sqrtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0069-sqrtx/0069-sqrtx.cpp -------------------------------------------------------------------------------- /0069-sqrtx/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0069-sqrtx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0069-sqrtx/README.md -------------------------------------------------------------------------------- /0069. Sqrt(x).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0069. Sqrt(x).cpp -------------------------------------------------------------------------------- /0070-climbing-stairs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0070-climbing-stairs/README.md -------------------------------------------------------------------------------- /0070. Climbing Stairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0070. Climbing Stairs.cpp -------------------------------------------------------------------------------- /0071-simplify-path/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0071-simplify-path/README.md -------------------------------------------------------------------------------- /0071. Simplify Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0071. Simplify Path.cpp -------------------------------------------------------------------------------- /0072-edit-distance/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0072-edit-distance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0072-edit-distance/README.md -------------------------------------------------------------------------------- /0073-set-matrix-zeroes/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0073-set-matrix-zeroes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0073-set-matrix-zeroes/README.md -------------------------------------------------------------------------------- /0073. Set Matrix Zeroes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0073. Set Matrix Zeroes.cpp -------------------------------------------------------------------------------- /0074-search-a-2d-matrix/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0074-search-a-2d-matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0074-search-a-2d-matrix/README.md -------------------------------------------------------------------------------- /0074. Search a 2D Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0074. Search a 2D Matrix.cpp -------------------------------------------------------------------------------- /0075-sort-colors/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0075-sort-colors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0075-sort-colors/README.md -------------------------------------------------------------------------------- /0075. Sort Colors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0075. Sort Colors.cpp -------------------------------------------------------------------------------- /0076. Minimum Window Substring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0076. Minimum Window Substring.cpp -------------------------------------------------------------------------------- /0077-combinations/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0078-subsets/0078-subsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0078-subsets/0078-subsets.cpp -------------------------------------------------------------------------------- /0078-subsets/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0078-subsets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0078-subsets/README.md -------------------------------------------------------------------------------- /0078. Subsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0078. Subsets.cpp -------------------------------------------------------------------------------- /0079-word-search/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0079-word-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0079-word-search/README.md -------------------------------------------------------------------------------- /0081-search-in-rotated-sorted-array-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0084-largest-rectangle-in-histogram/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0085-maximal-rectangle/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0085-maximal-rectangle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0085-maximal-rectangle/README.md -------------------------------------------------------------------------------- /0086-partition-list/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0086-partition-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0086-partition-list/README.md -------------------------------------------------------------------------------- /0086. Partition List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0086. Partition List.cpp -------------------------------------------------------------------------------- /0087-scramble-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0087-scramble-string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0087-scramble-string/README.md -------------------------------------------------------------------------------- /0088-merge-sorted-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0088-merge-sorted-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0088-merge-sorted-array/README.md -------------------------------------------------------------------------------- /0088. Merge Sorted Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0088. Merge Sorted Array.cpp -------------------------------------------------------------------------------- /0090-subsets-ii/0090-subsets-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0090-subsets-ii/0090-subsets-ii.cpp -------------------------------------------------------------------------------- /0090-subsets-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0090-subsets-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0090-subsets-ii/README.md -------------------------------------------------------------------------------- /0091-decode-ways/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0091-decode-ways/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0091-decode-ways/README.md -------------------------------------------------------------------------------- /0092. Reverse Linked List II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0092. Reverse Linked List II.cpp -------------------------------------------------------------------------------- /0093-restore-ip-addresses/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0093-restore-ip-addresses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0093-restore-ip-addresses/README.md -------------------------------------------------------------------------------- /0094-binary-tree-inorder-traversal/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0095-unique-binary-search-trees-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0096-unique-binary-search-trees/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0097-interleaving-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0097-interleaving-string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0097-interleaving-string/README.md -------------------------------------------------------------------------------- /0097. Interleaving String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0097. Interleaving String.cpp -------------------------------------------------------------------------------- /0100-same-tree/0100-same-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0100-same-tree/0100-same-tree.cpp -------------------------------------------------------------------------------- /0100-same-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0100-same-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0100-same-tree/README.md -------------------------------------------------------------------------------- /0100. Same Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0100. Same Tree.cpp -------------------------------------------------------------------------------- /0101-symmetric-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0101-symmetric-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0101-symmetric-tree/README.md -------------------------------------------------------------------------------- /0101. Symmetric Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0101. Symmetric Tree.cpp -------------------------------------------------------------------------------- /0104-maximum-depth-of-binary-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0110-balanced-binary-tree/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0110-balanced-binary-tree/NOTES.md -------------------------------------------------------------------------------- /0110-balanced-binary-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0110-balanced-binary-tree/README.md -------------------------------------------------------------------------------- /0110. Balanced Binary Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0110. Balanced Binary Tree.cpp -------------------------------------------------------------------------------- /0112-path-sum/0112-path-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0112-path-sum/0112-path-sum.cpp -------------------------------------------------------------------------------- /0112-path-sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0112-path-sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0112-path-sum/README.md -------------------------------------------------------------------------------- /0112. Path Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0112. Path Sum.cpp -------------------------------------------------------------------------------- /0113-path-sum-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0113-path-sum-ii/README.md -------------------------------------------------------------------------------- /0115-distinct-subsequences/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0118-pascals-triangle/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0118-pascals-triangle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0118-pascals-triangle/README.md -------------------------------------------------------------------------------- /0118. Pascal's Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0118. Pascal's Triangle.cpp -------------------------------------------------------------------------------- /0119-pascals-triangle-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0119-pascals-triangle-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0119-pascals-triangle-ii/README.md -------------------------------------------------------------------------------- /0119. Pascal's Triangle II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0119. Pascal's Triangle II.cpp -------------------------------------------------------------------------------- /0120. Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0120. Triangle.cpp -------------------------------------------------------------------------------- /0121-best-time-to-buy-and-sell-stock/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0122-best-time-to-buy-and-sell-stock-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0123-best-time-to-buy-and-sell-stock-iii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0124-binary-tree-maximum-path-sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0125. Valid Palindrome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0125. Valid Palindrome.cpp -------------------------------------------------------------------------------- /0126-word-ladder-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0126-word-ladder-ii/README.md -------------------------------------------------------------------------------- /0128-longest-consecutive-sequence/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0129-sum-root-to-leaf-numbers/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0129. Sum Root to Leaf Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0129. Sum Root to Leaf Numbers.cpp -------------------------------------------------------------------------------- /0130-surrounded-regions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0130-surrounded-regions/README.md -------------------------------------------------------------------------------- /0131-palindrome-partitioning/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0132-palindrome-partitioning-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0133-clone-graph/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0133-clone-graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0133-clone-graph/README.md -------------------------------------------------------------------------------- /0133. Clone Graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0133. Clone Graph.cpp -------------------------------------------------------------------------------- /0134-gas-station/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0134-gas-station/README.md -------------------------------------------------------------------------------- /0135-candy/0135-candy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0135-candy/0135-candy.cpp -------------------------------------------------------------------------------- /0135-candy/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0135-candy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0135-candy/README.md -------------------------------------------------------------------------------- /0135. Candy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0135. Candy.cpp -------------------------------------------------------------------------------- /0136. Single Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0136. Single Number.cpp -------------------------------------------------------------------------------- /0137-single-number-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0137-single-number-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0137-single-number-ii/README.md -------------------------------------------------------------------------------- /0137. Single Number II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0137. Single Number II.cpp -------------------------------------------------------------------------------- /0138-copy-list-with-random-pointer/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0139-word-break/0139-word-break.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0139-word-break/0139-word-break.cpp -------------------------------------------------------------------------------- /0139-word-break/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0139-word-break/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0139-word-break/README.md -------------------------------------------------------------------------------- /0141-linked-list-cycle/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0141-linked-list-cycle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0141-linked-list-cycle/README.md -------------------------------------------------------------------------------- /0141. Linked List Cycle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0141. Linked List Cycle.cpp -------------------------------------------------------------------------------- /0142-linked-list-cycle-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0142-linked-list-cycle-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0142-linked-list-cycle-ii/README.md -------------------------------------------------------------------------------- /0142. Linked List Cycle II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0142. Linked List Cycle II.cpp -------------------------------------------------------------------------------- /0143-reorder-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0143-reorder-list/README.md -------------------------------------------------------------------------------- /0143. Reorder List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0143. Reorder List.cpp -------------------------------------------------------------------------------- /0144-binary-tree-preorder-traversal/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0145-binary-tree-postorder-traversal/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0146-lru-cache/0146-lru-cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0146-lru-cache/0146-lru-cache.cpp -------------------------------------------------------------------------------- /0146-lru-cache/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0146-lru-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0146-lru-cache/README.md -------------------------------------------------------------------------------- /0147. Insertion Sort List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0147. Insertion Sort List.cpp -------------------------------------------------------------------------------- /0148-sort-list/0148-sort-list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0148-sort-list/0148-sort-list.cpp -------------------------------------------------------------------------------- /0148-sort-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0148-sort-list/README.md -------------------------------------------------------------------------------- /0148. Sort List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0148. Sort List.cpp -------------------------------------------------------------------------------- /0149-max-points-on-a-line/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0149-max-points-on-a-line/README.md -------------------------------------------------------------------------------- /0150-evaluate-reverse-polish-notation/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0152-maximum-product-subarray/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0152. Maximum Product Subarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0152. Maximum Product Subarray.cpp -------------------------------------------------------------------------------- /0162-find-peak-element/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0162-find-peak-element/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0162-find-peak-element/README.md -------------------------------------------------------------------------------- /0162. Find Peak Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0162. Find Peak Element.cpp -------------------------------------------------------------------------------- /0165. Compare Version Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0165. Compare Version Numbers.cpp -------------------------------------------------------------------------------- /0168-excel-sheet-column-title/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0168. Excel Sheet Column Title.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0168. Excel Sheet Column Title.cpp -------------------------------------------------------------------------------- /0169-majority-element/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0169-majority-element/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0169-majority-element/README.md -------------------------------------------------------------------------------- /0169. Majority Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0169. Majority Element.cpp -------------------------------------------------------------------------------- /0171. Excel Sheet Column Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0171. Excel Sheet Column Number.cpp -------------------------------------------------------------------------------- /0179. Largest Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0179. Largest Number.cpp -------------------------------------------------------------------------------- /0187. Repeated DNA Sequences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0187. Repeated DNA Sequences.cpp -------------------------------------------------------------------------------- /0189-rotate-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0189. Rotate Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0189. Rotate Array.cpp -------------------------------------------------------------------------------- /0190. Reverse Bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0190. Reverse Bits.cpp -------------------------------------------------------------------------------- /0191. Number of 1 Bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0191. Number of 1 Bits.cpp -------------------------------------------------------------------------------- /0198-house-robber/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0198-house-robber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0198-house-robber/README.md -------------------------------------------------------------------------------- /0198. House Robber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0198. House Robber.cpp -------------------------------------------------------------------------------- /0200-number-of-islands/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0200-number-of-islands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0200-number-of-islands/README.md -------------------------------------------------------------------------------- /0201-bitwise-and-of-numbers-range/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0202. Happy Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0202. Happy Number.cpp -------------------------------------------------------------------------------- /0205-isomorphic-strings/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0205-isomorphic-strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0205-isomorphic-strings/README.md -------------------------------------------------------------------------------- /0206-reverse-linked-list/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0206. Reverse Linked List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0206. Reverse Linked List.cpp -------------------------------------------------------------------------------- /0207-course-schedule/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0207-course-schedule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0207-course-schedule/README.md -------------------------------------------------------------------------------- /0207. Course Schedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0207. Course Schedule.cpp -------------------------------------------------------------------------------- /0208-implement-trie-prefix-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0209-minimum-size-subarray-sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0210-course-schedule-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0210-course-schedule-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0210-course-schedule-ii/README.md -------------------------------------------------------------------------------- /0210. Course Schedule II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0210. Course Schedule II.cpp -------------------------------------------------------------------------------- /0214-shortest-palindrome/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0215-kth-largest-element-in-an-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0216. Combination Sum III.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0216. Combination Sum III.cpp -------------------------------------------------------------------------------- /0217. Contains Duplicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0217. Contains Duplicate.cpp -------------------------------------------------------------------------------- /0221-maximal-square/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0221-maximal-square/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0221-maximal-square/README.md -------------------------------------------------------------------------------- /0225-implement-stack-using-queues/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0226-invert-binary-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0226-invert-binary-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0226-invert-binary-tree/README.md -------------------------------------------------------------------------------- /0226. Invert Binary Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0226. Invert Binary Tree.cpp -------------------------------------------------------------------------------- /0228-summary-ranges/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0228-summary-ranges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0228-summary-ranges/README.md -------------------------------------------------------------------------------- /0228. Summary Ranges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0228. Summary Ranges.cpp -------------------------------------------------------------------------------- /0229. Majority Element II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0229. Majority Element II.cpp -------------------------------------------------------------------------------- /0231-power-of-two/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0231-power-of-two/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0231-power-of-two/README.md -------------------------------------------------------------------------------- /0231. Power of Two.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0231. Power of Two.cpp -------------------------------------------------------------------------------- /0232-implement-queue-using-stacks/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0234. Palindrome Linked List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0234. Palindrome Linked List.cpp -------------------------------------------------------------------------------- /0236-lowest-common-ancestor-of-a-binary-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0237-delete-node-in-a-linked-list/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0239-sliding-window-maximum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0240. Search a 2D Matrix II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0240. Search a 2D Matrix II.cpp -------------------------------------------------------------------------------- /0242-valid-anagram/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0242-valid-anagram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0242-valid-anagram/README.md -------------------------------------------------------------------------------- /0242. Valid Anagram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0242. Valid Anagram.cpp -------------------------------------------------------------------------------- /0257. Binary Tree Paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0257. Binary Tree Paths.cpp -------------------------------------------------------------------------------- /0258-add-digits/0258-add-digits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0258-add-digits/0258-add-digits.cpp -------------------------------------------------------------------------------- /0258-add-digits/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0258-add-digits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0258-add-digits/README.md -------------------------------------------------------------------------------- /0258. Add Digits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0258. Add Digits.cpp -------------------------------------------------------------------------------- /0260-single-number-iii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0260-single-number-iii/README.md -------------------------------------------------------------------------------- /0260. Single Number III.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0260. Single Number III.cpp -------------------------------------------------------------------------------- /0263. Ugly Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0263. Ugly Number.cpp -------------------------------------------------------------------------------- /0264-ugly-number-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0264-ugly-number-ii/README.md -------------------------------------------------------------------------------- /0264. Ugly Number II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0264. Ugly Number II.cpp -------------------------------------------------------------------------------- /0268-missing-number/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0268-missing-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0268-missing-number/README.md -------------------------------------------------------------------------------- /0268. Missing Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0268. Missing Number.cpp -------------------------------------------------------------------------------- /0278. First Bad Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0278. First Bad Version.cpp -------------------------------------------------------------------------------- /0279-perfect-squares/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0279-perfect-squares/NOTES.md -------------------------------------------------------------------------------- /0279-perfect-squares/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0279-perfect-squares/README.md -------------------------------------------------------------------------------- /0283-move-zeroes/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0283-move-zeroes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0283-move-zeroes/README.md -------------------------------------------------------------------------------- /0283. Move Zeroes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0283. Move Zeroes.cpp -------------------------------------------------------------------------------- /0284. Peeking Iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0284. Peeking Iterator.cpp -------------------------------------------------------------------------------- /0287-find-the-duplicate-number/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0287. Find the Duplicate Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0287. Find the Duplicate Number.cpp -------------------------------------------------------------------------------- /0289-game-of-life/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0289-game-of-life/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0289-game-of-life/README.md -------------------------------------------------------------------------------- /0289. Game of Life.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0289. Game of Life.cpp -------------------------------------------------------------------------------- /0290-word-pattern/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0290-word-pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0290-word-pattern/README.md -------------------------------------------------------------------------------- /0290. Word Pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0290. Word Pattern.cpp -------------------------------------------------------------------------------- /0292. Nim Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0292. Nim Game.cpp -------------------------------------------------------------------------------- /0299. Bulls and Cows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0299. Bulls and Cows.cpp -------------------------------------------------------------------------------- /0300-longest-increasing-subsequence/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0307-range-sum-query-mutable/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0307. Range Sum Query - Mutable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0307. Range Sum Query - Mutable.cpp -------------------------------------------------------------------------------- /0309-best-time-to-buy-and-sell-stock-with-cooldown/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0310-minimum-height-trees/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0310-minimum-height-trees/README.md -------------------------------------------------------------------------------- /0312-burst-balloons/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0312-burst-balloons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0312-burst-balloons/README.md -------------------------------------------------------------------------------- /0316. Remove Duplicate Letters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0316. Remove Duplicate Letters.cpp -------------------------------------------------------------------------------- /0319-bulb-switcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0319-bulb-switcher/README.md -------------------------------------------------------------------------------- /0322-coin-change/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0322-coin-change/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0322-coin-change/README.md -------------------------------------------------------------------------------- /0322. Coin Change.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0322. Coin Change.cpp -------------------------------------------------------------------------------- /0324-wiggle-sort-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0324-wiggle-sort-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0324-wiggle-sort-ii/README.md -------------------------------------------------------------------------------- /0326. Power of Three.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0326. Power of Three.cpp -------------------------------------------------------------------------------- /0328. Odd Even Linked List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0328. Odd Even Linked List.cpp -------------------------------------------------------------------------------- /0330-patching-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0330-patching-array/README.md -------------------------------------------------------------------------------- /0338-counting-bits/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0338-counting-bits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0338-counting-bits/README.md -------------------------------------------------------------------------------- /0338. Counting Bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0338. Counting Bits.cpp -------------------------------------------------------------------------------- /0341-flatten-nested-list-iterator/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0342-power-of-four/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0342-power-of-four/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0342-power-of-four/README.md -------------------------------------------------------------------------------- /0342. Power of Four.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0342. Power of Four.cpp -------------------------------------------------------------------------------- /0343-integer-break/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0343-integer-break/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0343-integer-break/README.md -------------------------------------------------------------------------------- /0344-reverse-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0344-reverse-string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0344-reverse-string/README.md -------------------------------------------------------------------------------- /0344. Reverse String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0344. Reverse String.cpp -------------------------------------------------------------------------------- /0347. Top K Frequent Elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0347. Top K Frequent Elements.cpp -------------------------------------------------------------------------------- /0349-intersection-of-two-arrays/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0354-russian-doll-envelopes/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0354. Russian Doll Envelopes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0354. Russian Doll Envelopes.cpp -------------------------------------------------------------------------------- /0367. Valid Perfect Square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0367. Valid Perfect Square.cpp -------------------------------------------------------------------------------- /0371. Sum of Two Integers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0371. Sum of Two Integers.cpp -------------------------------------------------------------------------------- /0372. Super Pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0372. Super Pow.cpp -------------------------------------------------------------------------------- /0376. Wiggle Subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0376. Wiggle Subsequence.cpp -------------------------------------------------------------------------------- /0377-combination-sum-iv/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0377-combination-sum-iv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0377-combination-sum-iv/README.md -------------------------------------------------------------------------------- /0377. Combination Sum IV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0377. Combination Sum IV.cpp -------------------------------------------------------------------------------- /0380-insert-delete-getrandom-o1/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0384-shuffle-an-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0384. Shuffle an Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0384. Shuffle an Array.cpp -------------------------------------------------------------------------------- /0387-first-unique-character-in-a-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0389-find-the-difference/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0389-find-the-difference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0389-find-the-difference/README.md -------------------------------------------------------------------------------- /0389. Find the Difference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0389. Find the Difference.cpp -------------------------------------------------------------------------------- /0392-is-subsequence/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0392-is-subsequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0392-is-subsequence/README.md -------------------------------------------------------------------------------- /0392. Is Subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0392. Is Subsequence.cpp -------------------------------------------------------------------------------- /0394. Decode String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0394. Decode String.cpp -------------------------------------------------------------------------------- /0398. Random Pick Index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0398. Random Pick Index.cpp -------------------------------------------------------------------------------- /0399-evaluate-division/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0399-evaluate-division/README.md -------------------------------------------------------------------------------- /0402-remove-k-digits/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0402-remove-k-digits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0402-remove-k-digits/README.md -------------------------------------------------------------------------------- /0402. Remove K Digits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0402. Remove K Digits.cpp -------------------------------------------------------------------------------- /0403-frog-jump/0403-frog-jump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0403-frog-jump/0403-frog-jump.cpp -------------------------------------------------------------------------------- /0403-frog-jump/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0403-frog-jump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0403-frog-jump/README.md -------------------------------------------------------------------------------- /0404-sum-of-left-leaves/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0404-sum-of-left-leaves/README.md -------------------------------------------------------------------------------- /0409-longest-palindrome/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0409-longest-palindrome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0409-longest-palindrome/README.md -------------------------------------------------------------------------------- /0409. Longest Palindrome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0409. Longest Palindrome.cpp -------------------------------------------------------------------------------- /0410-split-array-largest-sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0410. Split Array Largest Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0410. Split Array Largest Sum.cpp -------------------------------------------------------------------------------- /0412. Fizz Buzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0412. Fizz Buzz.cpp -------------------------------------------------------------------------------- /0413. Arithmetic Slices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0413. Arithmetic Slices.cpp -------------------------------------------------------------------------------- /0414. Third Maximum Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0414. Third Maximum Number.cpp -------------------------------------------------------------------------------- /0415. Add Strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0415. Add Strings.cpp -------------------------------------------------------------------------------- /0427-construct-quad-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0427-construct-quad-tree/README.md -------------------------------------------------------------------------------- /0435-non-overlapping-intervals/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0441. Arranging Coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0441. Arranging Coins.cpp -------------------------------------------------------------------------------- /0442-find-all-duplicates-in-an-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0443-string-compression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0443-string-compression/README.md -------------------------------------------------------------------------------- /0445-add-two-numbers-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0445-add-two-numbers-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0445-add-two-numbers-ii/README.md -------------------------------------------------------------------------------- /0446-arithmetic-slices-ii-subsequence/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0451-sort-characters-by-frequency/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0452-minimum-number-of-arrows-to-burst-balloons/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0454. 4Sum II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0454. 4Sum II.cpp -------------------------------------------------------------------------------- /0455-assign-cookies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0455-assign-cookies/README.md -------------------------------------------------------------------------------- /0455. Assign Cookies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0455. Assign Cookies.cpp -------------------------------------------------------------------------------- /0456-132-pattern/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0456-132-pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0456-132-pattern/README.md -------------------------------------------------------------------------------- /0456. 132 Pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0456. 132 Pattern.cpp -------------------------------------------------------------------------------- /0458. Poor Pigs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0458. Poor Pigs.cpp -------------------------------------------------------------------------------- /0459-repeated-substring-pattern/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0460-lfu-cache/0460-lfu-cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0460-lfu-cache/0460-lfu-cache.cpp -------------------------------------------------------------------------------- /0460-lfu-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0460-lfu-cache/README.md -------------------------------------------------------------------------------- /0461. Hamming Distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0461. Hamming Distance.cpp -------------------------------------------------------------------------------- /0462-minimum-moves-to-equal-array-elements-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0463. Island Perimeter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0463. Island Perimeter.cpp -------------------------------------------------------------------------------- /0472-concatenated-words/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0472-concatenated-words/README.md -------------------------------------------------------------------------------- /0473. Matchsticks to Square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0473. Matchsticks to Square.cpp -------------------------------------------------------------------------------- /0476-number-complement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0476-number-complement/README.md -------------------------------------------------------------------------------- /0476. Number Complement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0476. Number Complement.cpp -------------------------------------------------------------------------------- /0485. Max Consecutive Ones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0485. Max Consecutive Ones.cpp -------------------------------------------------------------------------------- /0486-predict-the-winner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0486-predict-the-winner/README.md -------------------------------------------------------------------------------- /0491-non-decreasing-subsequences/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0493-reverse-pairs/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0493-reverse-pairs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0493-reverse-pairs/README.md -------------------------------------------------------------------------------- /0494. Target Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0494. Target Sum.cpp -------------------------------------------------------------------------------- /0495. Teemo Attacking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0495. Teemo Attacking.cpp -------------------------------------------------------------------------------- /0496. Next Greater Element I.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0496. Next Greater Element I.cpp -------------------------------------------------------------------------------- /0502-ipo/0502-ipo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0502-ipo/0502-ipo.cpp -------------------------------------------------------------------------------- /0502-ipo/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0502-ipo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0502-ipo/README.md -------------------------------------------------------------------------------- /0504. Base 7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0504. Base 7.cpp -------------------------------------------------------------------------------- /0507. Perfect Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0507. Perfect Number.cpp -------------------------------------------------------------------------------- /0508-most-frequent-subtree-sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0509-fibonacci-number/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0509-fibonacci-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0509-fibonacci-number/README.md -------------------------------------------------------------------------------- /0509. Fibonacci Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0509. Fibonacci Number.cpp -------------------------------------------------------------------------------- /0513-find-bottom-left-tree-value/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0514-freedom-trail/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0514-freedom-trail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0514-freedom-trail/README.md -------------------------------------------------------------------------------- /0515-find-largest-value-in-each-tree-row/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0518-coin-change-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0518-coin-change-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0518-coin-change-ii/README.md -------------------------------------------------------------------------------- /0518. Coin Change 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0518. Coin Change 2.cpp -------------------------------------------------------------------------------- /0520-detect-capital/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0520-detect-capital/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0520-detect-capital/README.md -------------------------------------------------------------------------------- /0520. Detect Capital.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0520. Detect Capital.cpp -------------------------------------------------------------------------------- /0523-continuous-subarray-sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0525-contiguous-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0525. Contiguous Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0525. Contiguous Array.cpp -------------------------------------------------------------------------------- /0532. K-diff Pairs in an Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0532. K-diff Pairs in an Array.cpp -------------------------------------------------------------------------------- /0535. Encode and Decode TinyURL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0535. Encode and Decode TinyURL.cpp -------------------------------------------------------------------------------- /0541. Reverse String II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0541. Reverse String II.cpp -------------------------------------------------------------------------------- /0542-01-matrix/0542-01-matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0542-01-matrix/0542-01-matrix.cpp -------------------------------------------------------------------------------- /0542-01-matrix/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0542-01-matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0542-01-matrix/README.md -------------------------------------------------------------------------------- /0543-diameter-of-binary-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0547-number-of-provinces/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0547-number-of-provinces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0547-number-of-provinces/README.md -------------------------------------------------------------------------------- /0552-student-attendance-record-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0557-reverse-words-in-a-string-iii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0560-subarray-sum-equals-k/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0560. Subarray Sum Equals K.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0560. Subarray Sum Equals K.cpp -------------------------------------------------------------------------------- /0561. Array Partition I.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0561. Array Partition I.cpp -------------------------------------------------------------------------------- /0564-find-the-closest-palindrome/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0567. Permutation in String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0567. Permutation in String.cpp -------------------------------------------------------------------------------- /0575. Distribute Candi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0575. Distribute Candi.cpp -------------------------------------------------------------------------------- /0576-out-of-boundary-paths/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0576. Out of Boundary Paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0576. Out of Boundary Paths.cpp -------------------------------------------------------------------------------- /0584-find-customer-referee/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0590-n-ary-tree-postorder-traversal/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0593. Valid Square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0593. Valid Square.cpp -------------------------------------------------------------------------------- /0595-big-countries/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0605. Can Place Flowers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0605. Can Place Flowers.cpp -------------------------------------------------------------------------------- /0606-construct-string-from-binary-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0617. Merge Two Binary Trees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0617. Merge Two Binary Trees.cpp -------------------------------------------------------------------------------- /0621-task-scheduler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0621-task-scheduler/README.md -------------------------------------------------------------------------------- /0623-add-one-row-to-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0623-add-one-row-to-tree/README.md -------------------------------------------------------------------------------- /0628-maximum-product-of-three-numbers/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0629. K Inverse Pairs Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0629. K Inverse Pairs Array.cpp -------------------------------------------------------------------------------- /0633-sum-of-square-numbers/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0633. Sum of Square Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0633. Sum of Square Numbers.cpp -------------------------------------------------------------------------------- /0645-set-mismatch/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0645-set-mismatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0645-set-mismatch/README.md -------------------------------------------------------------------------------- /0645. Set Mismatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0645. Set Mismatch.cpp -------------------------------------------------------------------------------- /0646-maximum-length-of-pair-chain/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0647. Palindromic Substrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0647. Palindromic Substrings.cpp -------------------------------------------------------------------------------- /0648-replace-words/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0648-replace-words/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0648-replace-words/README.md -------------------------------------------------------------------------------- /0649-dota2-senate/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0650-2-keys-keyboard/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0650-2-keys-keyboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0650-2-keys-keyboard/README.md -------------------------------------------------------------------------------- /0652. Find Duplicate Subtrees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0652. Find Duplicate Subtrees.cpp -------------------------------------------------------------------------------- /0654. Maximum Binary Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0654. Maximum Binary Tree.cpp -------------------------------------------------------------------------------- /0661-image-smoother/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0661-image-smoother/README.md -------------------------------------------------------------------------------- /0662-maximum-width-of-binary-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0664-strange-printer/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0664-strange-printer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0664-strange-printer/README.md -------------------------------------------------------------------------------- /0665. Non-decreasing Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0665. Non-decreasing Array.cpp -------------------------------------------------------------------------------- /0673-number-of-longest-increasing-subsequence/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0678-valid-parenthesis-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0680. Valid Palindrome II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0680. Valid Palindrome II.cpp -------------------------------------------------------------------------------- /0682. Baseball Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0682. Baseball Game.cpp -------------------------------------------------------------------------------- /0684-redundant-connection/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0684-redundant-connection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0684-redundant-connection/README.md -------------------------------------------------------------------------------- /0690. Employee Importance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0690. Employee Importance.cpp -------------------------------------------------------------------------------- /0692-top-k-frequent-words/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0692-top-k-frequent-words/README.md -------------------------------------------------------------------------------- /0695. Max Area of Island.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0695. Max Area of Island.cpp -------------------------------------------------------------------------------- /0696. Count Binary Substrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0696. Count Binary Substrings.cpp -------------------------------------------------------------------------------- /0698-partition-to-k-equal-sum-subsets/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0703-kth-largest-element-in-a-stream/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0704-binary-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0704-binary-search/README.md -------------------------------------------------------------------------------- /0704. Binary Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0704. Binary Search.cpp -------------------------------------------------------------------------------- /0705-design-hashset/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0705-design-hashset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0705-design-hashset/README.md -------------------------------------------------------------------------------- /0705. Design HashSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0705. Design HashSet.cpp -------------------------------------------------------------------------------- /0706-design-hashmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0706-design-hashmap/README.md -------------------------------------------------------------------------------- /0706. Design HashMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0706. Design HashMap.cpp -------------------------------------------------------------------------------- /0709. To Lower Case.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0709. To Lower Case.cpp -------------------------------------------------------------------------------- /0712-minimum-ascii-delete-sum-for-two-strings/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0713-subarray-product-less-than-k/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0714-best-time-to-buy-and-sell-stock-with-transaction-fee/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0719-find-k-th-smallest-pair-distance/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0720-longest-word-in-dictionary/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0721-accounts-merge/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0721-accounts-merge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0721-accounts-merge/README.md -------------------------------------------------------------------------------- /0724. Find Pivot Index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0724. Find Pivot Index.cpp -------------------------------------------------------------------------------- /0725-split-linked-list-in-parts/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0728. Self Dividing Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0728. Self Dividing Numbers.cpp -------------------------------------------------------------------------------- /0729. My Calendar I.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0729. My Calendar I.cpp -------------------------------------------------------------------------------- /0733. Flood Fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0733. Flood Fill.cpp -------------------------------------------------------------------------------- /0735-asteroid-collision/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0735-asteroid-collision/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0735-asteroid-collision/README.md -------------------------------------------------------------------------------- /0735. Asteroid Collision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0735. Asteroid Collision.cpp -------------------------------------------------------------------------------- /0739-daily-temperatures/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0739-daily-temperatures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0739-daily-temperatures/README.md -------------------------------------------------------------------------------- /0740. Delete and Earn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0740. Delete and Earn.cpp -------------------------------------------------------------------------------- /0743-network-delay-time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0743-network-delay-time/README.md -------------------------------------------------------------------------------- /0743. Network Delay Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0743. Network Delay Time.cpp -------------------------------------------------------------------------------- /0745. Prefix and Suffix Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0745. Prefix and Suffix Search.cpp -------------------------------------------------------------------------------- /0746-min-cost-climbing-stairs/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0746. Min Cost Climbing Stairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0746. Min Cost Climbing Stairs.cpp -------------------------------------------------------------------------------- /0752-open-the-lock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0752-open-the-lock/README.md -------------------------------------------------------------------------------- /0763. Partition Labels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0763. Partition Labels.cpp -------------------------------------------------------------------------------- /0766. Toeplitz Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0766. Toeplitz Matrix.cpp -------------------------------------------------------------------------------- /0767-reorganize-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0767-reorganize-string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0767-reorganize-string/README.md -------------------------------------------------------------------------------- /0771. Jewels and Stones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0771. Jewels and Stones.cpp -------------------------------------------------------------------------------- /0783-minimum-distance-between-bst-nodes/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0785-is-graph-bipartite/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0785. Is Graph Bipartite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0785. Is Graph Bipartite.cpp -------------------------------------------------------------------------------- /0786-k-th-smallest-prime-fraction/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0787-cheapest-flights-within-k-stops/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0791-custom-sort-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0791-custom-sort-string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0791-custom-sort-string/README.md -------------------------------------------------------------------------------- /0799. Champagne Tower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0799. Champagne Tower.cpp -------------------------------------------------------------------------------- /0802-find-eventual-safe-states/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0808-soup-servings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0808-soup-servings/README.md -------------------------------------------------------------------------------- /0812. Largest Triangle Area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0812. Largest Triangle Area.cpp -------------------------------------------------------------------------------- /0820. Short Encoding of Words.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0820. Short Encoding of Words.cpp -------------------------------------------------------------------------------- /0823-binary-trees-with-factors/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0823. Binary Trees With Factors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0823. Binary Trees With Factors.cpp -------------------------------------------------------------------------------- /0826-most-profit-assigning-work/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0827-making-a-large-island/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0834-sum-of-distances-in-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0836. Rectangle Overlap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0836. Rectangle Overlap.cpp -------------------------------------------------------------------------------- /0837-new-21-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0837-new-21-game/README.md -------------------------------------------------------------------------------- /0839-similar-string-groups/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0839-similar-string-groups/NOTES.md -------------------------------------------------------------------------------- /0840-magic-squares-in-grid/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0841-keys-and-rooms/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0841-keys-and-rooms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0841-keys-and-rooms/README.md -------------------------------------------------------------------------------- /0844-backspace-string-compare/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0844. Backspace String Compare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0844. Backspace String Compare.cpp -------------------------------------------------------------------------------- /0845. Longest Mountain in Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0845. Longest Mountain in Array.cpp -------------------------------------------------------------------------------- /0846-hand-of-straights/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0846-hand-of-straights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0846-hand-of-straights/README.md -------------------------------------------------------------------------------- /0848. Shifting Letters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0848. Shifting Letters.cpp -------------------------------------------------------------------------------- /0852-peak-index-in-a-mountain-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0853. Car Fleet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0853. Car Fleet.cpp -------------------------------------------------------------------------------- /0856. Score of Parentheses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0856. Score of Parentheses.cpp -------------------------------------------------------------------------------- /0857-minimum-cost-to-hire-k-workers/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0858. Mirror Reflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0858. Mirror Reflection.cpp -------------------------------------------------------------------------------- /0859-buddy-strings/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0859-buddy-strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0859-buddy-strings/README.md -------------------------------------------------------------------------------- /0860-lemonade-change/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0860-lemonade-change/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0860-lemonade-change/README.md -------------------------------------------------------------------------------- /0863-all-nodes-distance-k-in-binary-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0867-transpose-matrix/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0867-transpose-matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0867-transpose-matrix/README.md -------------------------------------------------------------------------------- /0867. Transpose Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0867. Transpose Matrix.cpp -------------------------------------------------------------------------------- /0872-leaf-similar-trees/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0872-leaf-similar-trees/README.md -------------------------------------------------------------------------------- /0875-koko-eating-bananas/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0875-koko-eating-bananas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0875-koko-eating-bananas/README.md -------------------------------------------------------------------------------- /0875. Koko Eating Bananas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0875. Koko Eating Bananas.cpp -------------------------------------------------------------------------------- /0876. Middle of the Linked List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0876. Middle of the Linked List.cpp -------------------------------------------------------------------------------- /0879-profitable-schemes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0879-profitable-schemes/README.md -------------------------------------------------------------------------------- /0881-boats-to-save-people/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0881. Boats to Save People.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0881. Boats to Save People.cpp -------------------------------------------------------------------------------- /0885-spiral-matrix-iii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0885-spiral-matrix-iii/README.md -------------------------------------------------------------------------------- /0886-possible-bipartition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0886-possible-bipartition/README.md -------------------------------------------------------------------------------- /0890. Find and Replace Pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0890. Find and Replace Pattern.cpp -------------------------------------------------------------------------------- /0895. Maximum Frequency Stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0895. Maximum Frequency Stack.cpp -------------------------------------------------------------------------------- /0898. Bitwise ORs of Subarrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0898. Bitwise ORs of Subarrays.cpp -------------------------------------------------------------------------------- /0904-fruit-into-baskets/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0904-fruit-into-baskets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0904-fruit-into-baskets/README.md -------------------------------------------------------------------------------- /0905. Sort Array By Parity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0905. Sort Array By Parity.cpp -------------------------------------------------------------------------------- /0908. Smallest Range I.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0908. Smallest Range I.cpp -------------------------------------------------------------------------------- /0909-snakes-and-ladders/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0912-sort-an-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0912-sort-an-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0912-sort-an-array/README.md -------------------------------------------------------------------------------- /0912. Sort an Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0912. Sort an Array.cpp -------------------------------------------------------------------------------- /0916. Word Subsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0916. Word Subsets.cpp -------------------------------------------------------------------------------- /0917. Reverse Only Letters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0917. Reverse Only Letters.cpp -------------------------------------------------------------------------------- /0918-maximum-sum-circular-subarray/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0920-number-of-music-playlists/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0922. Sort Array By Parity II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0922. Sort Array By Parity II.cpp -------------------------------------------------------------------------------- /0923. 3Sum With Multiplicity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0923. 3Sum With Multiplicity.cpp -------------------------------------------------------------------------------- /0925. Long Pressed Name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0925. Long Pressed Name.cpp -------------------------------------------------------------------------------- /0930-binary-subarrays-with-sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0931-minimum-falling-path-sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0934-shortest-bridge/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0934-shortest-bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0934-shortest-bridge/README.md -------------------------------------------------------------------------------- /0938-range-sum-of-bst/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0938-range-sum-of-bst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0938-range-sum-of-bst/README.md -------------------------------------------------------------------------------- /0938. Range Sum of BST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0938. Range Sum of BST.cpp -------------------------------------------------------------------------------- /0941. Valid Mountain Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0941. Valid Mountain Array.cpp -------------------------------------------------------------------------------- /0944-delete-columns-to-make-sorted/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0945-minimum-increment-to-make-array-unique/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0946-validate-stack-sequences/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0946. Validate Stack Sequences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0946. Validate Stack Sequences.cpp -------------------------------------------------------------------------------- /0947-most-stones-removed-with-same-row-or-column/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0948-bag-of-tokens/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0948-bag-of-tokens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0948-bag-of-tokens/README.md -------------------------------------------------------------------------------- /0950-reveal-cards-in-increasing-order/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0953-verifying-an-alien-dictionary/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0955-delete-columns-to-make-sorted-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0956-tallest-billboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0956-tallest-billboard/README.md -------------------------------------------------------------------------------- /0959-regions-cut-by-slashes/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0968. Binary Tree Cameras.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0968. Binary Tree Cameras.cpp -------------------------------------------------------------------------------- /0974-subarray-sums-divisible-by-k/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0977-squares-of-a-sorted-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0980-unique-paths-iii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0980-unique-paths-iii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0980-unique-paths-iii/README.md -------------------------------------------------------------------------------- /0989-add-to-array-form-of-integer/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0991. Broken Calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0991. Broken Calculator.cpp -------------------------------------------------------------------------------- /0992-subarrays-with-k-different-integers/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0994-rotting-oranges/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0994-rotting-oranges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0994-rotting-oranges/README.md -------------------------------------------------------------------------------- /0995-minimum-number-of-k-consecutive-bit-flips/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0997-find-the-town-judge/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0997. Find the Town Judge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/0997. Find the Town Judge.cpp -------------------------------------------------------------------------------- /1002-find-common-characters/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1004-max-consecutive-ones-iii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1010-pairs-of-songs-with-total-durations-divisible-by-60/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1011-capacity-to-ship-packages-within-d-days/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1020-number-of-enclaves/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1025. Divisor Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1025. Divisor Game.cpp -------------------------------------------------------------------------------- /1029. Two City Scheduling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1029. Two City Scheduling.cpp -------------------------------------------------------------------------------- /1039-minimum-score-triangulation-of-polygon/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1043-partition-array-for-maximum-sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1046-last-stone-weight/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1046-last-stone-weight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1046-last-stone-weight/README.md -------------------------------------------------------------------------------- /1048. Longest String Chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1048. Longest String Chain.cpp -------------------------------------------------------------------------------- /1049. Last Stone Weight II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1049. Last Stone Weight II.cpp -------------------------------------------------------------------------------- /1051-height-checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1051-height-checker/README.md -------------------------------------------------------------------------------- /1051. Height Checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1051. Height Checker.cpp -------------------------------------------------------------------------------- /1052-grumpy-bookstore-owner/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1068-product-sales-analysis-i/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1071-greatest-common-divisor-of-strings/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1074-number-of-submatrices-that-sum-to-target/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1081-smallest-subsequence-of-distinct-characters/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1089. Duplicate Zeros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1089. Duplicate Zeros.cpp -------------------------------------------------------------------------------- /1092-shortest-common-supersequence/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1105-filling-bookcase-shelves/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1110-delete-nodes-and-return-forest/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1114. Print in Order.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1114. Print in Order.cpp -------------------------------------------------------------------------------- /1122-relative-sort-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1125-smallest-sufficient-team/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1129-shortest-path-with-alternating-colors/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1137-n-th-tribonacci-number/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1137. N-th Tribonacci Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1137. N-th Tribonacci Number.cpp -------------------------------------------------------------------------------- /1140-stone-game-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1140-stone-game-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1140-stone-game-ii/README.md -------------------------------------------------------------------------------- /1143-longest-common-subsequence/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1146-snapshot-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1146-snapshot-array/README.md -------------------------------------------------------------------------------- /1148-article-views-i/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1148-article-views-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1148-article-views-i/README.md -------------------------------------------------------------------------------- /1154. Day of the Year.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1154. Day of the Year.cpp -------------------------------------------------------------------------------- /1155-number-of-dice-rolls-with-target-sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1160-find-words-that-can-be-formed-by-characters/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1171-remove-zero-sum-consecutive-nodes-from-linked-list/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1192-critical-connections-in-a-network/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1203-sort-items-by-groups-respecting-dependencies/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1207-unique-number-of-occurrences/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1208-get-equal-substrings-within-budget/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1220-count-vowels-permutation/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1239-maximum-length-of-a-concatenated-string-with-unique-characters/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1248-count-number-of-nice-subarrays/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1260. Shift 2D Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1260. Shift 2D Grid.cpp -------------------------------------------------------------------------------- /1277-count-square-submatrices-with-all-ones/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1282-group-the-people-given-the-group-size-they-belong-to/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1291-sequential-digits/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1291. Sequential Digits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1291. Sequential Digits.cpp -------------------------------------------------------------------------------- /1302. Deepest Leaves Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1302. Deepest Leaves Sum.cpp -------------------------------------------------------------------------------- /1318-minimum-flips-to-make-a-or-b-equal-to-c/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1319-number-of-operations-to-make-network-connected/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1323. Maximum 69 Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1323. Maximum 69 Number.cpp -------------------------------------------------------------------------------- /1326-minimum-number-of-taps-to-open-to-water-a-garden/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1328. Break a Palindrome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1328. Break a Palindrome.cpp -------------------------------------------------------------------------------- /1334-find-the-city-with-the-smallest-number-of-neighbors-at-a-threshold-distance/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1339-maximum-product-of-splitted-binary-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1345-jump-game-iv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1345-jump-game-iv/README.md -------------------------------------------------------------------------------- /1347-minimum-number-of-steps-to-make-two-strings-anagram/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1351-count-negative-numbers-in-a-sorted-matrix/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1358-number-of-substrings-containing-all-three-characters/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1376-time-needed-to-inform-all-employees/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1378-replace-employee-id-with-the-unique-identifier/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1382-balance-a-binary-search-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1396-design-underground-system/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1406-stone-game-iii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1416-restore-the-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1417. Reformat The String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1417. Reformat The String.cpp -------------------------------------------------------------------------------- /1422-maximum-score-after-splitting-a-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1423-maximum-points-you-can-obtain-from-cards/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1424. Diagonal Traverse II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1424. Diagonal Traverse II.cpp -------------------------------------------------------------------------------- /1425-constrained-subsequence-sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1431-kids-with-the-greatest-number-of-candies/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1438-longest-continuous-subarray-with-absolute-diff-less-than-or-equal-to-limit/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1446. Consecutive Characters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1446. Consecutive Characters.cpp -------------------------------------------------------------------------------- /1456-maximum-number-of-vowels-in-a-substring-of-given-length/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1458-max-dot-product-of-two-subsequences/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1460-make-two-arrays-equal-by-reversing-subarrays/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1463-cherry-pickup-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1463-cherry-pickup-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1463-cherry-pickup-ii/README.md -------------------------------------------------------------------------------- /1464-maximum-product-of-two-elements-in-an-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1466-reorder-routes-to-make-all-paths-lead-to-the-city-zero/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1470-shuffle-the-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1470-shuffle-the-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1470-shuffle-the-array/README.md -------------------------------------------------------------------------------- /1470. Shuffle the Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1470. Shuffle the Array.cpp -------------------------------------------------------------------------------- /1473. Paint House III.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1473. Paint House III.cpp -------------------------------------------------------------------------------- /1476. Subrectangle Queries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1476. Subrectangle Queries.cpp -------------------------------------------------------------------------------- /1482-minimum-number-of-days-to-make-m-bouquets/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1489-find-critical-and-pseudo-critical-edges-in-minimum-spanning-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1493-longest-subarray-of-1s-after-deleting-one-element/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1496-path-crossing/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1496-path-crossing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1496-path-crossing/README.md -------------------------------------------------------------------------------- /1498-number-of-subsequences-that-satisfy-the-given-sum-condition/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1502-can-make-arithmetic-progression-from-sequence/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1503-last-moment-before-all-ants-fall-out-of-a-plank/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1508-range-sum-of-sorted-subarray-sums/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1509-minimum-difference-between-largest-and-smallest-value-in-three-moves/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1512-number-of-good-pairs/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1512. Number of Good Pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1512. Number of Good Pairs.cpp -------------------------------------------------------------------------------- /1514-path-with-maximum-probability/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1518-water-bottles/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1518-water-bottles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1518-water-bottles/README.md -------------------------------------------------------------------------------- /1523-count-odd-numbers-in-an-interval-range/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1528. Shuffle String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1528. Shuffle String.cpp -------------------------------------------------------------------------------- /1530-number-of-good-leaf-nodes-pairs/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1534. Count Good Triplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1534. Count Good Triplets.cpp -------------------------------------------------------------------------------- /1539-kth-missing-positive-number/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1544-make-the-string-great/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1550-three-consecutive-odds/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1550. Three Consecutive Odds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1550. Three Consecutive Odds.cpp -------------------------------------------------------------------------------- /1552-magnetic-force-between-two-balls/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1569-number-of-ways-to-reorder-array-to-get-same-bst/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1572-matrix-diagonal-sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1572. Matrix Diagonal Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1572. Matrix Diagonal Sum.cpp -------------------------------------------------------------------------------- /1575-count-all-possible-routes/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1578-minimum-time-to-make-rope-colorful/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1579-remove-max-number-of-edges-to-keep-graph-fully-traversable/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1582-special-positions-in-a-binary-matrix/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1584-min-cost-to-connect-all-points/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1598. Crawler Log Folder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1598. Crawler Log Folder.cpp -------------------------------------------------------------------------------- /1603. Design Parking System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1603. Design Parking System.cpp -------------------------------------------------------------------------------- /1605-find-valid-matrix-given-row-and-column-sums/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1608-special-array-with-x-elements-greater-than-or-equal-x/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1609-even-odd-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1609-even-odd-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1609-even-odd-tree/README.md -------------------------------------------------------------------------------- /1614-maximum-nesting-depth-of-the-parentheses/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1615-maximal-network-rank/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1624-largest-substring-between-two-equal-characters/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1637-widest-vertical-area-between-two-points-containing-no-points/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1639-number-of-ways-to-form-a-target-string-given-a-dictionary/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1647-minimum-deletions-to-make-character-frequencies-unique/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1657-determine-if-two-strings-are-close/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1675-minimize-deviation-in-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1683-invalid-tweets/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1683-invalid-tweets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1683-invalid-tweets/README.md -------------------------------------------------------------------------------- /1685-sum-of-absolute-differences-in-a-sorted-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1695. Maximum Erasure Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1695. Maximum Erasure Value.cpp -------------------------------------------------------------------------------- /1696. Jump Game VI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1696. Jump Game VI.cpp -------------------------------------------------------------------------------- /1700-number-of-students-unable-to-eat-lunch/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1704-determine-if-string-halves-are-alike/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1716-calculate-money-in-leetcode-bank/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1720. Decode XORed Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1720. Decode XORed Array.cpp -------------------------------------------------------------------------------- /1721-swapping-nodes-in-a-linked-list/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1727-largest-submatrix-with-rearrangements/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1732-find-the-highest-altitude/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1743-restore-the-array-from-adjacent-pairs/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1748. Sum of Unique Elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1748. Sum of Unique Elements.cpp -------------------------------------------------------------------------------- /1757-recyclable-and-low-fat-products/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1758-minimum-changes-to-make-alternating-binary-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1759-count-number-of-homogenous-substrings/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1768-merge-strings-alternately/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1793-maximum-score-of-a-good-subarray/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1797-design-authentication-manager/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1799-maximize-score-after-n-operations/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1802-maximum-value-at-a-given-index-in-a-bounded-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1816. Truncate Sentence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1816. Truncate Sentence.cpp -------------------------------------------------------------------------------- /1822-sign-of-the-product-of-an-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1833-maximum-ice-cream-bars/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1845-seat-reservation-manager/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1857-largest-color-value-in-a-directed-graph/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1859. Sorting the Sentence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1859. Sorting the Sentence.cpp -------------------------------------------------------------------------------- /1863-sum-of-all-subset-xor-totals/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1870-minimum-speed-to-arrive-on-time/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1877-minimize-maximum-pair-sum-in-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1897-redistribute-characters-to-make-all-strings-equal/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1903-largest-odd-number-in-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1905-count-sub-islands/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1905-count-sub-islands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1905-count-sub-islands/README.md -------------------------------------------------------------------------------- /1913-maximum-product-difference-between-two-pairs/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1929. Concatenation of Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1929. Concatenation of Array.cpp -------------------------------------------------------------------------------- /1930-unique-length-3-palindromic-subsequences/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1952. Three Divisors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/1952. Three Divisors.cpp -------------------------------------------------------------------------------- /1962-remove-stones-to-minimize-the-total/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1964-find-the-longest-valid-obstacle-course-at-each-position/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1976-number-of-ways-to-arrive-at-destination/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1980-find-unique-binary-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1985-find-the-kth-largest-integer-in-the-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2000-reverse-prefix-of-word/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2000. Reverse Prefix of Word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2000. Reverse Prefix of Word.cpp -------------------------------------------------------------------------------- /2024-maximize-the-confusion-of-an-exam/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2032. Two Out of Three.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2032. Two Out of Three.cpp -------------------------------------------------------------------------------- /2037-minimum-number-of-moves-to-seat-everyone/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2038-remove-colored-pieces-if-both-neighbors-are-the-same-color/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2045-second-minimum-time-to-reach-destination/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2053-kth-distinct-string-in-an-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2058-find-the-minimum-and-maximum-number-of-nodes-between-critical-points/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2073-time-needed-to-buy-tickets/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2079. Watering Plants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2079. Watering Plants.cpp -------------------------------------------------------------------------------- /2090-k-radius-subarray-averages/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2091-removing-minimum-and-maximum-from-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2092-find-all-people-with-secret/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2101-detonate-the-maximum-bombs/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2105. Watering Plants II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2105. Watering Plants II.cpp -------------------------------------------------------------------------------- /2125-number-of-laser-beams-in-a-bank/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2129. Capitalize the Title.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2129. Capitalize the Title.cpp -------------------------------------------------------------------------------- /2134-minimum-swaps-to-group-all-1s-together-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2141-maximum-running-time-of-n-computers/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2149-rearrange-array-elements-by-sign/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2187-minimum-time-to-complete-trips/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2192-all-ancestors-of-a-node-in-a-directed-acyclic-graph/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2218-maximum-value-of-k-coins-from-piles/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2225-find-players-with-zero-or-one-losses/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2251-number-of-flowers-in-full-bloom/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2256-minimum-average-difference/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2262-total-appeal-of-a-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2264-largest-3-same-digit-number-in-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2272-substring-with-largest-variance/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2279-maximum-bags-with-full-capacity-of-rocks/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2290-minimum-obstacle-removal-to-reach-corner/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2293. Min Max Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2293. Min Max Game.cpp -------------------------------------------------------------------------------- /2300-successful-pairs-of-spells-and-potions/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2305-fair-distribution-of-cookies/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2306-naming-a-company/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2306-naming-a-company/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2306-naming-a-company/README.md -------------------------------------------------------------------------------- /2328-number-of-increasing-paths-in-a-grid/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2331-evaluate-boolean-binary-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2336-smallest-number-in-infinite-set/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2342-max-sum-of-a-pair-with-equal-sum-of-digits/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2343-query-kth-smallest-trimmed-number/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2347. Best Poker Hand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2347. Best Poker Hand.cpp -------------------------------------------------------------------------------- /2352-equal-row-and-column-pairs/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2353-design-a-food-rating-system/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2358-maximum-number-of-groups-entering-a-competition/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2359-find-closest-node-to-given-two-nodes/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2363. Merge Similar Items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2363. Merge Similar Items.cpp -------------------------------------------------------------------------------- /2365. Task Scheduler II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2365. Task Scheduler II.cpp -------------------------------------------------------------------------------- /2366-minimum-replacements-to-sort-the-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2369-check-if-there-is-a-valid-partition-for-the-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2389-longest-subsequence-with-limited-sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2390-removing-stars-from-a-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2391-minimum-amount-of-time-to-collect-garbage/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2402-meeting-rooms-iii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2402-meeting-rooms-iii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2402-meeting-rooms-iii/README.md -------------------------------------------------------------------------------- /2405-optimal-partition-of-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2418-sort-the-people/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2418-sort-the-people/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2418-sort-the-people/README.md -------------------------------------------------------------------------------- /2433-find-the-original-array-of-prefix-xor/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2439-minimize-maximum-of-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2441-largest-positive-integer-that-exists-with-its-negative/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2444-count-subarrays-with-fixed-bounds/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2462-total-cost-to-hire-k-workers/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2477-minimum-fuel-cost-to-report-to-the-capital/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2482-difference-between-ones-and-zeros-in-row-and-column/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2483-minimum-penalty-for-a-shop/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2485-find-the-pivot-integer/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2492-minimum-score-of-a-path-between-two-cities/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2508-add-edges-to-make-degrees-of-all-nodes-even/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2512-reward-top-k-students/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2516-take-k-of-each-character-from-left-and-right/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2542-maximum-subsequence-score/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2551-put-marbles-in-bags/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2556-disconnect-path-in-a-binary-matrix-by-at-most-one-flip/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2567-minimum-score-by-changing-two-elements/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2582-pass-the-pillow/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2582-pass-the-pillow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2582-pass-the-pillow/README.md -------------------------------------------------------------------------------- /2591-distribute-money-to-maximum-children/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2597-the-number-of-beautiful-subsets/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2607-make-k-subarray-sums-equal/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2610-convert-an-array-into-a-2d-array-with-conditions/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2618-check-if-object-instance-of-class/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2619-array-prototype-last/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2620-counter/2620-counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2620-counter/2620-counter.js -------------------------------------------------------------------------------- /2620-counter/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2620-counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2620-counter/README.md -------------------------------------------------------------------------------- /2621-sleep/2621-sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2621-sleep/2621-sleep.js -------------------------------------------------------------------------------- /2621-sleep/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2621-sleep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2621-sleep/README.md -------------------------------------------------------------------------------- /2622-cache-with-time-limit/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2623-memoize/2623-memoize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2623-memoize/2623-memoize.js -------------------------------------------------------------------------------- /2623-memoize/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2623-memoize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2623-memoize/README.md -------------------------------------------------------------------------------- /2625-flatten-deeply-nested-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2627-debounce/2627-debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2627-debounce/2627-debounce.js -------------------------------------------------------------------------------- /2627-debounce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2627-debounce/README.md -------------------------------------------------------------------------------- /2628-json-deep-equal/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2628-json-deep-equal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2628-json-deep-equal/README.md -------------------------------------------------------------------------------- /2631-group-by/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2631-group-by/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2631-group-by/README.md -------------------------------------------------------------------------------- /2632-curry/2632-curry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2632-curry/2632-curry.js -------------------------------------------------------------------------------- /2632-curry/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2633-convert-object-to-json-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2634-filter-elements-from-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2635-apply-transform-over-each-element-in-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2636-promise-pool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2636-promise-pool/README.md -------------------------------------------------------------------------------- /2637-promise-time-limit/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2642-design-graph-with-shortest-path-calculator/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2649-nested-array-generator/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2661-first-completely-painted-row-or-column/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2665-counter-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2665-counter-ii/README.md -------------------------------------------------------------------------------- /2666-allow-one-function-call/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2675-array-of-objects-to-matrix/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2676-throttle/2676-throttle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2676-throttle/2676-throttle.js -------------------------------------------------------------------------------- /2676-throttle/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2676-throttle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2676-throttle/README.md -------------------------------------------------------------------------------- /2677-chunk-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2677-chunk-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2677-chunk-array/README.md -------------------------------------------------------------------------------- /2680-maximum-or/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2680-maximum-or/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2680-maximum-or/README.md -------------------------------------------------------------------------------- /2695-array-wrapper/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2695-array-wrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/2695-array-wrapper/README.md -------------------------------------------------------------------------------- /2698-find-the-punishment-number-of-an-integer/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2706-buy-two-chocolates/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2709-greatest-common-divisor-traversal/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2741-special-permutations/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2742-painting-the-walls/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2785-sort-vowels-in-a-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2811-check-if-it-is-possible-to-split-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2812-find-the-safest-path-in-a-grid/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2816-double-a-number-represented-as-a-linked-list/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2833-furthest-point-from-origin/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2849-determine-if-a-cell-is-reachable-at-a-given-time/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2864-maximum-odd-binary-number/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2949-count-beautiful-substrings-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2958-length-of-longest-subarray-with-at-most-k-frequency/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2962-count-subarrays-where-max-element-appears-at-least-k-times/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2963-count-the-number-of-good-partitions/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2966-divide-array-into-arrays-with-max-difference/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2971-find-polygon-with-the-largest-perimeter/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2997-minimum-number-of-operations-to-make-array-xor-equal-to-k/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /3035-maximum-palindromes-after-operations/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /3068-find-the-maximum-sum-of-node-values/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /3110-score-of-a-string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/3110-score-of-a-string/README.md -------------------------------------------------------------------------------- /3137-minimum-number-of-operations-to-make-word-k-periodic/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /3138-minimum-length-of-anagram-concatenation/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /3139-minimum-cost-to-equalize-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /3169-count-days-without-meetings/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /3186-maximum-total-damage-with-spell-casting/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /3187-peaks-in-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/3187-peaks-in-array/README.md -------------------------------------------------------------------------------- /3202-find-the-maximum-length-of-valid-subsequence-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /6911-continuous-subarrays/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /BFS of graph - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/BFS of graph - GFG/README.md -------------------------------------------------------------------------------- /Boolean Matrix - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/Boolean Matrix - GFG/README.md -------------------------------------------------------------------------------- /Coin Change - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/Coin Change - GFG/README.md -------------------------------------------------------------------------------- /DFS of Graph - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/DFS of Graph - GFG/README.md -------------------------------------------------------------------------------- /Flip Bits - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/Flip Bits - GFG/README.md -------------------------------------------------------------------------------- /Flip Bits - GFG/flip-bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/Flip Bits - GFG/flip-bits.cpp -------------------------------------------------------------------------------- /Mother Vertex - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/Mother Vertex - GFG/README.md -------------------------------------------------------------------------------- /Number of paths - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/Number of paths - GFG/README.md -------------------------------------------------------------------------------- /Perfect Numbers - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/Perfect Numbers - GFG/README.md -------------------------------------------------------------------------------- /Power Of Numbers - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/Power Of Numbers - GFG/README.md -------------------------------------------------------------------------------- /Power of 2 - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/Power of 2 - GFG/README.md -------------------------------------------------------------------------------- /Power of 2 - GFG/power-of-2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/Power of 2 - GFG/power-of-2.cpp -------------------------------------------------------------------------------- /Queue Reversal - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/Queue Reversal - GFG/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/README.md -------------------------------------------------------------------------------- /Reverse a Stack - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/Reverse a Stack - GFG/README.md -------------------------------------------------------------------------------- /Solve the Sudoku - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/Solve the Sudoku - GFG/README.md -------------------------------------------------------------------------------- /Surround the 1's - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/Surround the 1's - GFG/README.md -------------------------------------------------------------------------------- /Wave Array - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/Wave Array - GFG/README.md -------------------------------------------------------------------------------- /Wave Array - GFG/wave-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knockcat/Leetcode/HEAD/Wave Array - GFG/wave-array.cpp --------------------------------------------------------------------------------