An open API service indexing awesome lists of open source software.

https://github.com/fspv/learning

Leetcode solutions, contests and some other algorithm-related stuff
https://github.com/fspv/learning

algorithm contest-solution golang leetcode leetcode-python leetcode-solutions python

Last synced: about 1 year ago
JSON representation

Leetcode solutions, contests and some other algorithm-related stuff

Awesome Lists containing this project

README

          

# Grind tracking

This is the repo where I store every solved problem I encountered during my CS learning process.
It has hundreds of solved leetcode tasks as well as tasks from some online competitions. You'll find the list below. Also there are some implemented algorithms from CLRS.

## AdventOfCode
Task | Solution
-----|---------
[2021 Day 1](https://adventofcode.com/2021/day/1) | [Part 1 Python](/adventofcode/2021/1_1.py) [Part 2 Python](/adventofcode/2021/1_2.py)
[2022 Day 1](https://adventofcode.com/2022/day/1) | [Part 1 Golang](/adventofcode/2022/day01_1.go) [Part 2 Golang](/adventofcode/2022/day01_2.go)
[2022 Day 2](https://adventofcode.com/2022/day/2) | [Part 1 Golang](/adventofcode/2022/day02_1.go) [Part 2 Golang](/adventofcode/2022/day02_2.go)
[2022 Day 4](https://adventofcode.com/2022/day/4) | [Python](/adventofcode/2022/day04.py)
[2022 Day 5](https://adventofcode.com/2022/day/5) | [Python](/adventofcode/2022/day05.py)
[2022 Day 6](https://adventofcode.com/2022/day/6) | [Golang](/adventofcode/2022/day06.go)
[2022 Day 7](https://adventofcode.com/2022/day/7) | [Golang](/adventofcode/2022/day07.go)
[2022 Day 8](https://adventofcode.com/2022/day/8) | [Golang](/adventofcode/2022/day08.go)

## BinarySearch
Task | Solution
-----|---------
[Nearest Bus Stop From a House](https://binarysearch.com/problems/Nearest-Bus-Stop-From-a-House) | [Python](/binarysearch.com/Nearest-Bus-Stop-From-a-House.py)
[Non-Adjacent Combination Sum](https://binarysearch.com/problems/Non-Adjacent-Combination-Sum) | [Python](/binarysearch.com/Non-Adjacent-Combination-Sum.py)
[Sublist with Largest Min-Length Product](https://binarysearch.com/problems/Sublist-with-Largest-Min-Length-Product) | [Python](/binarysearch.com/Sublist-with-Largest-Min-Length-Product.py)
[Smallest Number With No Adjacent Duplicates](https://binarysearch.com/problems/Smallest-Number-With-No-Adjacent-Duplicates) | [Python](/binarysearch.com/Smallest-Number-With-No-Adjacent-Duplicates.py)

## Google Codejam
Task | Solution
-----|---------
[Qualification Round 2020: Vestigium](https://codingcompetitions.withgoogle.com/codejam/round/000000000019fd27/000000000020993c) | [Python](/codejam/2020-04-04/Vestigium/)
[Qualification Round 2020: Nesting Depth](https://codingcompetitions.withgoogle.com/codejam/round/000000000019fd27/0000000000209a9f) | [Python](/codejam/2020-04-04/Nesting_Depth/)
[Qualification Round 2020: Parenting Partnering Returns](https://codingcompetitions.withgoogle.com/codejam/round/000000000019fd27/000000000020bdf9) | [Python](/codejam/2020-04-04/Parenting_Partnering_Returns/)
[Qualification Round 2020: ESAb ATAd](https://codingcompetitions.withgoogle.com/codejam/round/000000000019fd27/0000000000209a9e) | [Python](/codejam/2020-04-04/ESAb_ATAd/)
[Qualification Round 2020: Indicium](https://codingcompetitions.withgoogle.com/codejam/round/000000000019fd27/0000000000209aa0) | [Python](/codejam/2020-04-04/Indicium/)
[Round 1B: 2020: Expogo](https://codingcompetitions.withgoogle.com/codejam/round/000000000019fef2/00000000002d5b62) | [Python](/codejam/2020-04-19/Expogo/)
[Qualification Round 2020: Punched Cards](https://codingcompetitions.withgoogle.com/codejam/round/0000000000876ff1/0000000000a4621b) | [Python](/codejam/2022-04-02/Punched_Cards)

## Facebook Hacker Cup
Task | Solution
-----|---------
[Qualification Round 2020: Travel Restrictions](https://www.facebook.com/codingcompetitions/hacker-cup/2020/qualification-round/problems/A) | [Python](/hacker-cup/2020/qualification_round/A/)
[Qualification Round 2020: Alchemy](https://www.facebook.com/codingcompetitions/hacker-cup/2020/qualification-round/problems/B) | [Python](/hacker-cup/2020/qualification_round/B/)
[Qualification Round 2020: Timber](https://www.facebook.com/codingcompetitions/hacker-cup/2020/qualification-round/problems/C) | [Python](/hacker-cup/2020/qualification_round/C/)
[Qualification Round 2020: Running on Fumes - Chapter 1](https://www.facebook.com/codingcompetitions/hacker-cup/2020/qualification-round/problems/D1) | [Python](/hacker-cup/2020/qualification_round/D1/)
[Qualification Round 2020: Running on Fumes - Chapter 2](https://www.facebook.com/codingcompetitions/hacker-cup/2020/qualification-round/problems/D2) | [Python](/hacker-cup/2020/qualification_round/D2/)

## CLRS
* [Binary search](/cormen-introduction/binary-search.py)
* [Binary tree](/cormen-introduction/binary_tree.py)
* [Deque](/cormen-introduction/deque.py)
* [Heap](/cormen-introduction/heap.py)
* [KMP algorithm](/cormen-introduction/kmp.py)
* [Linear search](/cormen-introduction/linear-search.py)
* [Linked List](/cormen-introduction/linked_list.py)
* [Merge Sort](/cormen-introduction/merge-sort.py)
* [Object array representation](/cormen-introduction/object_array_representation.py)
* [Helper to print binary tree](/cormen-introduction/print_binary_tree.py)
* [Queue](/cormen-introduction/deque.py)
* [Two stacks queue](/cormen-introduction/queue-two-stacks.py)
* [Really simple sort](/cormen-introduction/really-simple-sort.py)
* [Selection sort](/cormen-introduction/selection-sort.py)
* [Stack](/cormen-introduction/stack.py)
* [Two queues stack](/cormen-introduction/stack-two-queue.py)
* [Tree](/cormen-introduction/tree.py)
* [22.1-3](/cormen-introduction/22.1-3.py)
* [32.3-1](/cormen-introduction/32_3-1.py)

## Pramp
* [Array index and element equality](/pramp/array-index-and-element-equality.py)
* [Array of array products](/pramp/array-of-array-products.py)
* [Busiest time in the mall](/pramp/busiest-time-in-the-mall.py)
* [Largest smaller BST key](/pramp/largest-smaller-bst-key.py)

## Hackerrank
Task | Solution
-----|---------
[2D Array - DS](https://www.hackerrank.com/challenges/2d-array/problem) | [Python](/hackerrank/2d-array.py)
[Climbing the Leaderboard](https://www.hackerrank.com/challenges/climbing-the-leaderboard/problem) | [Python](/hackerrank/climbing-the-leaderboard.py)
[Counting Valleys](https://www.hackerrank.com/challenges/counting-valleys/problem) | [Python](/hackerrank/counting-valleys.py)
[Arrays: Left Rotation](https://www.hackerrank.com/challenges/ctci-array-left-rotation/problem) | [Python](/hackerrank/ctci-array-left-rotation.py)
[Sorting: Bubble Sort](https://www.hackerrank.com/challenges/ctci-bubble-sort/problem) | [Python](/hackerrank/ctci-bubble-sort.py)
Merge Sort | [Python](/hackerrank/ctci-merge-sort.py)
[Jumping on the Clouds](https://www.hackerrank.com/challenges/jumping-on-the-clouds/problem) | [Python](/hackerrank/jumping-on-the-clouds.py)
[Forming a Magic Square](https://www.hackerrank.com/challenges/magic-square-forming/problem) | [Python](/hackerrank/magic-square-forming.py)
[Repeated String](https://www.hackerrank.com/challenges/repeated-string/problem) | [Python](/hackerrank/repeated-string.py)
[Sales by Match](https://www.hackerrank.com/challenges/sock-merchant/problem) | [Python](/hackerrank/sock-merchant.py)

## C++ (Yandex course on coursera)
* [Week 1](/c-plus-plus-white/week1/)
* [Week 2](/c-plus-plus-white/week2/)

## Desing patterns
* [Decorator](/design_patterns/decorator.py)
* [Observer](/design_patterns/observer.py)

## Yandex mentor qualification competition
[Отборочное задание для наставников курса "Алгоритмы для разработчиков"](https://contest.yandex.ru/contest/25397/enter/)

Task | Solution
-----|---------
[A. Палиндромная конкатенация](https://contest.yandex.ru/contest/25397/problems/A/) | [Python](/yandex/qualification-for-mentors/palindrome-concatenation.py) [Golang](/yandex/qualification-for-mentors/palindrome-concatenation.go)
[B. Расстановка скобок](https://contest.yandex.ru/contest/25397/problems/B/) | [Python](/yandex/qualification-for-mentors/matrix-multiplication.py) [Golang](/yandex/qualification-for-mentors/matrix-multiplication.go)
[C. Путь по компонентам](https://contest.yandex.ru/contest/25397/problems/C/) | [Python](/yandex/qualification-for-mentors/component-path.py) [Golang](/yandex/qualification-for-mentors/component-path.go)

## Codeforces

Task | Solution
-----|---------
[103715: A](https://codeforces.com/gym/103715/problem/A) | [Python](/codeforces/103715/A.py)
[103715: B](https://codeforces.com/gym/103715/problem/B) | [Python](/codeforces/103715/B.py)
[103715: C](https://codeforces.com/gym/103715/problem/C) | [Python](/codeforces/103715/C.py)
[103715: D](https://codeforces.com/gym/103715/problem/D) | [Python](/codeforces/103715/D.py)

## Presentations (drafts)
* [Quicksort](/presentations/faang_learning_group/quicksort/)

## Leetcode
Task | Solution
-----|---------
[Reorganize String](https://leetcode.com/problems/reorganize-string/) | [Python](/l33tcode/reorganize-string.py) [Golang](/l33tcode/reorganize-string.go)
[Sequence Reconstruction](https://leetcode.com/problems/sequence-reconstruction/) | [Python](/l33tcode/sequence-reconstruction.py)
[Reduce Array Size to The Half](https://leetcode.com/problems/reduce-array-size-to-the-half/) | [Python](/l33tcode/reduce-array-size-to-the-half.py)
[Maximum Repeating Substring](https://leetcode.com/problems/maximum-repeating-substring/) | [Python](/l33tcode/maximum-repeating-substring.py)
[Distribute Repeating Integers](https://leetcode.com/problems/distribute-repeating-integers/) | [Python](/l33tcode/distribute-repeating-integers.py)
[Best Time to Buy and Sell Stock with Cooldown](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-cooldown/) | [Python](/l33tcode/best-time-to-buy-and-sell-stock-with-cooldown.py)
[Pairs of Songs With Total Durations Divisible by 60](https://leetcode.com/problems/pairs-of-songs-with-total-durations-divisible-by-60/) | [Python](/l33tcode/pairs-of-songs-with-total-durations-divisible-by-60.py)
[4Sum II](https://leetcode.com/problems/4sum-ii/) | [Python](/l33tcode/4sum-ii.py)
[Partition Array for Maximum Sum](https://leetcode.com/problems/partition-array-for-maximum-sum/) | [Python](/l33tcode/partition-array-for-maximum-sum.py)
[K-th Symbol in Grammar](https://leetcode.com/problems/k-th-symbol-in-grammar/) | [Python](/l33tcode/k-th-symbol-in-grammar.py)
[Detect Capital](https://leetcode.com/problems/detect-capital/) | [Python](/l33tcode/detect-capital.py)
[3Sum With Multiplicity](https://leetcode.com/problems/3sum-with-multiplicity/) | [Python](/l33tcode/3sum-with-multiplicity.py)
[Insert Delete GetRandom O(1) - Duplicates allowed](https://leetcode.com/problems/insert-delete-getrandom-o1-duplicates-allowed/) | [Python](/l33tcode/insert-delete-getrandom-o1-duplicates-allowed.py)
[Construct K Palindrome Strings](https://leetcode.com/problems/construct-k-palindrome-strings/) | [Python](/l33tcode/construct-k-palindrome-strings.py)
[Mean of Array After Removing Some Elements](https://leetcode.com/problems/mean-of-array-after-removing-some-elements/) | [Python](/l33tcode/mean-of-array-after-removing-some-elements.py)
[Verifying an Alien Dictionary](https://leetcode.com/problems/verifying-an-alien-dictionary/) | [Python](/l33tcode/verifying-an-alien-dictionary.py)
[Add Bold Tag in String](https://leetcode.com/problems/add-bold-tag-in-string/) | [Python](/l33tcode/add-bold-tag-in-string.py)
[Counting Bits](https://leetcode.com/problems/counting-bits/) | [Python](/l33tcode/counting-bits.py)
[Rabbits in Forest](https://leetcode.com/problems/rabbits-in-forest/) | [Golang](/l33tcode/rabbits-in-forest.go)
[Reordered Power of 2](https://leetcode.com/problems/reordered-power-of-2/) | [Python](/l33tcode/reordered-power-of-2.py)
[Vowel Spellchecker](https://leetcode.com/problems/vowel-spellchecker/) | [Python](/l33tcode/vowel-spellchecker.py)
[Count and Say](https://leetcode.com/problems/count-and-say/) | [Python](/l33tcode/count-and-say.py)
[Occurrences After Bigram](https://leetcode.com/problems/occurrences-after-bigram/) | [Python](/l33tcode/occurrences-after-bigram.py)
[Evaluate Division](https://leetcode.com/problems/evaluate-division/) | [Python](/l33tcode/evaluate-division.py)
[Element Appearing More Than 25% In Sorted Array](https://leetcode.com/problems/element-appearing-more-than-25-in-sorted-array/) | [Python](/l33tcode/element-appearing-more-than-25-in-sorted-array.py)
[Number of Recent Calls](https://leetcode.com/problems/number-of-recent-calls/) | [Python](/l33tcode/number-of-recent-calls.py)
[Largest Divisible Subset](https://leetcode.com/problems/largest-divisible-subset/) | [Python](/l33tcode/largest-divisible-subset.py)
[Number of Sets of K Non-Overlapping Line Segments](https://leetcode.com/problems/number-of-sets-of-k-non-overlapping-line-segments/) | [Python](/l33tcode/number-of-sets-of-k-non-overlapping-line-segments.py)
[Candy](https://leetcode.com/problems/candy/) | [Python](/l33tcode/candy.py)
[Contiguous Array](https://leetcode.com/problems/contiguous-array/) | [Python](/l33tcode/contiguous-array.py)
[Remove Linked List Elements](https://leetcode.com/problems/remove-linked-list-elements/) | [Python](/l33tcode/remove-linked-list-elements.py)
[Search in Rotated Sorted Array II](https://leetcode.com/problems/search-in-rotated-sorted-array-ii/) | [Python](/l33tcode/search-in-rotated-sorted-array-ii.py) [Golang](/l33tcode/search-in-rotated-sorted-array-ii.go)
[Best Time to Buy and Sell Stock II](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/) | [Python](/l33tcode/best-time-to-buy-and-sell-stock-ii.py)
[The Most Similar Path in a Graph](https://leetcode.com/problems/the-most-similar-path-in-a-graph/) | [Python](/l33tcode/the-most-similar-path-in-a-graph.py)
[Stone Game](https://leetcode.com/problems/stone-game/) | [Python](/l33tcode/stone-game.py)
[Cheapest Flights Within K Stops](https://leetcode.com/problems/cheapest-flights-within-k-stops/) | [Python](/l33tcode/cheapest-flights-within-k-stops.py)
[Maximum Product of Splitted Binary Tree](https://leetcode.com/problems/maximum-product-of-splitted-binary-tree/) | [Python](/l33tcode/maximum-product-of-splitted-binary-tree.py)
[Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/) | [Python](/l33tcode/remove-nth-node-from-end-of-list.py)
[Longest Arithmetic Subsequence](https://leetcode.com/problems/longest-arithmetic-subsequence/) | [Python](/l33tcode/longest-arithmetic-subsequence.py)
[Longest Palindromic Subsequence](https://leetcode.com/problems/longest-palindromic-subsequence/) | [Python](/l33tcode/longest-palindromic-subsequence.py)
[Tiling a Rectangle with the Fewest Squares](https://leetcode.com/problems/tiling-a-rectangle-with-the-fewest-squares/) | [Python](/l33tcode/tiling-a-rectangle-with-the-fewest-squares.py)
[Minimum Cost Tree From Leaf Values](https://leetcode.com/problems/minimum-cost-tree-from-leaf-values/) | [Python](/l33tcode/minimum-cost-tree-from-leaf-values.py)
[Number of Connected Components in an Undirected Graph](https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph/) | [Python](/l33tcode/number-of-connected-components-in-an-undirected-graph.py) [Golang](/l33tcode/number-of-connected-components-in-an-undirected-graph.go)
[Sliding Window Maximum](https://leetcode.com/problems/sliding-window-maximum/) | [Python](/l33tcode/sliding-window-maximum.py)
[Dota2 Senate](https://leetcode.com/problems/dota2-senate/) | [Python](/l33tcode/dota2-senate.py)
[Count of Range Sum](https://leetcode.com/problems/count-of-range-sum/) | [Python](/l33tcode/count-of-range-sum.py)
[Letter Tile Possibilities](https://leetcode.com/problems/letter-tile-possibilities/) | [Python](/l33tcode/letter-tile-possibilities.py)
[Reconstruct Itinerary](https://leetcode.com/problems/reconstruct-itinerary/) | [Python](/l33tcode/reconstruct-itinerary.py)
[Maximum Length of Repeated Subarray](https://leetcode.com/problems/maximum-length-of-repeated-subarray/) | [Python](/l33tcode/maximum-length-of-repeated-subarray.py)
[Sequential Digits](https://leetcode.com/problems/sequential-digits/) | [Python](/l33tcode/sequential-digits.py)
[Nested List Weight Sum](https://leetcode.com/problems/nested-list-weight-sum/) | [Python](/l33tcode/nested-list-weight-sum.py)
[Find a Corresponding Node of a Binary Tree in a Clone of That Tree](https://leetcode.com/problems/find-a-corresponding-node-of-a-binary-tree-in-a-clone-of-that-tree/) | [Python](/l33tcode/find-a-corresponding-node-of-a-binary-tree-in-a-clone-of-that-tree.py)
[Online Stock Span](https://leetcode.com/problems/online-stock-span/) | [Python](/l33tcode/online-stock-span.py) [Golang](/l33tcode/online-stock-span.go)
[Minimum Depth of Binary Tree](https://leetcode.com/problems/minimum-depth-of-binary-tree/) | [Python](/l33tcode/minimum-depth-of-binary-tree.py)
[Strong Password Checker](https://leetcode.com/problems/strong-password-checker/) | [Python](/l33tcode/strong-password-checker.py)
[Number Complement](https://leetcode.com/problems/number-complement/) | [Golang](/l33tcode/number-complement.go)
[Palindrome Partitioning II](https://leetcode.com/problems/palindrome-partitioning-ii/) | [Python](/l33tcode/palindrome-partitioning-ii.py)
[Contains Duplicate III](https://leetcode.com/problems/contains-duplicate-iii/) | [Python](/l33tcode/contains-duplicate-iii.py)
[3Sum](https://leetcode.com/problems/3sum/) | [Python](/l33tcode/3sum.py)
[Maximize Distance to Closest Person](https://leetcode.com/problems/maximize-distance-to-closest-person/) | [Python](/l33tcode/maximize-distance-to-closest-person.py)
[Binary Search Tree Iterator](https://leetcode.com/problems/binary-search-tree-iterator/) | [Python](/l33tcode/binary-search-tree-iterator.py)
[Reverse Words in a String](https://leetcode.com/problems/reverse-words-in-a-string/) | [Python](/l33tcode/reverse-words-in-a-string.py)
[Minimum Value to Get Positive Step by Step Sum](https://leetcode.com/problems/minimum-value-to-get-positive-step-by-step-sum/) | [Python](/l33tcode/minimum-value-to-get-positive-step-by-step-sum.py)
[Circle and Rectangle Overlapping](https://leetcode.com/problems/circle-and-rectangle-overlapping/) | [Python](/l33tcode/circle-and-rectangle-overlapping.py)
[Synonymous Sentences](https://leetcode.com/problems/synonymous-sentences/) | [Python](/l33tcode/synonymous-sentences.py)
[4 Keys Keyboard](https://leetcode.com/problems/4-keys-keyboard/) | [Python](/l33tcode/4-keys-keyboard.py)
[The Maze II](https://leetcode.com/problems/the-maze-ii/) | [Python](/l33tcode/the-maze-ii.py)
[Check If a String Contains All Binary Codes of Size K](https://leetcode.com/problems/check-if-a-string-contains-all-binary-codes-of-size-k/) | [Python](/l33tcode/check-if-a-string-contains-all-binary-codes-of-size-k.py)
[Best Sightseeing Pair](https://leetcode.com/problems/best-sightseeing-pair/) | [Python](/l33tcode/best-sightseeing-pair.py)
[First Bad Version](https://leetcode.com/problems/first-bad-version/) | [Python](/l33tcode/first-bad-version.py)
[Reveal Cards In Increasing Order](https://leetcode.com/problems/reveal-cards-in-increasing-order/) | [Python](/l33tcode/reveal-cards-in-increasing-order.py)
[Moving Average from Data Stream](https://leetcode.com/problems/moving-average-from-data-stream/) | [Python](/l33tcode/moving-average-from-data-stream.py)
[String to Integer (atoi)](https://leetcode.com/problems/string-to-integer-atoi/) | [Python](/l33tcode/string-to-integer-atoi.py)
[Backspace String Compare](https://leetcode.com/problems/backspace-string-compare/) | [Python](/l33tcode/backspace-string-compare.py)
[Invert Binary Tree](https://leetcode.com/problems/invert-binary-tree/) | [Python](/l33tcode/invert-binary-tree.py) [Golang](/l33tcode/invert-binary-tree.go)
[To Lower Case](https://leetcode.com/problems/to-lower-case/) | [Python](/l33tcode/to-lower-case.py)
[Number of Distinct Islands II](https://leetcode.com/problems/number-of-distinct-islands-ii/) | [Python](/l33tcode/number-of-distinct-islands-ii.py)
[Divide Two Integers](https://leetcode.com/problems/divide-two-integers/) | [Python](/l33tcode/divide-two-integers.py)
[Subarray Product Less Than K](https://leetcode.com/problems/subarray-product-less-than-k/) | [Python](/l33tcode/subarray-product-less-than-k.py)
[N-Queens](https://leetcode.com/problems/n-queens/) | [Python](/l33tcode/n-queens.py) [Golang](/l33tcode/n-queens.go)
[Asteroid Collision](https://leetcode.com/problems/asteroid-collision/) | [Python](/l33tcode/asteroid-collision.py)
[Keys and Rooms](https://leetcode.com/problems/keys-and-rooms/) | [Python](/l33tcode/keys-and-rooms.py) [Golang](/l33tcode/keys-and-rooms.go)
[Advantage Shuffle](https://leetcode.com/problems/advantage-shuffle/) | [Python](/l33tcode/advantage-shuffle.py)
[Average Waiting Time](https://leetcode.com/problems/average-waiting-time/) | [Python](/l33tcode/average-waiting-time.py)
[Pacific Atlantic Water Flow](https://leetcode.com/problems/pacific-atlantic-water-flow/) | [Python](/l33tcode/pacific-atlantic-water-flow.py)
[Get Maximum in Generated Array](https://leetcode.com/problems/get-maximum-in-generated-array/) | [Python](/l33tcode/get-maximum-in-generated-array.py)
[Maximum Gap](https://leetcode.com/problems/maximum-gap/) | [Python](/l33tcode/maximum-gap.py)
[Valid Parentheses](https://leetcode.com/problems/valid-parentheses/) | [Python](/l33tcode/valid-parentheses.py)
[All Paths From Source to Target](https://leetcode.com/problems/all-paths-from-source-to-target/) | [Python](/l33tcode/all-paths-from-source-to-target.py) [Golang](/l33tcode/all-paths-from-source-to-target.go)
[Coordinate With Maximum Network Quality](https://leetcode.com/problems/coordinate-with-maximum-network-quality/) | [Python](/l33tcode/coordinate-with-maximum-network-quality.py)
[Diagonal Traverse](https://leetcode.com/problems/diagonal-traverse/) | [Python](/l33tcode/diagonal-traverse.py)
[Binary Search](https://leetcode.com/problems/binary-search/) | [Python](/l33tcode/binary-search.py)
[Determine if Two Strings Are Close](https://leetcode.com/problems/determine-if-two-strings-are-close/) | [Python](/l33tcode/determine-if-two-strings-are-close.py) [Golang](/l33tcode/determine-if-two-strings-are-close.go)
[3Sum Closest](https://leetcode.com/problems/3sum-closest/) | [Python](/l33tcode/3sum-closest.py)
[Next Greater Node In Linked List](https://leetcode.com/problems/next-greater-node-in-linked-list/) | [Python](/l33tcode/next-greater-node-in-linked-list.py)
[Sqrt(x)](https://leetcode.com/problems/sqrtx/) | [Python](/l33tcode/sqrtx.py)
[4Sum](https://leetcode.com/problems/4sum/) | [Python](/l33tcode/4sum.py)
[Reach a Number](https://leetcode.com/problems/reach-a-number/) | [Python](/l33tcode/reach-a-number.py)
[Best Time to Buy and Sell Stock with Transaction Fee](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-transaction-fee/) | [Python](/l33tcode/best-time-to-buy-and-sell-stock-with-transaction-fee.py)
[Swapping Nodes in a Linked List](https://leetcode.com/problems/swapping-nodes-in-a-linked-list/) | [Python](/l33tcode/swapping-nodes-in-a-linked-list.py)
[Maximum Sum BST in Binary Tree](https://leetcode.com/problems/maximum-sum-bst-in-binary-tree/) | [Python](/l33tcode/maximum-sum-bst-in-binary-tree.py)
[Valid Boomerang](https://leetcode.com/problems/valid-boomerang/) | [Python](/l33tcode/valid-boomerang.py)
[Sum of Distances in Tree](https://leetcode.com/problems/sum-of-distances-in-tree/) | [Python](/l33tcode/sum-of-distances-in-tree.py)
[Check Completeness of a Binary Tree](https://leetcode.com/problems/check-completeness-of-a-binary-tree/) | [Python](/l33tcode/check-completeness-of-a-binary-tree.py)
[Combinations](https://leetcode.com/problems/combinations/) | [Python](/l33tcode/combinations.py)
[Array Nesting](https://leetcode.com/problems/array-nesting/) | [Python](/l33tcode/array-nesting.py)
[Combination Sum III](https://leetcode.com/problems/combination-sum-iii/) | [Python](/l33tcode/combination-sum-iii.py)
[Longest Palindrome](https://leetcode.com/problems/longest-palindrome/) | [Python](/l33tcode/longest-palindrome.py)
[Linked List Cycle II](https://leetcode.com/problems/linked-list-cycle-ii/) | [Python](/l33tcode/linked-list-cycle-ii.py)
[String Transforms Into Another String](https://leetcode.com/problems/string-transforms-into-another-string/) | [Python](/l33tcode/string-transforms-into-another-string.py)
[Single Number](https://leetcode.com/problems/single-number/) | [Python](/l33tcode/single-number.py)
[Generate Parentheses](https://leetcode.com/problems/generate-parentheses/) | [Python](/l33tcode/generate-parentheses.py) [Golang](/l33tcode/generate-parentheses.go)
[Distribute Candies](https://leetcode.com/problems/distribute-candies/) | [Python](/l33tcode/distribute-candies.py)
[Word Pattern](https://leetcode.com/problems/word-pattern/) | [Python](/l33tcode/word-pattern.py)
[Design Search Autocomplete System](https://leetcode.com/problems/design-search-autocomplete-system/) | [Python](/l33tcode/design-search-autocomplete-system.py)
[Median of Two Sorted Arrays](https://leetcode.com/problems/median-of-two-sorted-arrays/) | [Python](/l33tcode/median-of-two-sorted-arrays.py)
[Paint House II](https://leetcode.com/problems/paint-house-ii/) | [Python](/l33tcode/paint-house-ii.py)
[Find And Replace in String](https://leetcode.com/problems/find-and-replace-in-string/) | [Python](/l33tcode/find-and-replace-in-string.py)
[Summary Ranges](https://leetcode.com/problems/summary-ranges/) | [Python](/l33tcode/summary-ranges.py)
[Implement strStr()](https://leetcode.com/problems/implement-strstr/) | [Python](/l33tcode/implement-strstr.py)
[Tallest Billboard](https://leetcode.com/problems/tallest-billboard/) | [Python](/l33tcode/tallest-billboard.py)
[Length of Longest Fibonacci Subsequence](https://leetcode.com/problems/length-of-longest-fibonacci-subsequence/) | [Python](/l33tcode/length-of-longest-fibonacci-subsequence.py)
[Valid Palindrome II](https://leetcode.com/problems/valid-palindrome-ii/) | [Python](/l33tcode/valid-palindrome-ii.py)
[Beautiful Arrangement](https://leetcode.com/problems/beautiful-arrangement/) | [Python](/l33tcode/beautiful-arrangement.py)
[Flood Fill](https://leetcode.com/problems/flood-fill/) | [Python](/l33tcode/flood-fill.py)
[Maximum Binary String After Change](https://leetcode.com/problems/maximum-binary-string-after-change/) | [Python](/l33tcode/maximum-binary-string-after-change.py)
[Sum Root to Leaf Numbers](https://leetcode.com/problems/sum-root-to-leaf-numbers/) | [Python](/l33tcode/sum-root-to-leaf-numbers.py)
[Create Sorted Array through Instructions](https://leetcode.com/problems/create-sorted-array-through-instructions/) | [Python](/l33tcode/create-sorted-array-through-instructions.py)
[Odd Even Jump](https://leetcode.com/problems/odd-even-jump/) | [Python](/l33tcode/odd-even-jump.py)
[Largest Number](https://leetcode.com/problems/largest-number/) | [Python](/l33tcode/largest-number.py)
[Reverse String II](https://leetcode.com/problems/reverse-string-ii/) | [Python](/l33tcode/reverse-string-ii.py)
[Peak Index in a Mountain Array](https://leetcode.com/problems/peak-index-in-a-mountain-array/) | [Python](/l33tcode/peak-index-in-a-mountain-array.py)
[Longest Increasing Path in a Matrix](https://leetcode.com/problems/longest-increasing-path-in-a-matrix/) | [Python](/l33tcode/longest-increasing-path-in-a-matrix.py)
[Minimum Height Trees](https://leetcode.com/problems/minimum-height-trees/) | [Python](/l33tcode/minimum-height-trees.py)
[Sort Integers by The Power Value](https://leetcode.com/problems/sort-integers-by-the-power-value/) | [Python](/l33tcode/sort-integers-by-the-power-value.py)
[Numbers At Most N Given Digit Set](https://leetcode.com/problems/numbers-at-most-n-given-digit-set/) | [Python](/l33tcode/numbers-at-most-n-given-digit-set.py)
[Filling Bookcase Shelves](https://leetcode.com/problems/filling-bookcase-shelves/) | [Python](/l33tcode/filling-bookcase-shelves.py)
[Minimum Domino Rotations For Equal Row](https://leetcode.com/problems/minimum-domino-rotations-for-equal-row/) | [Python](/l33tcode/minimum-domino-rotations-for-equal-row.py)
[Minimum ASCII Delete Sum for Two Strings](https://leetcode.com/problems/minimum-ascii-delete-sum-for-two-strings/) | [Python](/l33tcode/minimum-ascii-delete-sum-for-two-strings.py)
[Consecutive Numbers Sum](https://leetcode.com/problems/consecutive-numbers-sum/) | [Python](/l33tcode/consecutive-numbers-sum.py)
[Binary Tree Zigzag Level Order Traversal](https://leetcode.com/problems/binary-tree-zigzag-level-order-traversal/) | [Python](/l33tcode/binary-tree-zigzag-level-order-traversal.py)
[Sudoku Solver](https://leetcode.com/problems/sudoku-solver/) | [Python](/l33tcode/sudoku-solver.py)
[Longest Duplicate Substring](https://leetcode.com/problems/longest-duplicate-substring/) | [Python](/l33tcode/longest-duplicate-substring.py)
[Product of Array Except Self](https://leetcode.com/problems/product-of-array-except-self/) | [Python](/l33tcode/product-of-array-except-self.py)
[Minimum Falling Path Sum](https://leetcode.com/problems/minimum-falling-path-sum/) | [Python](/l33tcode/minimum-falling-path-sum.py)
[Valid Palindrome](https://leetcode.com/problems/valid-palindrome/) | [Python](/l33tcode/valid-palindrome.py)
[Longest Happy String](https://leetcode.com/problems/longest-happy-string/) | [Python](/l33tcode/longest-happy-string.py)
[One Edit Distance](https://leetcode.com/problems/one-edit-distance/) | [Python](/l33tcode/one-edit-distance.py)
[Minimum Window Substring](https://leetcode.com/problems/minimum-window-substring/) | [Python](/l33tcode/minimum-window-substring.py)
[Longest ZigZag Path in a Binary Tree](https://leetcode.com/problems/longest-zigzag-path-in-a-binary-tree/) | [Python](/l33tcode/longest-zigzag-path-in-a-binary-tree.py)
[Longest Arithmetic Subsequence of Given Difference](https://leetcode.com/problems/longest-arithmetic-subsequence-of-given-difference/) | [Python](/l33tcode/longest-arithmetic-subsequence-of-given-difference.py)
[Squirrel Simulation](https://leetcode.com/problems/squirrel-simulation/) | [Python](/l33tcode/squirrel-simulation.py)
[Random Point in Non-overlapping Rectangles](https://leetcode.com/problems/random-point-in-non-overlapping-rectangles/) | [Python](/l33tcode/random-point-in-non-overlapping-rectangles.py)
[Compare Version Numbers](https://leetcode.com/problems/compare-version-numbers/) | [Python](/l33tcode/compare-version-numbers.py)
[Longest Harmonious Subsequence](https://leetcode.com/problems/longest-harmonious-subsequence/) | [Python](/l33tcode/longest-harmonious-subsequence.py)
[N-Queens II](https://leetcode.com/problems/n-queens-ii/) | [Golang](/l33tcode/n-queens-ii.go)
[Search a 2D Matrix](https://leetcode.com/problems/search-a-2d-matrix/) | [Python](/l33tcode/search-a-2d-matrix.py)
[Roman to Integer](https://leetcode.com/problems/roman-to-integer/) | [Python](/l33tcode/roman-to-integer.py)
[Reverse Words in a String II](https://leetcode.com/problems/reverse-words-in-a-string-ii/) | [Python](/l33tcode/reverse-words-in-a-string-ii.py)
[Closest Binary Search Tree Value](https://leetcode.com/problems/closest-binary-search-tree-value/) | [Python](/l33tcode/closest-binary-search-tree-value.py)
[Longest Common Subsequence](https://leetcode.com/problems/longest-common-subsequence/) | [Python](/l33tcode/longest-common-subsequence.py)
[Can Convert String in K Moves](https://leetcode.com/problems/can-convert-string-in-k-moves/) | [Python](/l33tcode/can-convert-string-in-k-moves.py)
[Vertical Order Traversal of a Binary Tree](https://leetcode.com/problems/vertical-order-traversal-of-a-binary-tree/) | [Python](/l33tcode/vertical-order-traversal-of-a-binary-tree.py)
[Populating Next Right Pointers in Each Node](https://leetcode.com/problems/populating-next-right-pointers-in-each-node/) | [Python](/l33tcode/populating-next-right-pointers-in-each-node.py)
[Minimum Difficulty of a Job Schedule](https://leetcode.com/problems/minimum-difficulty-of-a-job-schedule/) | [Python](/l33tcode/minimum-difficulty-of-a-job-schedule.py)
[Concatenation of Consecutive Binary Numbers](https://leetcode.com/problems/concatenation-of-consecutive-binary-numbers/) | [Python](/l33tcode/concatenation-of-consecutive-binary-numbers.py)
[Minimum Cost For Tickets](https://leetcode.com/problems/minimum-cost-for-tickets/) | [Python](/l33tcode/minimum-cost-for-tickets.py)
[Fancy Sequence](https://leetcode.com/problems/fancy-sequence/) | [Python](/l33tcode/fancy-sequence.py)
[Robot Room Cleaner](https://leetcode.com/problems/robot-room-cleaner/) | [Python](/l33tcode/robot-room-cleaner.py)
[Guess Number Higher or Lower](https://leetcode.com/problems/guess-number-higher-or-lower/) | [Python](/l33tcode/guess-number-higher-or-lower.py)
[Count of Smaller Numbers After Self](https://leetcode.com/problems/count-of-smaller-numbers-after-self/) | [Python](/l33tcode/count-of-smaller-numbers-after-self.py)
[Longest Increasing Subsequence](https://leetcode.com/problems/longest-increasing-subsequence/) | [Python](/l33tcode/longest-increasing-subsequence.py)
[Shortest Word Distance](https://leetcode.com/problems/shortest-word-distance/) | [Python](/l33tcode/shortest-word-distance.py)
[Toeplitz Matrix](https://leetcode.com/problems/toeplitz-matrix/) | [Python](/l33tcode/toeplitz-matrix.py)
[Rotate List](https://leetcode.com/problems/rotate-list/) | [Python](/l33tcode/rotate-list.py)
[Swap Nodes in Pairs](https://leetcode.com/problems/swap-nodes-in-pairs/) | [Python](/l33tcode/swap-nodes-in-pairs.py)
[Insert Delete GetRandom O(1)](https://leetcode.com/problems/insert-delete-getrandom-o1/) | [Python](/l33tcode/insert-delete-getrandom-o1.py)
[Smallest Common Region](https://leetcode.com/problems/smallest-common-region/) | [Python](/l33tcode/smallest-common-region.py)
[Minimum Cost to Hire K Workers](https://leetcode.com/problems/minimum-cost-to-hire-k-workers/) | [Python](/l33tcode/minimum-cost-to-hire-k-workers.py)
[Unique Morse Code Words](https://leetcode.com/problems/unique-morse-code-words/) | [Python](/l33tcode/unique-morse-code-words.py)
[Find Median from Data Stream](https://leetcode.com/problems/find-median-from-data-stream/) | [Python](/l33tcode/find-median-from-data-stream.py)
[Copy List with Random Pointer](https://leetcode.com/problems/copy-list-with-random-pointer/) | [Python](/l33tcode/copy-list-with-random-pointer.py)
[Generate Random Point in a Circle](https://leetcode.com/problems/generate-random-point-in-a-circle/) | [Python](/l33tcode/generate-random-point-in-a-circle.py)
[Maximum Average Subarray II](https://leetcode.com/problems/maximum-average-subarray-ii/) | [Python](/l33tcode/maximum-average-subarray-ii.py)
[Count Number of Teams](https://leetcode.com/problems/count-number-of-teams/) | [Golang](/l33tcode/count-number-of-teams.go)
[Broken Calculator](https://leetcode.com/problems/broken-calculator/) | [Python](/l33tcode/broken-calculator.py)
[Koko Eating Bananas](https://leetcode.com/problems/koko-eating-bananas/) | [Python](/l33tcode/koko-eating-bananas.py)
[Word Subsets](https://leetcode.com/problems/word-subsets/) | [Python](/l33tcode/word-subsets.py)
[Critical Connections in a Network](https://leetcode.com/problems/critical-connections-in-a-network/) | [Python](/l33tcode/critical-connections-in-a-network.py)
[Add Two Numbers II](https://leetcode.com/problems/add-two-numbers-ii/) | [Python](/l33tcode/add-two-numbers-ii.py)
[Lowest Common Ancestor of a Binary Tree](https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree/) | [Python](/l33tcode/lowest-common-ancestor-of-a-binary-tree.py)
[Pascal's Triangle II](https://leetcode.com/problems/pascals-triangle-ii/) | [Python](/l33tcode/pascals-triangle-ii.py)
[Walking Robot Simulation](https://leetcode.com/problems/walking-robot-simulation/) | [Python](/l33tcode/walking-robot-simulation.py)
[First Unique Number](https://leetcode.com/problems/first-unique-number/) | [Python](/l33tcode/first-unique-number.py)
[Ransom Note](https://leetcode.com/problems/ransom-note/) | [Golang](/l33tcode/ransom-note.go)
[Maximum Number of Balloons](https://leetcode.com/problems/maximum-number-of-balloons/) | [Python](/l33tcode/maximum-number-of-balloons.py)
[Encode Number](https://leetcode.com/problems/encode-number/) | [Python](/l33tcode/encode-number.py)
[K-Concatenation Maximum Sum](https://leetcode.com/problems/k-concatenation-maximum-sum/) | [Python](/l33tcode/k-concatenation-maximum-sum.py)
[Leftmost Column with at Least a One](https://leetcode.com/problems/leftmost-column-with-at-least-a-one/) | [Python](/l33tcode/leftmost-column-with-at-least-a-one.py)
[Insert Interval](https://leetcode.com/problems/insert-interval/) | [Python](/l33tcode/insert-interval.py)
[Queue Reconstruction by Height](https://leetcode.com/problems/queue-reconstruction-by-height/) | [Python](/l33tcode/queue-reconstruction-by-height.py) [Golang](/l33tcode/queue-reconstruction-by-height.go)
[Find in Mountain Array](https://leetcode.com/problems/find-in-mountain-array/) | [Python](/l33tcode/find-in-mountain-array.py)
[Rotate Image](https://leetcode.com/problems/rotate-image/) | [Python](/l33tcode/rotate-image.py)
[Stone Game II](https://leetcode.com/problems/stone-game-ii/) | [Python](/l33tcode/stone-game-ii.py)
[Missing Number](https://leetcode.com/problems/missing-number/) | [Python](/l33tcode/missing-number.py)
[Add Two Numbers](https://leetcode.com/problems/add-two-numbers/) | [Python](/l33tcode/add-two-numbers.py)
[Buddy Strings](https://leetcode.com/problems/buddy-strings/) | [Python](/l33tcode/buddy-strings.py)
[Minesweeper](https://leetcode.com/problems/minesweeper/) | [Python](/l33tcode/minesweeper.py)
[Redundant Connection II](https://leetcode.com/problems/redundant-connection-ii/) | [Python](/l33tcode/redundant-connection-ii.py)
[Best Time to Buy and Sell Stock IV](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-iv/) | [Python](/l33tcode/best-time-to-buy-and-sell-stock-iv.py)
[Flatten Nested List Iterator](https://leetcode.com/problems/flatten-nested-list-iterator/) | [Python](/l33tcode/flatten-nested-list-iterator.py)
[Squares of a Sorted Array](https://leetcode.com/problems/squares-of-a-sorted-array/) | [Python](/l33tcode/squares-of-a-sorted-array.py)
[Leaf-Similar Trees](https://leetcode.com/problems/leaf-similar-trees/) | [Python](/l33tcode/leaf-similar-trees.py) [Golang](/l33tcode/leaf-similar-trees.go)
[Plus One](https://leetcode.com/problems/plus-one/) | [Python](/l33tcode/plus-one.py) [Golang](/l33tcode/plus-one.go)
[Distinct Subsequences](https://leetcode.com/problems/distinct-subsequences/) | [Python](/l33tcode/distinct-subsequences.py)
[Parallel Courses II](https://leetcode.com/problems/parallel-courses-ii/) | [Python](/l33tcode/parallel-courses-ii.py)
[Set Matrix Zeroes](https://leetcode.com/problems/set-matrix-zeroes/) | [Python](/l33tcode/set-matrix-zeroes.py)
[Majority Element](https://leetcode.com/problems/majority-element/) | [Golang](/l33tcode/majority-element.go)
[Unique Paths](https://leetcode.com/problems/unique-paths/) | [Python](/l33tcode/unique-paths.py)
[Find All Anagrams in a String](https://leetcode.com/problems/find-all-anagrams-in-a-string/) | [Golang](/l33tcode/find-all-anagrams-in-a-string.go)
[H-Index II](https://leetcode.com/problems/h-index-ii/) | [Golang](/l33tcode/h-index-ii.go)
[Number of Islands](https://leetcode.com/problems/number-of-islands/) | [Python](/l33tcode/number-of-islands.py)
[Fibonacci Number](https://leetcode.com/problems/fibonacci-number/) | [Python](/l33tcode/fibonacci-number.py)
[Design Underground System](https://leetcode.com/problems/design-underground-system/) | [Python](/l33tcode/design-underground-system.py)
[Sum of Root To Leaf Binary Numbers](https://leetcode.com/problems/sum-of-root-to-leaf-binary-numbers/) | [Python](/l33tcode/sum-of-root-to-leaf-binary-numbers.py)
[Validate IP Address](https://leetcode.com/problems/validate-ip-address/) | [Python](/l33tcode/validate-ip-address.py)
[Possible Bipartition](https://leetcode.com/problems/possible-bipartition/) | [Python](/l33tcode/possible-bipartition.py) [Golang](/l33tcode/possible-bipartition.go)
[Insertion Sort List](https://leetcode.com/problems/insertion-sort-list/) | [Python](/l33tcode/insertion-sort-list.py) [Golang](/l33tcode/insertion-sort-list.go)
[Minimum Path Sum](https://leetcode.com/problems/minimum-path-sum/) | [Python](/l33tcode/minimum-path-sum.py)
[Camelcase Matching](https://leetcode.com/problems/camelcase-matching/) | [Python](/l33tcode/camelcase-matching.py)
[Sort List](https://leetcode.com/problems/sort-list/) | [Python](/l33tcode/sort-list.py)
[Range Sum of BST](https://leetcode.com/problems/range-sum-of-bst/) | [Python](/l33tcode/range-sum-of-bst.py)
[Split Array Largest Sum](https://leetcode.com/problems/split-array-largest-sum/) | [Python](/l33tcode/split-array-largest-sum.py)
[Insert into a Binary Search Tree](https://leetcode.com/problems/insert-into-a-binary-search-tree/) | [Python](/l33tcode/insert-into-a-binary-search-tree.py)
[Boats to Save People](https://leetcode.com/problems/boats-to-save-people/) | [Python](/l33tcode/boats-to-save-people.py)
[Circular Array Loop](https://leetcode.com/problems/circular-array-loop/) | [Python](/l33tcode/circular-array-loop.py)
[Find Right Interval](https://leetcode.com/problems/find-right-interval/) | [Python](/l33tcode/find-right-interval.py)
[Single Number III](https://leetcode.com/problems/single-number-iii/) | [Python](/l33tcode/single-number-iii.py)
[Word Squares](https://leetcode.com/problems/word-squares/) | [Python](/l33tcode/word-squares.py)
[Intersection of Two Linked Lists](https://leetcode.com/problems/intersection-of-two-linked-lists/) | [Python](/l33tcode/intersection-of-two-linked-lists.py)
[Balanced Binary Tree](https://leetcode.com/problems/balanced-binary-tree/) | [Python](/l33tcode/balanced-binary-tree.py)
[Binary Tree Vertical Order Traversal](https://leetcode.com/problems/binary-tree-vertical-order-traversal/) | [Python](/l33tcode/binary-tree-vertical-order-traversal.py)
[Time Needed to Inform All Employees](https://leetcode.com/problems/time-needed-to-inform-all-employees/) | [Python](/l33tcode/time-needed-to-inform-all-employees.py)
[Print Immutable Linked List in Reverse](https://leetcode.com/problems/print-immutable-linked-list-in-reverse/) | [Python](/l33tcode/print-immutable-linked-list-in-reverse.py) [Golang](/l33tcode/print-immutable-linked-list-in-reverse.go)
[Maximum Length of Pair Chain](https://leetcode.com/problems/maximum-length-of-pair-chain/) | [Python](/l33tcode/maximum-length-of-pair-chain.py)
[Find Minimum in Rotated Sorted Array II](https://leetcode.com/problems/find-minimum-in-rotated-sorted-array-ii/) | [Python](/l33tcode/find-minimum-in-rotated-sorted-array-ii.py)
[Remove Element](https://leetcode.com/problems/remove-element/) | [Python](/l33tcode/remove-element.py)
[Two Sum III - Data structure design](https://leetcode.com/problems/two-sum-iii-data-structure-design/) | [Python](/l33tcode/two-sum-iii-data-structure-design.py)
[Flatten a Multilevel Doubly Linked List](https://leetcode.com/problems/flatten-a-multilevel-doubly-linked-list/) | [Python](/l33tcode/flatten-a-multilevel-doubly-linked-list.py)
[Minimum Swaps to Group All 1's Together](https://leetcode.com/problems/minimum-swaps-to-group-all-1s-together/) | [Python](/l33tcode/minimum-swaps-to-group-all-1s-together.py)
[Single Number II](https://leetcode.com/problems/single-number-ii/) | [Python](/l33tcode/single-number-ii.py)
[Stream of Characters](https://leetcode.com/problems/stream-of-characters/) | [Python](/l33tcode/stream-of-characters.py)
[Maximum Points You Can Obtain from Cards](https://leetcode.com/problems/maximum-points-you-can-obtain-from-cards/) | [Python](/l33tcode/maximum-points-you-can-obtain-from-cards.py)
[Maximum Difference Between Node and Ancestor](https://leetcode.com/problems/maximum-difference-between-node-and-ancestor/) | [Python](/l33tcode/maximum-difference-between-node-and-ancestor.py)
[Decode Ways II](https://leetcode.com/problems/decode-ways-ii/) | [Python](/l33tcode/decode-ways-ii.py)
[Binary Tree Coloring Game](https://leetcode.com/problems/binary-tree-coloring-game/) | [Python](/l33tcode/binary-tree-coloring-game.py)
[Pow(x, n)](https://leetcode.com/problems/powx-n/) | [Python](/l33tcode/powx-n.py) [Golang](/l33tcode/powx-n.go)
[Kth Missing Positive Number](https://leetcode.com/problems/kth-missing-positive-number/) | [Python](/l33tcode/kth-missing-positive-number.py)
[Maximum Level Sum of a Binary Tree](https://leetcode.com/problems/maximum-level-sum-of-a-binary-tree/) | [Python](/l33tcode/maximum-level-sum-of-a-binary-tree.py)
[Count Complete Tree Nodes](https://leetcode.com/problems/count-complete-tree-nodes/) | [Python](/l33tcode/count-complete-tree-nodes.py)
[Rotting Oranges](https://leetcode.com/problems/rotting-oranges/) | [Python](/l33tcode/rotting-oranges.py)
[Simplify Path](https://leetcode.com/problems/simplify-path/) | [Python](/l33tcode/simplify-path.py)
[Search in a Binary Search Tree](https://leetcode.com/problems/search-in-a-binary-search-tree/) | [Python](/l33tcode/search-in-a-binary-search-tree.py)
[Reverse Nodes in k-Group](https://leetcode.com/problems/reverse-nodes-in-k-group/) | [Python](/l33tcode/reverse-nodes-in-k-group.py)
[Longest Turbulent Subarray](https://leetcode.com/problems/longest-turbulent-subarray/) | [Python](/l33tcode/longest-turbulent-subarray.py)
[Thousand Separator](https://leetcode.com/problems/thousand-separator/) | [Python](/l33tcode/thousand-separator.py)
[Maximum Binary Tree](https://leetcode.com/problems/maximum-binary-tree/) | [Python](/l33tcode/maximum-binary-tree.py)
[Remove Outermost Parentheses](https://leetcode.com/problems/remove-outermost-parentheses/) | [Python](/l33tcode/remove-outermost-parentheses.py)
[House Robber III](https://leetcode.com/problems/house-robber-iii/) | [Python](/l33tcode/house-robber-iii.py)
[Remove Duplicates from Sorted List](https://leetcode.com/problems/remove-duplicates-from-sorted-list/) | [Python](/l33tcode/remove-duplicates-from-sorted-list.py)
[Repeated Substring Pattern](https://leetcode.com/problems/repeated-substring-pattern/) | [Python](/l33tcode/repeated-substring-pattern.py)
[Find Elements in a Contaminated Binary Tree](https://leetcode.com/problems/find-elements-in-a-contaminated-binary-tree/) | [Python](/l33tcode/find-elements-in-a-contaminated-binary-tree.py)
[Substring with Concatenation of All Words](https://leetcode.com/problems/substring-with-concatenation-of-all-words/) | [Python](/l33tcode/substring-with-concatenation-of-all-words.py)
[Trim a Binary Search Tree](https://leetcode.com/problems/trim-a-binary-search-tree/) | [Python](/l33tcode/trim-a-binary-search-tree.py)
[Count Servers that Communicate](https://leetcode.com/problems/count-servers-that-communicate/) | [Python](/l33tcode/count-servers-that-communicate.py)
[Running Sum of 1d Array](https://leetcode.com/problems/running-sum-of-1d-array/) | [Python](/l33tcode/running-sum-of-1d-array.py)
[Pascal's Triangle](https://leetcode.com/problems/pascals-triangle/) | [Python](/l33tcode/pascals-triangle.py)
[Kth Largest Element in an Array](https://leetcode.com/problems/kth-largest-element-in-an-array/) | [Python](/l33tcode/kth-largest-element-in-an-array.py)
[Interleaving String](https://leetcode.com/problems/interleaving-string/) | [Python](/l33tcode/interleaving-string.py)
[Find Minimum in Rotated Sorted Array](https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/) | [Python](/l33tcode/find-minimum-in-rotated-sorted-array.py)
[The K Weakest Rows in a Matrix](https://leetcode.com/problems/the-k-weakest-rows-in-a-matrix/) | [Python](/l33tcode/the-k-weakest-rows-in-a-matrix.py)
[Find Nearest Right Node in Binary Tree](https://leetcode.com/problems/find-nearest-right-node-in-binary-tree/) | [Python](/l33tcode/find-nearest-right-node-in-binary-tree.py)
[Min Stack](https://leetcode.com/problems/min-stack/) | [Python](/l33tcode/min-stack.py)
[Partition Equal Subset Sum](https://leetcode.com/problems/partition-equal-subset-sum/) | [Python](/l33tcode/partition-equal-subset-sum.py)
[Binary Search Tree to Greater Sum Tree](https://leetcode.com/problems/binary-search-tree-to-greater-sum-tree/) | [Python](/l33tcode/binary-search-tree-to-greater-sum-tree.py)
[Make Array Strictly Increasing](https://leetcode.com/problems/make-array-strictly-increasing/) | [Python](/l33tcode/make-array-strictly-increasing.py)
[Find Peak Element](https://leetcode.com/problems/find-peak-element/) | [Python](/l33tcode/find-peak-element.py)
[Campus Bikes](https://leetcode.com/problems/campus-bikes/) | [Python](/l33tcode/campus-bikes.py)
[Check If All 1's Are at Least Length K Places Away](https://leetcode.com/problems/check-if-all-1s-are-at-least-length-k-places-away/) | [Python](/l33tcode/check-if-all-1s-are-at-least-length-k-places-away.py)
[Palindrome Pairs](https://leetcode.com/problems/palindrome-pairs/) | [Python](/l33tcode/palindrome-pairs.py)
[Shortest Way to Form String](https://leetcode.com/problems/shortest-way-to-form-string/) | [Python](/l33tcode/shortest-way-to-form-string.py)
[Surrounded Regions](https://leetcode.com/problems/surrounded-regions/) | [Python](/l33tcode/surrounded-regions.py)
[Recover Binary Search Tree](https://leetcode.com/problems/recover-binary-search-tree/) | [Python](/l33tcode/recover-binary-search-tree.py)
[Count Numbers with Unique Digits](https://leetcode.com/problems/count-numbers-with-unique-digits/) | [Python](/l33tcode/count-numbers-with-unique-digits.py)
[Peeking Iterator](https://leetcode.com/problems/peeking-iterator/) | [Python](/l33tcode/peeking-iterator.py)
[Two Sum Less Than K](https://leetcode.com/problems/two-sum-less-than-k/) | [Python](/l33tcode/two-sum-less-than-k.py)
[Serialize and Deserialize Binary Tree](https://leetcode.com/problems/serialize-and-deserialize-binary-tree/) | [Python](/l33tcode/serialize-and-deserialize-binary-tree.py)
[Maximum Distance in Arrays](https://leetcode.com/problems/maximum-distance-in-arrays/) | [Python](/l33tcode/maximum-distance-in-arrays.py)
[Sort Characters By Frequency](https://leetcode.com/problems/sort-characters-by-frequency/) | [Python](/l33tcode/sort-characters-by-frequency.py)
[Integer to English Words](https://leetcode.com/problems/integer-to-english-words/) | [Python](/l33tcode/integer-to-english-words.py)
[Design Circular Queue](https://leetcode.com/problems/design-circular-queue/) | [Python](/l33tcode/design-circular-queue.py)
[Find Duplicate Subtrees](https://leetcode.com/problems/find-duplicate-subtrees/) | [Python](/l33tcode/find-duplicate-subtrees.py)
[Find K Closest Elements](https://leetcode.com/problems/find-k-closest-elements/) | [Python](/l33tcode/find-k-closest-elements.py)
[Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters/) | [Python](/l33tcode/longest-substring-without-repeating-characters.py)
[Combination Sum](https://leetcode.com/problems/combination-sum/) | [Python](/l33tcode/combination-sum.py)
[Student Attendance Record I](https://leetcode.com/problems/student-attendance-record-i/) | [Python](/l33tcode/student-attendance-record-i.py)
[Burst Balloons](https://leetcode.com/problems/burst-balloons/) | [Python](/l33tcode/burst-balloons.py)
[Accounts Merge](https://leetcode.com/problems/accounts-merge/) | [Python](/l33tcode/accounts-merge.py)
[Shortest Distance from All Buildings](https://leetcode.com/problems/shortest-distance-from-all-buildings/) | [Python](/l33tcode/shortest-distance-from-all-buildings.py)
[The Maze](https://leetcode.com/problems/the-maze/) | [Python](/l33tcode/the-maze.py)
[Find Mode in Binary Search Tree](https://leetcode.com/problems/find-mode-in-binary-search-tree/) | [Python](/l33tcode/find-mode-in-binary-search-tree.py)
[Path Sum IV](https://leetcode.com/problems/path-sum-iv/) | [Golang](/l33tcode/path-sum-iv.go)
[Longest Absolute File Path](https://leetcode.com/problems/longest-absolute-file-path/) | [Python](/l33tcode/longest-absolute-file-path.py)
[Isomorphic Strings](https://leetcode.com/problems/isomorphic-strings/) | [Python](/l33tcode/isomorphic-strings.py)
[Remove Duplicate Letters](https://leetcode.com/problems/remove-duplicate-letters/) | [Python](/l33tcode/remove-duplicate-letters.py)
[Scramble String](https://leetcode.com/problems/scramble-string/) | [Python](/l33tcode/scramble-string.py)
[Network Delay Time](https://leetcode.com/problems/network-delay-time/) | [Python](/l33tcode/network-delay-time.py)
[Valid Palindrome III](https://leetcode.com/problems/valid-palindrome-iii/) | [Python](/l33tcode/valid-palindrome-iii.py)
[Minimize Deviation in Array](https://leetcode.com/problems/minimize-deviation-in-array/) | [Python](/l33tcode/minimize-deviation-in-array.py)
[Power of Two](https://leetcode.com/problems/power-of-two/) | [Golang](/l33tcode/power-of-two.go)
[Meeting Rooms](https://leetcode.com/problems/meeting-rooms/) | [Python](/l33tcode/meeting-rooms.py)
[Can Place Flowers](https://leetcode.com/problems/can-place-flowers/) | [Python](/l33tcode/can-place-flowers.py)
[Mirror Reflection](https://leetcode.com/problems/mirror-reflection/) | [Python](/l33tcode/mirror-reflection.py)
[Triangle](https://leetcode.com/problems/triangle/) | [Python](/l33tcode/triangle.py)
[Detect Cycles in 2D Grid](https://leetcode.com/problems/detect-cycles-in-2d-grid/) | [Python](/l33tcode/detect-cycles-in-2d-grid.py)
[Brace Expansion](https://leetcode.com/problems/brace-expansion/) | [Python](/l33tcode/brace-expansion.py)
[All Paths from Source Lead to Destination](https://leetcode.com/problems/all-paths-from-source-lead-to-destination/) | [Python](/l33tcode/all-paths-from-source-lead-to-destination.py)
[Find Root of N-Ary Tree](https://leetcode.com/problems/find-root-of-n-ary-tree/) | [Python](/l33tcode/find-root-of-n-ary-tree.py)
[Similar String Groups](https://leetcode.com/problems/similar-string-groups/) | [Python](/l33tcode/similar-string-groups.py)
[Merge k Sorted Lists](https://leetcode.com/problems/merge-k-sorted-lists/) | [Python](/l33tcode/merge-k-sorted-lists.py)
[Longest Mountain in Array](https://leetcode.com/problems/longest-mountain-in-array/) | [Python](/l33tcode/longest-mountain-in-array.py)
[Palindrome Number](https://leetcode.com/problems/palindrome-number/) | [Python](/l33tcode/palindrome-number.py)
[Score of Parentheses](https://leetcode.com/problems/score-of-parentheses/) | [Python](/l33tcode/score-of-parentheses.py)
[Student Attendance Record II](https://leetcode.com/problems/student-attendance-record-ii/) | [Python](/l33tcode/student-attendance-record-ii.py)
[Binary Tree Pruning](https://leetcode.com/problems/binary-tree-pruning/) | [Golang](/l33tcode/binary-tree-pruning.go)
[Find Leaves of Binary Tree](https://leetcode.com/problems/find-leaves-of-binary-tree/) | [Python](/l33tcode/find-leaves-of-binary-tree.py)
[Lowest Common Ancestor of a Binary Search Tree](https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/) | [Python](/l33tcode/lowest-common-ancestor-of-a-binary-search-tree.py)
[Construct Binary Tree from String](https://leetcode.com/problems/construct-binary-tree-from-string/) | [Python](/l33tcode/construct-binary-tree-from-string.py)
[Largest Sum of Averages](https://leetcode.com/problems/largest-sum-of-averages/) | [Python](/l33tcode/largest-sum-of-averages.py)
[Largest Plus Sign](https://leetcode.com/problems/largest-plus-sign/) | [Python](/l33tcode/largest-plus-sign.py)
[Number of Good Ways to Split a String](https://leetcode.com/problems/number-of-good-ways-to-split-a-string/) | [Python](/l33tcode/number-of-good-ways-to-split-a-string.py)
[Robot Bounded In Circle](https://leetcode.com/problems/robot-bounded-in-circle/) | [Python](/l33tcode/robot-bounded-in-circle.py)
[Predict the Winner](https://leetcode.com/problems/predict-the-winner/) | [Python](/l33tcode/predict-the-winner.py)
[Design Phone Directory](https://leetcode.com/problems/design-phone-directory/) | [Python](/l33tcode/design-phone-directory.py)
[Trapping Rain Water](https://leetcode.com/problems/trapping-rain-water/) | [Python](/l33tcode/trapping-rain-water.py)
[Serialize and Deserialize BST](https://leetcode.com/problems/serialize-and-deserialize-bst/) | [Python](/l33tcode/serialize-and-deserialize-bst.py)
[Subarray Sum Equals K](https://leetcode.com/problems/subarray-sum-equals-k/) | [Python](/l33tcode/subarray-sum-equals-k.py)
[Longest Palindromic Substring](https://leetcode.com/problems/longest-palindromic-substring/) | [Python](/l33tcode/longest-palindromic-substring.py) [Golang](/l33tcode/longest-palindromic-substring.go)
[Frog Jump](https://leetcode.com/problems/frog-jump/) | [Python](/l33tcode/frog-jump.py)
[Subsets](https://leetcode.com/problems/subsets/) | [Python](/l33tcode/subsets.py) [Golang](/l33tcode/subsets.go)
[Daily Temperatures](https://leetcode.com/problems/daily-temperatures/) | [Python](/l33tcode/daily-temperatures.py)
[Defuse the Bomb](https://leetcode.com/problems/defuse-the-bomb/) | [Python](/l33tcode/defuse-the-bomb.py)
[Combination Sum IV](https://leetcode.com/problems/combination-sum-iv/) | [Python](/l33tcode/combination-sum-iv.py)
[Divisor Game](https://leetcode.com/problems/divisor-game/) | [Python](/l33tcode/divisor-game.py)
[Range Sum Query 2D - Mutable](https://leetcode.com/problems/range-sum-query-2d-mutable/) | [Python](/l33tcode/range-sum-query-2d-mutable.py)
[Remove K Digits](https://leetcode.com/problems/remove-k-digits/) | [Python](/l33tcode/remove-k-digits.py) [Golang](/l33tcode/remove-k-digits.go)
[Increasing Triplet Subsequence](https://leetcode.com/problems/increasing-triplet-subsequence/) | [Python](/l33tcode/increasing-triplet-subsequence.py)
[Exam Room](https://leetcode.com/problems/exam-room/) | [Python](/l33tcode/exam-room.py)
[Smallest Sufficient Team](https://leetcode.com/problems/smallest-sufficient-team/) | [Python](/l33tcode/smallest-sufficient-team.py)
[Single Element in a Sorted Array](https://leetcode.com/problems/single-element-in-a-sorted-array/) | [Python](/l33tcode/single-element-in-a-sorted-array.py)
[Word Ladder II](https://leetcode.com/problems/word-ladder-ii/) | [Python](/l33tcode/word-ladder-ii.py)
[Flower Planting With No Adjacent](https://leetcode.com/problems/flower-planting-with-no-adjacent/) | [Python](/l33tcode/flower-planting-with-no-adjacent.py)
[Length of Last Word](https://leetcode.com/problems/length-of-last-word/) | [Python](/l33tcode/length-of-last-word.py)
[Linked List Random Node](https://leetcode.com/problems/linked-list-random-node/) | [Python](/l33tcode/linked-list-random-node.py)
[Remove Duplicates from Sorted Array II](https://leetcode.com/problems/remove-duplicates-from-sorted-array-ii/) | [Python](/l33tcode/remove-duplicates-from-sorted-array-ii.py)
[Coin Change](https://leetcode.com/problems/coin-change/) | [Python](/l33tcode/coin-change.py)
[Read N Characters Given Read4](https://leetcode.com/problems/read-n-characters-given-read4/) | [Python](/l33tcode/read-n-characters-given-read4.py)
[Non-decreasing Array](https://leetcode.com/problems/non-decreasing-array/) | [Python](/l33tcode/non-decreasing-array.py)
[Champagne Tower](https://leetcode.com/problems/champagne-tower/) | [Python](/l33tcode/champagne-tower.py)
[Jewels and Stones](https://leetcode.com/problems/jewels-and-stones/) | [Python](/l33tcode/jewels-and-stones.py)
[Find and Replace Pattern](https://leetcode.com/problems/find-and-replace-pattern/) | [Golang](/l33tcode/find-and-replace-pattern.go)
[Sliding Window Median](https://leetcode.com/problems/sliding-window-median/) | [Python](/l33tcode/sliding-window-median.py)
[Course Schedule II](https://leetcode.com/problems/course-schedule-ii/) | [Python](/l33tcode/course-schedule-ii.py)
[Maximum Product of Three Numbers](https://leetcode.com/problems/maximum-product-of-three-numbers/) | [Python](/l33tcode/maximum-product-of-three-numbers.py)
[Permutation in String](https://leetcode.com/problems/permutation-in-string/) | [Python](/l33tcode/permutation-in-string.py)
[Find K Pairs with Smallest Sums](https://leetcode.com/problems/find-k-pairs-with-smallest-sums/) | [Python](/l33tcode/find-k-pairs-with-smallest-sums.py)
[Convert BST to Greater Tree](https://leetcode.com/problems/convert-bst-to-greater-tree/) | [Python](/l33tcode/convert-bst-to-greater-tree.py)
[Power of Four](https://leetcode.com/problems/power-of-four/) | [Golang](/l33tcode/power-of-four.go)
[Valid Mountain Array](https://leetcode.com/problems/valid-mountain-array/) | [Python](/l33tcode/valid-mountain-array.py)
[Smallest Range II](https://leetcode.com/problems/smallest-range-ii/) | [Python](/l33tcode/smallest-range-ii.py)
[Uncrossed Lines](https://leetcode.com/problems/uncrossed-lines/) | [Python](/l33tcode/uncrossed-lines.py)
[Path With Minimum Effort](https://leetcode.com/problems/path-with-minimum-effort/) | [Python](/l33tcode/path-with-minimum-effort.py)
[Prison Cells After N Days](https://leetcode.com/problems/prison-cells-after-n-days/) | [Python](/l33tcode/prison-cells-after-n-days.py)
[Set Mismatch](https://leetcode.com/problems/set-mismatch/) | [Python](/l33tcode/set-mismatch.py)
[Permutation Sequence](https://leetcode.com/problems/permutation-sequence/) | [Python](/l33tcode/permutation-sequence.py)
[Top K Frequent Words](https://leetcode.com/problems/top-k-frequent-words/) | [Python](/l33tcode/top-k-frequent-words.py)
[Minimum Score Triangulation of Polygon](https://leetcode.com/problems/minimum-score-triangulation-of-polygon/) | [Python](/l33tcode/minimum-score-triangulation-of-polygon.py)
[Reverse Linked List](https://leetcode.com/problems/reverse-linked-list/) | [Python](/l33tcode/reverse-linked-list.py)
[Jump Game IV](https://leetcode.com/problems/jump-game-iv/) | [Python](/l33tcode/jump-game-iv.py)
[Subarray Sums Divisible by K](https://leetcode.com/problems/subarray-sums-divisible-by-k/) | [Python](/l33tcode/subarray-sums-divisible-by-k.py)
[House Robber II](https://leetcode.com/problems/house-robber-ii/) | [Python](/l33tcode/house-robber-ii.py)
[Find Two Non-overlapping Sub-arrays Each With Target Sum](https://leetcode.com/problems/find-two-non-overlapping-sub-arrays-each-with-target-sum/) | [Python](/l33tcode/find-two-non-overlapping-sub-arrays-each-with-target-sum.py)
[Longest Valid Parentheses](https://leetcode.com/problems/longest-valid-parentheses/) | [Python](/l33tcode/longest-valid-parentheses.py)
[Complement of Base 10 Integer](https://leetcode.com/problems/complement-of-base-10-integer/) | [Python](/l33tcode/complement-of-base-10-integer.py)
[Count Square Submatrices with All Ones](https://leetcode.com/problems/count-square-submatrices-with-all-ones/) | [Golang](/l33tcode/count-square-submatrices-with-all-ones.go)
[Spiral Matrix](https://leetcode.com/problems/spiral-matrix/) | [Python](/l33tcode/spiral-matrix.py)
[Shortest Unsorted Continuous Subarray](https://leetcode.com/problems/shortest-unsorted-continuous-subarray/) | [Python](/l33tcode/shortest-unsorted-continuous-subarray.py)
[Reverse String](https://leetcode.com/problems/reverse-string/) | [Python](/l33tcode/reverse-string.py)
[Grumpy Bookstore Owner](https://leetcode.com/problems/grumpy-bookstore-owner/) | [Python](/l33tcode/grumpy-bookstore-owner.py)
[Clumsy Factorial](https://leetcode.com/problems/clumsy-factorial/) | [Python](/l33tcode/clumsy-factorial.py)
[License Key Formatting](https://leetcode.com/problems/license-key-formatting/) | [Python](/l33tcode/license-key-formatting.py)
[Inorder Successor in BST II](https://leetcode.com/problems/inorder-successor-in-bst-ii/) | [Python](/l33tcode/inorder-successor-in-bst-ii.py)
[Minimum Number of Removals to Make Mountain Array](https://leetcode.com/problems/minimum-number-of-removals-to-make-mountain-array/) | [Python](/l33tcode/minimum-number-of-removals-to-make-mountain-array.py)
[Number of Steps to Reduce a Number to Zero](https://leetcode.com/problems/number-of-steps-to-reduce-a-number-to-zero/) | [Python](/l33tcode/number-of-steps-to-reduce-a-number-to-zero.py)
[Is Subsequence](https://leetcode.com/problems/is-subsequence/) | [Golang](/l33tcode/is-subsequence.go)
[Populating Next Right Pointers in Each Node II](https://leetcode.com/problems/populating-next-right-pointers-in-each-node-ii/) | [Python](/l33tcode/populating-next-right-pointers-in-each-node-ii.py)
[Short Encoding of Words](https://leetcode.com/problems/short-encoding-of-words/) | [Python](/l33tcode/short-encoding-of-words.py)
[Find Longest Awesome Substring](https://leetcode.com/problems/find-longest-awesome-substring/) | [Python](/l33tcode/find-longest-awesome-substring.py)
[132 Pattern](https://leetcode.com/problems/132-pattern/) | [Python](/l33tcode/132-pattern.py)
[Decode String](https://leetcode.com/problems/decode-string/) | [Python](/l33tcode/decode-string.py)
[N-Repeated Element in Size 2N Array](https://leetcode.com/problems/n-repeated-element-in-size-2n-array/) | [Python](/l33tcode/n-repeated-element-in-size-2n-array.py)
[Dot Product of Two Sparse Vectors](https://leetcode.com/problems/dot-product-of-two-sparse-vectors/) | [Python](/l33tcode/dot-product-of-two-sparse-vectors.py)
[Palindrome Partitioning](https://leetcode.com/problems/palindrome-partitioning/) | [Python](/l33tcode/palindrome-partitioning.py)
[Minimum Number of Arrows to Burst Balloons](https://leetcode.com/problems/minimum-number-of-arrows-to-burst-balloons/) | [Python](/l33tcode/minimum-number-of-arrows-to-burst-balloons.py)
[Battleships in a Board](https://leetcode.com/problems/battleships-in-a-board/) | [Golang](/l33tcode/battleships-in-a-board.go)
[First Missing Positive](https://leetcode.com/problems/first-missing-positive/) | [Python](/l33tcode/first-missing-positive.py)
[Island Perimeter](https://leetcode.com/problems/island-perimeter/) | [Python](/l33tcode/island-perimeter.py)
[Hamming Distance](https://leetcode.com/problems/hamming-distance/) | [Python](/l33tcode/hamming-distance.py)
[Encode and Decode TinyURL](https://leetcode.com/problems/encode-and-decode-tinyurl/) | [Python](/l33tcode/encode-and-decode-tinyurl.py)
[Score After Flipping Matrix](https://leetcode.com/problems/score-after-flipping-matrix/) | [Python](/l33tcode/score-after-flipping-matrix.py) [Golang](/l33tcode/score-after-flipping-matrix.go)
[Sort Array by Increasing Frequency](https://leetcode.com/problems/sort-array-by-increasing-frequency/) | [Python](/l33tcode/sort-array-by-increasing-frequency.py)
[Maximum Depth of Binary Tree](https://leetcode.com/problems/maximum-depth-of-binary-tree/) | [Python](/l33tcode/maximum-depth-of-binary-tree.py)
[Count Sorted Vowel Strings](https://leetcode.com/problems/count-sorted-vowel-strings/) | [Python](/l33tcode/count-sorted-vowel-strings.py)
[Word Ladder](https://leetcode.com/problems/word-ladder/) | [Python](/l33tcode/word-ladder.py)
[Flipping an Image](https://leetcode.com/problems/flipping-an-image/) | [Python](/l33tcode/flipping-an-image.py)
[Paint House](https://leetcode.com/problems/paint-house/) | [Golang](/l33tcode/paint-house.go)
[Gas Station](https://leetcode.com/problems/gas-station/) | [Python](/l33tcode/gas-station.py)
[Design Browser History](https://leetcode.com/problems/design-browser-history/) | [Python](/l33tcode/design-browser-history.py)
[Print Binary Tree](https://leetcode.com/problems/print-binary-tree/) | [Python](/l33tcode/print-binary-tree.py)
[Unique Binary Search Trees](https://leetcode.com/problems/unique-binary-search-trees/) | [Python](/l33tcode/unique-binary-search-trees.py) [Golang](/l33tcode/unique-binary-search-trees.go)
[Remove Covered Intervals](https://leetcode.com/problems/remove-covered-intervals/) | [Python](/l33tcode/remove-covered-intervals.py)
[Sentence Screen Fitting](https://leetcode.com/problems/sentence-screen-fitting/) | [Python](/l33tcode/sentence-screen-fitting.py)
[Minimum Window Subsequence](https://leetcode.com/problems/minimum-window-subsequence/) | [Python](/l33tcode/minimum-window-subsequence.py)
[Palindromic Substrings](https://leetcode.com/problems/palindromic-substrings/) | [Python](/l33tcode/palindromic-substrings.py)
[Remove Interval](https://leetcode.com/problems/remove-interval/) | [Python](/l33tcode/remove-interval.py)
[Pseudo-Palindromic Paths in a Binary Tree](https://leetcode.com/problems/pseudo-palindromic-paths-in-a-binary-tree/) | [Python](/l33tcode/pseudo-palindromic-paths-in-a-binary-tree.py)
[Word Search II](https://leetcode.com/problems/word-search-ii/) | [Python](/l33tcode/word-search-ii.py)
[Knight Probability in Chessboard](https://leetcode.com/problems/knight-probability-in-chessboard/) | [Python](/l33tcode/knight-probability-in-chessboard.py)
[Fizz Buzz](https://leetcode.com/problems/fizz-buzz/) | [Python](/l33tcode/fizz-buzz.py)
[Graph Valid Tree](https://leetcode.com/problems/graph-valid-tree/) | [Python](/l33tcode/graph-valid-tree.py)
[Maximum Average Subtree](https://leetcode.com/problems/maximum-average-subtree/) | [Python](/l33tcode/maximum-average-subtree.py)
[Range Sum Query - Immutable](https://leetcode.com/problems/range-sum-query-immutable/) | [Python](/l33tcode/range-sum-query-immutable.py)
[Check If Two String Arrays are Equivalent](https://leetcode.com/problems/check-if-two-string-arrays-are-equivalent/) | [Python](/l33tcode/check-if-two-string-arrays-are-equivalent.py)
[Integer to Roman](https://leetcode.com/problems/integer-to-roman/) | [Python](/l33tcode/integer-to-roman.py)
[Binary Prefix Divisible By 5](https://leetcode.com/problems/binary-prefix-divisible-by-5/) | [Python](/l33tcode/binary-prefix-divisible-by-5.py)
[Inorder Successor in BST](https://leetcode.com/problems/inorder-successor-in-bst/) | [Python](/l33tcode/inorder-successor-in-bst.py)
[Couples Holding Hands](https://leetcode.com/problems/couples-holding-hands/) | [Python](/l33tcode/couples-holding-hands.py)
[Consecutive Characters](https://leetcode.com/problems/consecutive-characters/) | [Python](/l33tcode/consecutive-characters.py)
[Minimum Adjacent Swaps for K Consecutive Ones](https://leetcode.com/problems/minimum-adjacent-swaps-for-k-consecutive-ones/) | [Python](/l33tcode/minimum-adjacent-swaps-for-k-consecutive-ones.py)
[Longest Repeating Substring](https://leetcode.com/problems/longest-repeating-substring/) | [Python](/l33tcode/longest-repeating-substring.py)
[Unique Paths II](https://leetcode.com/problems/unique-paths-ii/) | [Python](/l33tcode/unique-paths-ii.py)
[Best Meeting Point](https://leetcode.com/problems/best-meeting-point/) | [Python](/l33tcode/best-meeting-point.py)
[Angle Between Hands of a Clock](https://leetcode.com/problems/angle-between-hands-of-a-clock/) | [Python](/l33tcode/angle-between-hands-of-a-clock.py)
[Binary Tree Level Order Traversal](https://leetcode.com/problems/binary-tree-level-order-traversal/) | [Python](/l33tcode/binary-tree-level-order-traversal.py)
[Poor Pigs](https://leetcode.com/problems/poor-pigs/) | [Python](/l33tcode/poor-pigs.py)
[Split Linked List in Parts](https://leetcode.com/problems/split-linked-list-in-parts/) | [Python](/l33tcode/split-linked-list-in-parts.py)
[Distribute Coins in Binary Tree](https://leetcode.com/problems/distribute-coins-in-binary-tree/) | [Python](/l33tcode/distribute-coins-in-binary-tree.py)
[Delete Node in a BST](https://leetcode.com/problems/delete-node-in-a-bst/) | [Python](/l33tcode/delete-node-in-a-bst.py)
[Ones and Zeroes](https://leetcode.com/problems/ones-and-zeroes/) | [Python](/l33tcode/ones-and-zeroes.py)
[Add Digits](https://leetcode.com/problems/add-digits/) | [Python](/l33tcode/add-digits.py)
[Design Hit Counter](https://leetcode.com/problems/design-hit-counter/) | [Python](/l33tcode/design-hit-counter.py)
[Path Sum](https://leetcode.com/problems/path-sum/) | [Python](/l33tcode/path-sum.py)
[Minimum Moves to Equal Array Elements II](https://leetcode.com/problems/minimum-moves-to-equal-array-elements-ii/) | [Python](/l33tcode/minimum-moves-to-equal-array-elements-ii.py)
[Previous Permutation With One Swap](https://leetcode.com/problems/previous-permutation-with-one-swap/) | [Python](/l33tcode/previous-permutation-with-one-swap.py)
[Remove Duplicates from Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array/) | [Python](/l33tcode/remove-duplicates-from-sorted-array.py)
[Design Front Middle Back Queue](https://leetcode.com/problems/design-front-middle-back-queue/) | [Python](/l33tcode/design-front-middle-back-queue.py)
[Balance a Binary Search Tree](https://leetcode.com/problems/balance-a-binary-search-tree/) | [Python](/l33tcode/balance-a-binary-search-tree.py)
[Search a 2D Matrix II](https://leetcode.com/problems/search-a-2d-matrix-ii/) | [Python](/l33tcode/search-a-2d-matrix-ii.py)
[Combination Sum II](https://leetcode.com/problems/combination-sum-ii/) | [Python](/l33tcode/combination-sum-ii.py)
[Text Justification](https://leetcode.com/problems/text-justification/) | [Python](/l33tcode/text-justification.py)
[Encode and Decode Strings](https://leetcode.com/problems/encode-and-decode-strings/) | [Python](/l33tcode/encode-and-decode-strings.py)
[Add Binary](https://leetcode.com/problems/add-binary/) | [Python](/l33tcode/add-binary.py)
[Find the Town Judge](https://leetcode.com/problems/find-the-town-judge/) | [Golang](/l33tcode/find-the-town-judge.go)
[Binary Tree Maximum Path Sum](https://leetcode.com/problems/binary-tree-maximum-path-sum/) | [Python](/l33tcode/binary-tree-maximum-path-sum.py)
[Unique Binary Search Trees II](https://leetcode.com/problems/unique-binary-search-trees-ii/) | [Python](/l33tcode/unique-binary-search-trees-ii.py)
[Cousins in Binary Tree](https://leetcode.com/problems/cousins-in-binary-tree/) | [Golang](/l33tcode/cousins-in-binary-tree.go)
[Sort Array By Parity II](https://leetcode.com/problems/sort-array-by-parity-ii/) | [Python](/l33tcode/sort-array-by-parity-ii.py)
[House Robber](https://leetcode.com/problems/house-robber/) | [Python](/l33tcode/house-robber.py)
[01 Matrix](https://leetcode.com/problems/01-matrix/) | [Python](/l33tcode/01-matrix.py)
[Video Stitching](https://leetcode.com/problems/video-stitching/) | [Python](/l33tcode/video-stitching.py)
[Matrix Block Sum](https://leetcode.com/problems/matrix-block-sum/) | [Python](/l33tcode/matrix-block-sum.py)
[24 Game](https://leetcode.com/problems/24-game/) | [Python](/l33tcode/24-game.py)
[Bag of Tokens](https://leetcode.com/problems/bag-of-tokens/) | [Python](/l33tcode/bag-of-tokens.py)
[Majority Element II](https://leetcode.com/problems/majority-element-ii/) | [Python](/l33tcode/majority-element-ii.py)
[Increasing Order Search Tree](https://leetcode.com/problems/increasing-order-search-tree/) | [Python](/l33tcode/increasing-order-search-tree.py)
[Minimum Numbers of Function Calls to Make Target Array](https://leetcode.com/problems/minimum-numbers-of-function-calls-to-make-target-array/) | [Python](/l33tcode/minimum-numbers-of-function-calls-to-make-target-array.py)
[Count Submatrices With All Ones](https://leetcode.com/problems/count-submatrices-with-all-ones/) | [Python](/l33tcode/count-submatrices-with-all-ones.py)
[Ambiguous Coordinates](https://leetcode.com/problems/ambiguous-coordinates/) | [Python](/l33tcode/ambiguous-coordinates.py)
[First Unique Character in a String](https://leetcode.com/problems/first-unique-character-in-a-string/) | [Golang](/l33tcode/first-unique-character-in-a-string.go)
[Strobogrammatic Number](https://leetcode.com/problems/strobogrammatic-number/) | [Python](/l33tcode/strobogrammatic-number.py)
[Slowest Key](https://leetcode.com/problems/slowest-key/) | [Python](/l33tcode/slowest-key.py)
[Bitwise ORs of Subarrays](https://leetcode.com/problems/bitwise-ors-of-subarrays/) | [Python](/l33tcode/bitwise-ors-of-subarrays.py)
[Evaluate Reverse Polish Notation](https://leetcode.com/problems/evaluate-reverse-polish-notation/) | [Python](/l33tcode/evaluate-reverse-polish-notation.py) [Golang](/l33tcode/evaluate-reverse-polish-notation.go)
[Maximum Subarray](https://leetcode.com/problems/maximum-subarray/) | [Python](/l33tcode/maximum-subarray.py)
[Repeated DNA Sequences](https://leetcode.com/problems/repeated-dna-sequences/) | [Python](/l33tcode/repeated-dna-sequences.py)
[Two City Scheduling](https://leetcode.com/problems/two-city-scheduling/) | [Python](/l33tcode/two-city-scheduling.py)
[Permutations II](https://leetcode.com/problems/permutations-ii/) | [Python](/l33tcode/permutations-ii.py)
[Integer Break](https://leetcode.com/problems/integer-break/) | [Python](/l33tcode/integer-break.py)
[Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/) | [Python](/l33tcode/merge-two-sorted-lists.py)
[Partition to K Equal Sum Subsets](https://leetcode.com/problems/partition-to-k-equal-sum-subsets/) | [Python](/l33tcode/partition-to-k-equal-sum-subsets.py)
[Reverse Linked List II](https://leetcode.com/problems/reverse-linked-list-ii/) | [Python](/l33tcode/reverse-linked-list-ii.py)
[Maximum Frequency Stack](https://leetcode.com/problems/maximum-frequency-stack/) | [Python](/l33tcode/maximum-frequency-stack.py)
[Sort Array By Parity](https://leetcode.com/problems/sort-array-by-parity/) | [Python](/l33tcode/sort-array-by-parity.py)
[Dice Roll Simulation](https://leetcode.com/problems/dice-roll-simulation/) | [Python](/l33tcode/dice-roll-simulation.py)
[Palindrome Permutation](https://leetcode.com/problems/palindrome-permutation/) | [Python](/l33tcode/palindrome-permutation.py)
[Check If It Is a Straight Line](https://leetcode.com/problems/check-if-it-is-a-straight-line/) | [Golang](/l33tcode/check-if-it-is-a-straight-line.go)
[LFU Cache](https://leetcode.com/problems/lfu-cache/) | [Python](/l33tcode/lfu-cache.py)
[Max Consecutive Ones III](https://leetcode.com/problems/max-consecutive-ones-iii/) | [Python](/l33tcode/max-consecutive-ones-iii.py)
[LRU Cache](https://leetcode.com/problems/lru-cache/) | [Python](/l33tcode/lru-cache.py)
[Image Overlap](https://leetcode.com/problems/image-overlap/) | [Python](/l33tcode/image-overlap.py)
[Group the People Given the Group Size They Belong To](https://leetcode.com/problems/group-the-people-given-the-group-size-they-belong-to/) | [Golang](/l33tcode/group-the-people-given-the-group-size-they-belong-to.go)
[Design In-Memory File System](https://leetcode.com/problems/design-in-memory-file-system/) | [Python](/l33tcode/design-in-memory-file-system.py)
[Knight Dialer](https://leetcode.com/problems/knight-dialer/) | [Python](/l33tcode/knight-dialer.py)
[Number Of Corner Rectangles](https://leetcode.com/problems/number-of-corner-rectangles/) | [Python](/l33tcode/number-of-corner-rectangles.py)
[Walls and Gates](https://leetcode.com/problems/walls-and-gates/) | [Python](/l33tcode/walls-and-gates.py)
[Range Addition](https://leetcode.com/problems/range-addition/) | [Python](/l33tcode/range-addition.py)
[Height Checker](https://leetcode.com/problems/height-checker/) | [Python](/l33tcode/height-checker.py)
[Longest Substring with At Most Two Distinct Characters](https://leetcode.com/problems/longest-substring-with-at-most-two-distinct-characters/) | [Python](/l33tcode/longest-substring-with-at-most-two-distinct-characters.py)
[Jump Game II](https://leetcode.com/problems/jump-game-ii/) | [Python](/l33tcode/jump-game-ii.py)
[Design Parking System](https://leetcode.com/problems/design-parking-system/) | [Python](/l33tcode/design-parking-system.py)
[Maximal Square](https://leetcode.com/problems/maximal-square/) | [Python](/l33tcode/maximal-square.py)
[Pancake Sorting](https://leetcode.com/problems/pancake-sorting/) | [Python](/l33tcode/pancake-sorting.py)
[Valid Anagram](https://leetcode.com/problems/valid-anagram/) | [Python](/l33tcode/valid-anagram.py)
[Range Sum Query - Mutable](https://leetcode.com/problems/range-sum-query-mutable/) | [Python](/l33tcode/range-sum-query-mutable.py)
[Last Stone Weight II](https://leetcode.com/problems/last-stone-weight-ii/) | [Python](/l33tcode/last-stone-weight-ii.py)
[Min Cost to Connect All Points](https://leetcode.com/problems/min-cost-to-connect-all-points/) | [Python](/l33tcode/min-cost-to-connect-all-points.py)
[Partition Array Into Three Parts With Equal Sum](https://leetcode.com/problems/partition-array-into-three-parts-with-equal-sum/) | [Python](/l33tcode/partition-array-into-three-parts-with-equal-sum.py)
[Delete Node in a Linked List](https://leetcode.com/problems/delete-node-in-a-linked-list/) | [Golang](/l33tcode/delete-node-in-a-linked-list.go)
[Subdomain Visit Count](https://leetcode.com/problems/subdomain-visit-count/) | [Python](/l33tcode/subdomain-visit-count.py)
[Permutations](https://leetcode.com/problems/permutations/) | [Python](/l33tcode/permutations.py)
[Numbers With Same Consecutive Differences](https://leetcode.com/problems/numbers-with-same-consecutive-differences/) | [Python](/l33tcode/numbers-with-same-consecutive-differences.py)
[Partition Labels](https://leetcode.com/problems/partition-labels/) | [Python](/l33tcode/partition-labels.py) [Golang](/l33tcode/partition-labels.go)
[Binary Tree Preorder Traversal](https://leetcode.com/problems/binary-tree-preorder-traversal/) | [Python](/l33tcode/binary-tree-preorder-traversal.py)
[Task Scheduler](https://leetcode.com/problems/task-scheduler/) | [Python](/l33tcode/task-scheduler.py)
[Encode N-ary Tree to Binary Tree](https://leetcode.com/problems/encode-n-ary-tree-to-binary-tree/) | [Python](/l33tcode/encode-n-ary-tree-to-binary-tree.py)
[Maximum Sum Circular Subarray](https://leetcode.com/problems/maximum-sum-circular-subarray/) | [Golang](/l33tcode/maximum-sum-circular-subarray.go)
[Is Graph Bipartite?](https://leetcode.com/problems/is-graph-bipartite/) | [Python](/l33tcode/is-graph-bipartite.py)
[Jump Game](https://leetcode.com/problems/jump-game/) | [Python](/l33tcode/jump-game.py) [Golang](/l33tcode/jump-game.go)
[Excel Sheet Column Number](https://leetcode.com/problems/excel-sheet-column-number/) | [Python](/l33tcode/excel-sheet-column-number.py)
[Regions Cut By Slashes](https://leetcode.com/problems/regions-cut-by-slashes/) | [Python](/l33tcode/regions-cut-by-slashes.py)
[Can I Win](https://leetcode.com/problems/can-i-win/) | [Python](/l33tcode/can-i-win.py)
[Alien Dictionary](https://leetcode.com/problems/alien-dictionary/) | [Python](/l33tcode/alien-dictionary.py)
[Number of Islands II](https://leetcode.com/problems/number-of-islands-ii/) | [Python](/l33tcode/number-of-islands-ii.py)
[Meeting Rooms II](https://leetcode.com/problems/meeting-rooms-ii/) | [Python](/l33tcode/meeting-rooms-ii.py)
[Iterator for Combination](https://leetcode.com/problems/iterator-for-combination/) | [Python](/l33tcode/iterator-for-combination.py)
[Minimum Difference Between Largest and Smallest Value in Three Moves](https://leetcode.com/problems/minimum-difference-between-largest-and-smallest-value-in-three-moves/) | [Python](/l33tcode/minimum-difference-between-largest-and-smallest-value-in-three-moves.py)
[Merge Sorted Array](https://leetcode.com/problems/merge-sorted-array/) | [Python](/l33tcode/merge-sorted-array.py)
[Bulls and Cows](https://leetcode.com/problems/bulls-and-cows/) | [Python](/l33tcode/bulls-and-cows.py)
[Continuous Subarray Sum](https://leetcode.com/problems/continuous-subarray-sum/) | [Python](/l33tcode/continuous-subarray-sum.py)
[Construct Binary Tree from Inorder and Postorder Traversal](https://leetcode.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal/) | [Python](/l33tcode/construct-binary-tree-from-inorder-and-postorder-traversal.py)
[Binary Tree Right Side View](https://leetcode.com/problems/binary-tree-right-side-view/) | [Python](/l33tcode/binary-tree-right-side-view.py)
[Min Cost Climbing Stairs](https://leetcode.com/problems/min-cost-climbing-stairs/) | [Python](/l33tcode/min-cost-climbing-stairs.py)
[ZigZag Conversion](https://leetcode.com/problems/zigzag-conversion/) | [Python](/l33tcode/zigzag-conversion.py)
[Reformat Date](https://leetcode.com/problems/reformat-date/) | [Python](/l33tcode/reformat-date.py)
[Find K-Length Substrings With No Repeated Characters](https://leetcode.com/problems/find-k-length-substrings-with-no-repeated-characters/) | [Python](/l33tcode/find-k-length-substrings-with-no-repeated-characters.py)
[Number of 1 Bits](https://leetcode.com/problems/number-of-1-bits/) | [Python](/l33tcode/number-of-1-bits.py)
[Wiggle Sort](https://leetcode.com/problems/wiggle-sort/) | [Python](/l33tcode/wiggle-sort.py)
[Gray Code](https://leetcode.com/problems/gray-code/) | [Python](/l33tcode/gray-code.py)
[Wiggle Subsequence](https://leetcode.com/problems/wiggle-subsequence/) | [Python](/l33tcode/wiggle-subsequence.py)
[Count Substrings That Differ by One Character](https://leetcode.com/problems/count-substrings-that-differ-by-one-character/) | [Python](/l33tcode/count-substrings-that-differ-by-one-character.py)
[Campus Bikes II](https://leetcode.com/problems/campus-bikes-ii/) | [Python](/l33tcode/campus-bikes-ii.py)
[Maximum Performance of a Team](https://leetcode.com/problems/maximum-performance-of-a-team/) | [Python](/l33tcode/maximum-performance-of-a-team.py)
[Reorder List](https://leetcode.com/problems/reorder-list/) | [Python](/l33tcode/reorder-list.py)
[Minimize Max Distance to Gas Station](https://leetcode.com/problems/minimize-max-distance-to-gas-station/) | [Python](/l33tcode/minimize-max-distance-to-gas-station.py)
[Maximal Rectangle](https://leetcode.com/problems/maximal-rectangle/) | [Python](/l33tcode/maximal-rectangle.py)
[Remove Palindromic Subsequences](https://leetcode.com/problems/remove-palindromic-subsequences/) | [Python](/l33tcode/remove-palindromic-subsequences.py)
[Arithmetic Slices](https://leetcode.com/problems/arithmetic-slices/) | [Python](/l33tcode/arithmetic-slices.py)
[Sort Items by Groups Respecting Dependencies](https://leetcode.com/problems/sort-items-by-groups-respecting-dependencies/) | [Python](/l33tcode/sort-items-by-groups-respecting-dependencies.py)
[Range Sum of Sorted Subarray Sums](https://leetcode.com/problems/range-sum-of-sorted-subarray-sums/) | [Python](/l33tcode/range-sum-of-sorted-subarray-sums.py)
[Bitwise AND of Numbers Range](https://leetcode.com/problems/bitwise-and-of-numbers-range/) | [Python](/l33tcode/bitwise-and-of-numbers-range.py)
[Maximum XOR of Two Numbers in an Array](https://leetcode.com/problems/maximum-xor-of-two-numbers-in-an-array/) | [Python](/l33tcode/maximum-xor-of-two-numbers-in-an-array.py)
[Linked List Cycle](https://leetcode.com/problems/linked-list-cycle/) | [Python](/l33tcode/linked-list-cycle.py)
[Increasing Decreasing String](https://leetcode.com/problems/increasing-decreasing-string/) | [Python](/l33tcode/increasing-decreasing-string.py)
[Check If a String Is a Valid Sequence from Root to Leaves Path in a Binary Tree](https://leetcode.com/problems/check-if-a-string-is-a-valid-sequence-from-root-to-leaves-path-in-a-binary-tree/) | [Python](/l33tcode/check-if-a-string-is-a-valid-sequence-from-root-to-leaves-path-in-a-binary-tree.py)
[Longest Substring with At Least K Repeating Characters](https://leetcode.com/problems/longest-substring-with-at-least-k-repeating-characters/) | [Python](/l33tcode/longest-substring-with-at-least-k-repeating-characters.py)
[Shortest Word Distance II](https://leetcode.com/problems/shortest-word-distance-ii/) | [Python](/l33tcode/shortest-word-distance-ii.py)
[Check Array Formation Through Concatenation](https://leetcode.com/problems/check-array-formation-through-concatenation/) | [Python](/l33tcode/check-array-formation-through-concatenation.py)
[Valid Perfect Square](https://leetcode.com/problems/valid-perfect-square/) | [Python](/l33tcode/valid-perfect-square.py)
[Toss Strange Coins](https://leetcode.com/problems/toss-strange-coins/) | [Python](/l33tcode/toss-strange-coins.py)
[Longest Common Prefix](https://leetcode.com/problems/longest-common-prefix/) | [Python](/l33tcode/longest-common-prefix.py)
[Maximum Number of Vowels in a Substring of Given Length](https://leetcode.com/problems/maximum-number-of-vowels-in-a-substring-of-given-length/) | [Python](/l33tcode/maximum-number-of-vowels-in-a-substring-of-given-length.py)
[Interval List Intersections](https://leetcode.com/problems/interval-list-intersections/) | [Python](/l33tcode/interval-list-intersections.py)
[Goat Latin](https://leetcode.com/problems/goat-latin/) | [Python](/l33tcode/goat-latin.py)
[Construct Binary Search Tree from Preorder Traversal](https://leetcode.com/problems/construct-binary-search-tree-from-preorder-traversal/) | [Python](/l33tcode/construct-binary-search-tree-from-preorder-traversal.py)
[Longest Substring with At Most K Distinct Characters](https://leetcode.com/problems/longest-substring-with-at-most-k-distinct-characters/) | [Python](/l33tcode/longest-substring-with-at-most-k-distinct-characters.py)
[Flip Equivalent Binary Trees](https://leetcode.com/problems/flip-equivalent-binary-trees/) | [Python](/l33tcode/flip-equivalent-binary-trees.py)
[Smallest Integer Divisible by K](https://leetcode.com/problems/smallest-integer-divisible-by-k/) | [Python](/l33tcode/smallest-integer-divisible-by-k.py)
[Find All Duplicates in an Array](https://leetcode.com/problems/find-all-duplicates-in-an-array/) | [Golang](/l33tcode/find-all-duplicates-in-an-array.go)
[Find Critical and Pseudo-Critical Edges in Minimum Spanning Tree](https://leetcode.com/problems/find-critical-and-pseudo-critical-edges-in-minimum-spanning-tree/) | [Python](/l33tcode/find-critical-and-pseudo-critical-edges-in-minimum-spanning-tree.py)
[Number of Enclaves](https://leetcode.com/problems/number-of-enclaves/) | [Python](/l33tcode/number-of-enclaves.py)
[Middle of the Linked List](https://leetcode.com/problems/middle-of-the-linked-list/) | [Python](/l33tcode/middle-of-the-linked-list.py) [Golang](/l33tcode/middle-of-the-linked-list.go)
[Number of Longest Increasing Subsequence](https://leetcode.com/problems/number-of-longest-increasing-subsequence/) | [Python](/l33tcode/number-of-longest-increasing-subsequence.py)
[Longest Happy Prefix](https://leetcode.com/problems/longest-happy-prefix/) | [Python](/l33tcode/longest-happy-prefix.py)
[Find the Most Competitive Subsequence](https://leetcode.com/problems/find-the-most-competitive-subsequence/) | [Python](/l33tcode/find-the-most-competitive-subsequence.py)
[Word Break](https://leetcode.com/problems/word-break/) | [Python](/l33tcode/word-break.py)
[Car Fleet](https://leetcode.com/problems/car-fleet/) | [Python](/l33tcode/car-fleet.py)
[Arranging Coins](https://leetcode.com/problems/arranging-coins/) | [Python](/l33tcode/arranging-coins.py)
[Teemo Attacking](https://leetcode.com/problems/teemo-attacking/) | [Python](/l33tcode/teemo-attacking.py)
[Ugly Number II](https://leetcode.com/problems/ugly-number-ii/) | [Python](/l33tcode/ugly-number-ii.py)
[Number of Sub-arrays With Odd Sum](https://leetcode.com/problems/number-of-sub-arrays-with-odd-sum/) | [Python](/l33tcode/number-of-sub-arrays-with-odd-sum.py)
[Validate Binary Search Tree](https://leetcode.com/problems/validate-binary-search-tree/) | [Python](/l33tcode/validate-binary-search-tree.py)
[Random Pick with Weight](https://leetcode.com/problems/random-pick-with-weight/) | [Python](/l33tcode/random-pick-with-weight.py)
[Missing Ranges](https://leetcode.com/problems/missing-ranges/) | [Python](/l33tcode/missing-ranges.py)
[Last Stone Weight](https://leetcode.com/problems/last-stone-weight/) | [Python](/l33tcode/last-stone-weight.py)
[Next Permutation](https://leetcode.com/problems/next-permutation/) | [Python](/l33tcode/next-permutation.py)
[Maximum Length of a Concatenated String with Unique Characters](https://leetcode.com/problems/maximum-length-of-a-concatenated-string-with-unique-characters/) | [Python](/l33tcode/maximum-length-of-a-concatenated-string-with-unique-characters.py)
[Binary String With Substrings Representing 1 To N](https://leetcode.com/problems/binary-string-with-substrings-representing-1-to-n/) | [Python](/l33tcode/binary-string-with-substrings-representing-1-to-n.py)
[Minimum Cost to Move Chips to The Same Position](https://leetcode.com/problems/minimum-cost-to-move-chips-to-the-same-position/) | [Python](/l33tcode/minimum-cost-to-move-chips-to-the-same-position.py)
[Basic Calculator](https://leetcode.com/problems/basic-calculator/) | [Python](/l33tcode/basic-calculator.py)
[Flatten Binary Tree to Linked List](https://leetcode.com/problems/flatten-binary-tree-to-linked-list/) | [Python](/l33tcode/flatten-binary-tree-to-linked-list.py)
[Multiply Strings](https://leetcode.com/problems/multiply-strings/) | [Python](/l33tcode/multiply-strings.py)
[Wildcard Matching](https://leetcode.com/problems/wildcard-matching/) | [Python](/l33tcode/wildcard-matching.py)
[Max Points on a Line](https://leetcode.com/problems/max-points-on-a-line/) | [Python](/l33tcode/max-points-on-a-line.py)
[Target Sum](https://leetcode.com/problems/target-sum/) | [Python](/l33tcode/target-sum.py) [Golang](/l33tcode/target-sum.go)
[Minimum Number of Increments on Subarrays to Form a Target Array](https://leetcode.com/problems/minimum-number-of-increments-on-subarrays-to-form-a-target-array/) | [Python](/l33tcode/minimum-number-of-increments-on-subarrays-to-form-a-target-array.py)
[Sum of Left Leaves](https://leetcode.com/problems/sum-of-left-leaves/) | [Python](/l33tcode/sum-of-left-leaves.py)
[Binary Tree Tilt](https://leetcode.com/problems/binary-tree-tilt/) | [Python](/l33tcode/binary-tree-tilt.py)
[Distribute Candies to People](https://leetcode.com/problems/distribute-candies-to-people/) | [Python](/l33tcode/distribute-candies-to-people.py)
[Perform String Shifts](https://leetcode.com/problems/perform-string-shifts/) | [Python](/l33tcode/perform-string-shifts.py)
[Largest Time for Given Digits](https://leetcode.com/problems/largest-time-for-given-digits/) | [Python](/l33tcode/largest-time-for-given-digits.py)
[Max Number of K-Sum Pairs](https://leetcode.com/problems/max-number-of-k-sum-pairs/) | [Python](/l33tcode/max-number-of-k-sum-pairs.py)
[Find Common Characters](https://leetcode.com/problems/find-common-characters/) | [Python](/l33tcode/find-common-characters.py)
[Decoded String at Index](https://leetcode.com/problems/decoded-string-at-index/) | [Python](/l33tcode/decoded-string-at-index.py)
[Minimum Number of Vertices to Reach All Nodes](https://leetcode.com/problems/minimum-number-of-vertices-to-reach-all-nodes/) | [Python](/l33tcode/minimum-number-of-vertices-to-reach-all-nodes.py)
[All Elements in Two Binary Search Trees](https://leetcode.com/problems/all-elements-in-two-binary-search-trees/) | [Python](/l33tcode/all-elements-in-two-binary-search-trees.py)
[Swap For Longest Repeated Character Substring](https://leetcode.com/problems/swap-for-longest-repeated-character-substring/) | [Python](/l33tcode/swap-for-longest-repeated-character-substring.py)
[Diameter of Binary Tree](https://leetcode.com/problems/diameter-of-binary-tree/) | [Python](/l33tcode/diameter-of-binary-tree.py)
[Linked List in Binary Tree](https://leetcode.com/problems/linked-list-in-binary-tree/) | [Python](/l33tcode/linked-list-in-binary-tree.py)
[Delete Tree Nodes](https://leetcode.com/problems/delete-tree-nodes/) | [Python](/l33tcode/delete-tree-nodes.py)
[Search Insert Position](https://leetcode.com/problems/search-insert-position/) | [Python](/l33tcode/search-insert-position.py) [Golang](/l33tcode/search-insert-position.go)
[Binary Tree Inorder Traversal](https://leetcode.com/problems/binary-tree-inorder-traversal/) | [Python](/l33tcode/binary-tree-inorder-traversal.py)
[Insert into a Sorted Circular Linked List](https://leetcode.com/problems/insert-into-a-sorted-circular-linked-list/) | [Python](/l33tcode/insert-into-a-sorted-circular-linked-list.py)
[The Skyline Problem](https://leetcode.com/problems/the-skyline-problem/) | [Python](/l33tcode/the-skyline-problem.py)
[Find Smallest Common Element in All Rows](https://leetcode.com/problems/find-smallest-common-element-in-all-rows/) | [Python](/l33tcode/find-smallest-common-element-in-all-rows.py)
[Total Hamming Distance](https://leetcode.com/problems/total-hamming-distance/) | [Python](/l33tcode/total-hamming-distance.py)
[Plus One Linked List](https://leetcode.com/problems/plus-one-linked-list/) | [Python](/l33tcode/plus-one-linked-list.py) [C++](/l33tcode/plus-one-linked-list.cpp)
[Valid Sudoku](https://leetcode.com/problems/valid-sudoku/) | [Python](/l33tcode/valid-sudoku.py)
[Find the Celebrity](https://leetcode.com/problems/find-the-celebrity/) | [Python](/l33tcode/find-the-celebrity.py)
[Delete Columns to Make Sorted](https://leetcode.com/problems/delete-columns-to-make-sorted/) | [Python](/l33tcode/delete-columns-to-make-sorted.py)
[Best Time to Buy and Sell Stock](https://leetcode.com/problems/best-time-to-buy-and-sell-stock/) | [Python](/l33tcode/best-time-to-buy-and-sell-stock.py)
[Single-Row Keyboard](https://leetcode.com/problems/single-row-keyboard/) | [Python](/l33tcode/single-row-keyboard.py) [Golang](/l33tcode/single-row-keyboard.go)
[Minimum Falling Path Sum II](https://leetcode.com/problems/minimum-falling-path-sum-ii/) | [Python](/l33tcode/minimum-falling-path-sum-ii.py)
[Search in a Sorted Array of Unknown Size](https://leetcode.com/problems/search-in-a-sorted-array-of-unknown-size/) | [Python](/l33tcode/search-in-a-sorted-array-of-unknown-size.py)
[Next Greater Element III](https://leetcode.com/problems/next-greater-element-iii/) | [Python](/l33tcode/next-greater-element-iii.py)
[Minimum Remove to Make Valid Parentheses](https://leetcode.com/problems/minimum-remove-to-make-valid-parentheses/) | [Python](/l33tcode/minimum-remove-to-make-valid-parentheses.py)
[Implement Trie (Prefix Tree)](https://leetcode.com/problems/implement-trie-prefix-tree/) | [Python](/l33tcode/implement-trie-prefix-tree.py)
[Game of Life](https://leetcode.com/problems/game-of-life/) | [Python](/l33tcode/game-of-life.py)
[Minimum Operations to Reduce X to Zero](https://leetcode.com/problems/minimum-operations-to-reduce-x-to-zero/) | [Python](/l33tcode/minimum-operations-to-reduce-x-to-zero.py)
[Valid Square](https://leetcode.com/problems/valid-square/) | [Python](/l33tcode/valid-square.py)
[Two Sum II - Input array is sorted](https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/) | [Python](/l33tcode/two-sum-ii-input-array-is-sorted.py)
[Word Search](https://leetcode.com/problems/word-search/) | [Python](/l33tcode/word-search.py) [Golang](/l33tcode/word-search.go)
[Convert Binary Number in a Linked List to Integer](https://leetcode.com/problems/convert-binary-number-in-a-linked-list-to-integer/) | [Python](/l33tcode/convert-binary-number-in-a-linked-list-to-integer.py)
[Valid Parenthesis String](https://leetcode.com/problems/valid-parenthesis-string/) | [Python](/l33tcode/valid-parenthesis-string.py)
[Insufficient Nodes in Root to Leaf Paths](https://leetcode.com/problems/insufficient-nodes-in-root-to-leaf-paths/) | [Python](/l33tcode/insufficient-nodes-in-root-to-leaf-paths.py)
[Letter Combinations of a Phone Number](https://leetcode.com/problems/letter-combinations-of-a-phone-number/) | [Python](/l33tcode/letter-combinations-of-a-phone-number.py)
[Clone Graph](https://leetcode.com/problems/clone-graph/) | [Python](/l33tcode/clone-graph.py)
[Max Increase to Keep City Skyline](https://leetcode.com/problems/max-increase-to-keep-city-skyline/) | [Python](/l33tcode/max-increase-to-keep-city-skyline.py)
[Number of Squareful Arrays](https://leetcode.com/problems/number-of-squareful-arrays/) | [Python](/l33tcode/number-of-squareful-arrays.py)
[Cherry Pickup II](https://leetcode.com/problems/cherry-pickup-ii/) | [Python](/l33tcode/cherry-pickup-ii.py)
[Course Schedule](https://leetcode.com/problems/course-schedule/) | [Python](/l33tcode/course-schedule.py)
[Fi