|
177 | 177 | * [Longest Sub Array](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/longest_sub_array.py) |
178 | 178 | * [Matrix Chain Order](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/matrix_chain_order.py) |
179 | 179 | * [Max Sub Array](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/max_sub_array.py) |
180 | | - * [Max Sum Contigous Subsequence](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/max_sum_contigous_subsequence.py) |
| 180 | + * [Max Sum Contiguous Subsequence](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/max_sum_contiguous_subsequence.py) |
181 | 181 | * [Minimum Partition](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/minimum_partition.py) |
182 | 182 | * [Rod Cutting](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/rod_cutting.py) |
183 | 183 | * [Subset Generation](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/subset_generation.py) |
184 | 184 | * [Sum Of Subset](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/sum_of_subset.py) |
185 | 185 |
|
186 | 186 | ## File Transfer |
187 | | - * [Recieve File](https://github.com/TheAlgorithms/Python/blob/master/file_transfer/recieve_file.py) |
| 187 | + * [Receive File](https://github.com/TheAlgorithms/Python/blob/master/file_transfer/receive_file.py) |
188 | 188 | * [Send File](https://github.com/TheAlgorithms/Python/blob/master/file_transfer/send_file.py) |
189 | 189 |
|
190 | 190 | ## Fuzzy Logic |
|
219 | 219 | * [Kahns Algorithm Topo](https://github.com/TheAlgorithms/Python/blob/master/graphs/kahns_algorithm_topo.py) |
220 | 220 | * [Minimum Spanning Tree Kruskal](https://github.com/TheAlgorithms/Python/blob/master/graphs/minimum_spanning_tree_kruskal.py) |
221 | 221 | * [Minimum Spanning Tree Prims](https://github.com/TheAlgorithms/Python/blob/master/graphs/minimum_spanning_tree_prims.py) |
222 | | - * [Multi Hueristic Astar](https://github.com/TheAlgorithms/Python/blob/master/graphs/multi_hueristic_astar.py) |
| 222 | + * [Multi Heuristic Astar](https://github.com/TheAlgorithms/Python/blob/master/graphs/multi_heuristic_astar.py) |
223 | 223 | * [Page Rank](https://github.com/TheAlgorithms/Python/blob/master/graphs/page_rank.py) |
224 | 224 | * [Prim](https://github.com/TheAlgorithms/Python/blob/master/graphs/prim.py) |
225 | 225 | * [Scc Kosaraju](https://github.com/TheAlgorithms/Python/blob/master/graphs/scc_kosaraju.py) |
|
319 | 319 | * [Sieve Of Eratosthenes](https://github.com/TheAlgorithms/Python/blob/master/maths/sieve_of_eratosthenes.py) |
320 | 320 | * [Simpson Rule](https://github.com/TheAlgorithms/Python/blob/master/maths/simpson_rule.py) |
321 | 321 | * [Softmax](https://github.com/TheAlgorithms/Python/blob/master/maths/softmax.py) |
| 322 | + * [Square Root](https://github.com/TheAlgorithms/Python/blob/master/maths/square_root.py) |
322 | 323 | * [Sum Of Arithmetic Series](https://github.com/TheAlgorithms/Python/blob/master/maths/sum_of_arithmetic_series.py) |
323 | 324 | * [Test Prime Check](https://github.com/TheAlgorithms/Python/blob/master/maths/test_prime_check.py) |
324 | 325 | * [Trapezoidal Rule](https://github.com/TheAlgorithms/Python/blob/master/maths/trapezoidal_rule.py) |
|
469 | 470 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_28/sol1.py) |
470 | 471 | * Problem 29 |
471 | 472 | * [Solution](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_29/solution.py) |
| 473 | + * Problem 30 |
| 474 | + * [Soln](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_30/soln.py) |
472 | 475 | * Problem 31 |
473 | 476 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_31/sol1.py) |
474 | 477 | * Problem 32 |
|
508 | 511 | * [Quick Select](https://github.com/TheAlgorithms/Python/blob/master/searches/quick_select.py) |
509 | 512 | * [Sentinel Linear Search](https://github.com/TheAlgorithms/Python/blob/master/searches/sentinel_linear_search.py) |
510 | 513 | * [Simple-Binary-Search](https://github.com/TheAlgorithms/Python/blob/master/searches/simple-binary-search.py) |
| 514 | + * [Simulated Annealing](https://github.com/TheAlgorithms/Python/blob/master/searches/simulated_annealing.py) |
511 | 515 | * [Tabu Search](https://github.com/TheAlgorithms/Python/blob/master/searches/tabu_search.py) |
512 | 516 | * [Ternary Search](https://github.com/TheAlgorithms/Python/blob/master/searches/ternary_search.py) |
513 | 517 |
|
|
564 | 568 | * [Reverse Words](https://github.com/TheAlgorithms/Python/blob/master/strings/reverse_words.py) |
565 | 569 | * [Split](https://github.com/TheAlgorithms/Python/blob/master/strings/split.py) |
566 | 570 | * [Upper](https://github.com/TheAlgorithms/Python/blob/master/strings/upper.py) |
567 | | - * [Word Occurence](https://github.com/TheAlgorithms/Python/blob/master/strings/word_occurence.py) |
| 571 | + * [Word Occurrence](https://github.com/TheAlgorithms/Python/blob/master/strings/word_occurrence.py) |
568 | 572 |
|
569 | 573 | ## Traversals |
570 | 574 | * [Binary Tree Traversals](https://github.com/TheAlgorithms/Python/blob/master/traversals/binary_tree_traversals.py) |
|
0 commit comments