Skip to content

fix other links readme #36

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 19 additions & 14 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,32 +32,37 @@ Code | Test
[Merge Sort](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/c%2B%2B/mergesort.cpp) | Missing tests

# LeetCode
## Binary Search Trees
### Python
#### Binary Search Trees
Challenge | Solution
------------ | -------------
[ Balance a Binary Search Tree](https://leetcode.com/problems/balance-a-binary-search-tree/) | [Solution](https://github.com/larissalages/code_problems/blob/master/leetcode/Binary%20Search%20Trees/balance_binary_search_tree.py)
[BST to Greater Sum Tree](https://leetcode.com/problems/binary-search-tree-to-greater-sum-tree/) | [Solution](https://github.com/larissalages/code_problems/blob/master/leetcode/Binary%20Search%20Trees/bst_to_greater_sum_tree.py)
[ Balance a Binary Search Tree](https://leetcode.com/problems/balance-a-binary-search-tree/) | [Solution](https://github.com/larissalages/code_problems/blob/master/leetcode/python/Binary%20Search%20Trees/balance_binary_search_tree.py)
[BST to Greater Sum Tree](https://leetcode.com/problems/binary-search-tree-to-greater-sum-tree/) | [Solution](https://github.com/larissalages/code_problems/blob/master/leetcode/python/Binary%20Search%20Trees/bst_to_greater_sum_tree.py)

## Graphs
#### Graphs
Challenge | Solution
------------ | -------------
[Find the Town Judge](https://leetcode.com/problems/find-the-town-judge/) | [Solution](https://github.com/larissalages/code_problems/blob/master/leetcode/graphs/find_town_judge.py)
[Find the Town Judge](https://leetcode.com/problems/find-the-town-judge/) | [Solution](https://github.com/larissalages/code_problems/blob/master/leetcode/python/graphs/find_town_judge.py)

## Linked List
#### Linked List
Challenge | Solution
------------ | -------------
[Add Two Numbers](https://leetcode.com/problems/add-two-numbers/) | [Solution](https://github.com/larissalages/code_problems/blob/master/leetcode/linked_lists/add_two_numbers.py)
[Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/) | [Solution](https://github.com/larissalages/code_problems/blob/master/leetcode/linked_lists/merge_two_sorted_lists.py)
[Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/) | [Solution](https://github.com/larissalages/code_problems/blob/master/leetcode/linked_lists/remove_nth_node_from_end_of_list.py)
## Others
[Add Two Numbers](https://leetcode.com/problems/add-two-numbers/) | [Solution](https://github.com/larissalages/code_problems/blob/master/leetcode/python/linked_lists/add_two_numbers.py)
[Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/) | [Solution](https://github.com/larissalages/code_problems/blob/master/leetcode/python/linked_lists/merge_two_sorted_lists.py)
[Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/) | [Solution](https://github.com/larissalages/code_problems/blob/master/leetcode/python/linked_lists/remove_nth_node_from_end_of_list.py)
#### Others
Challenge | Solution
------------ | -------------

### C++
You can find all the C++ problems [here](https://github.com/larissalages/code_problems/tree/master/leetcode/cpp).

# Hackerrank
### Python
Challenge | Solution
------------ | -------------
[Non Primes Generator](https://github.com/larissalages/code_problems/blob/master/hackerrank/imgs-questions/non-primes_generator.png) | [Solution](https://github.com/larissalages/code_problems/blob/master/hackerrank/non-primes-generator.py)
[Stock Market prediction](https://github.com/larissalages/code_problems/blob/master/hackerrank/imgs-questions/stock_market_prediction.png) | [Solution](https://github.com/larissalages/code_problems/blob/master/hackerrank/stock_market_prediction.py)
[Square Accumulate Root](https://github.com/larissalages/code_problems/blob/master/hackerrank/imgs-questions/square_acc_root.png) | [Solution](https://github.com/larissalages/code_problems/blob/master/hackerrank/square_accumulate_root.py)
[Sock Merchant](https://www.hackerrank.com/challenges/sock-merchant/problem?h_r=internal-search) | [Solution](https://github.com/larissalages/code_problems/blob/master/hackerrank/sock_merchant.py)
[Non Primes Generator](https://github.com/larissalages/code_problems/blob/master/hackerrank/imgs-questions/non-primes_generator.png) | [Solution](https://github.com/larissalages/code_problems/blob/master/hackerrank/python/non-primes-generator.py)
[Stock Market prediction](https://github.com/larissalages/code_problems/blob/master/hackerrank/imgs-questions/stock_market_prediction.png) | [Solution](https://github.com/larissalages/code_problems/blob/master/hackerrank/python/stock_market_prediction.py)
[Square Accumulate Root](https://github.com/larissalages/code_problems/blob/master/hackerrank/imgs-questions/square_acc_root.png) | [Solution](https://github.com/larissalages/code_problems/blob/master/hackerrank/python/square_accumulate_root.py)
[Sock Merchant](https://www.hackerrank.com/challenges/sock-merchant/problem?h_r=internal-search) | [Solution](https://github.com/larissalages/code_problems/blob/master/hackerrank/python/sock_merchant.py)