|
23 | 23 | * [Test Is Valid Subsequence](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/arrays/subsequence/test_is_valid_subsequence.py) |
24 | 24 | * Backtracking |
25 | 25 | * Combination |
| 26 | + * [Test Combination](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/backtracking/combination/test_combination.py) |
26 | 27 | * [Test Combination 2](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/backtracking/combination/test_combination_2.py) |
27 | 28 | * [Test Combination 3](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/backtracking/combination/test_combination_3.py) |
28 | 29 | * Decode Message |
|
139 | 140 | * [Test Can Visit All Rooms](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/keys_and_rooms/test_can_visit_all_rooms.py) |
140 | 141 | * Knight On Chess Board |
141 | 142 | * [Test Knight On Chess Board](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/knight_on_chess_board/test_knight_on_chess_board.py) |
| 143 | + * Last Day Where You Can Still Cross |
| 144 | + * [Test Last Day You Can Still Cross](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/last_day_where_you_can_still_cross/test_last_day_you_can_still_cross.py) |
142 | 145 | * Maxareaofisland |
143 | 146 | * [Test Max Area Of Island](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/maxareaofisland/test_max_area_of_island.py) |
144 | 147 | * Min Cost To Supply |
|
203 | 206 | * Ransom Note |
204 | 207 | * [Test Ransom Note](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/hash_table/ransom_note/test_ransom_note.py) |
205 | 208 | * Heap |
| 209 | + * Construct Target With Sums |
| 210 | + * [Test Construct Target With Sums](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/heap/construct_target_with_sums/test_construct_target_with_sums.py) |
206 | 211 | * Kclosestelements |
207 | 212 | * [Test Find K Closest Elements](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/heap/kclosestelements/test_find_k_closest_elements.py) |
208 | 213 | * Longest Happy String |
|
403 | 408 | * Topkfreqwords |
404 | 409 | * [Test Top K Frequent Words](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/trie/topkfreqwords/test_top_k_frequent_words.py) |
405 | 410 | * Two Pointers |
| 411 | + * Append Chars To Make Subsequence |
| 412 | + * [Test Append Chars To Make Subsequence](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/two_pointers/append_chars_to_make_subsequence/test_append_chars_to_make_subsequence.py) |
406 | 413 | * Array 3 Pointers |
407 | 414 | * [Test Array 3 Pointers](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/two_pointers/array_3_pointers/test_array_3_pointers.py) |
408 | 415 | * Container With Most Water |
|
600 | 607 | * Lrucache |
601 | 608 | * [With Internal Linked List](https://github.com/BrianLusina/PythonSnips/blob/master/datastructures/lrucache/with_internal_linked_list.py) |
602 | 609 | * [With Ordered Dict](https://github.com/BrianLusina/PythonSnips/blob/master/datastructures/lrucache/with_ordered_dict.py) |
| 610 | + * Map Sum |
| 611 | + * [Test Map Sum Pairs](https://github.com/BrianLusina/PythonSnips/blob/master/datastructures/map_sum/test_map_sum_pairs.py) |
603 | 612 | * Orderedstream |
604 | 613 | * [Test Ordered Stream](https://github.com/BrianLusina/PythonSnips/blob/master/datastructures/orderedstream/test_ordered_stream.py) |
605 | 614 | * Queues |
|
0 commit comments