|
126 | 126 | * [Decimal To Binary Recursion](https://github.com/TheAlgorithms/Python/blob/master/conversions/decimal_to_binary_recursion.py)
|
127 | 127 | * [Decimal To Hexadecimal](https://github.com/TheAlgorithms/Python/blob/master/conversions/decimal_to_hexadecimal.py)
|
128 | 128 | * [Decimal To Octal](https://github.com/TheAlgorithms/Python/blob/master/conversions/decimal_to_octal.py)
|
| 129 | + * [Excel Title To Column](https://github.com/TheAlgorithms/Python/blob/master/conversions/excel_title_to_column.py) |
129 | 130 | * [Hex To Bin](https://github.com/TheAlgorithms/Python/blob/master/conversions/hex_to_bin.py)
|
130 | 131 | * [Hexadecimal To Decimal](https://github.com/TheAlgorithms/Python/blob/master/conversions/hexadecimal_to_decimal.py)
|
131 | 132 | * [Length Conversion](https://github.com/TheAlgorithms/Python/blob/master/conversions/length_conversion.py)
|
|
367 | 368 | * [Karger](https://github.com/TheAlgorithms/Python/blob/master/graphs/karger.py)
|
368 | 369 | * [Markov Chain](https://github.com/TheAlgorithms/Python/blob/master/graphs/markov_chain.py)
|
369 | 370 | * [Matching Min Vertex Cover](https://github.com/TheAlgorithms/Python/blob/master/graphs/matching_min_vertex_cover.py)
|
| 371 | + * [Minimum Path Sum](https://github.com/TheAlgorithms/Python/blob/master/graphs/minimum_path_sum.py) |
370 | 372 | * [Minimum Spanning Tree Boruvka](https://github.com/TheAlgorithms/Python/blob/master/graphs/minimum_spanning_tree_boruvka.py)
|
371 | 373 | * [Minimum Spanning Tree Kruskal](https://github.com/TheAlgorithms/Python/blob/master/graphs/minimum_spanning_tree_kruskal.py)
|
372 | 374 | * [Minimum Spanning Tree Kruskal2](https://github.com/TheAlgorithms/Python/blob/master/graphs/minimum_spanning_tree_kruskal2.py)
|
|
560 | 562 | * [Sieve Of Eratosthenes](https://github.com/TheAlgorithms/Python/blob/master/maths/sieve_of_eratosthenes.py)
|
561 | 563 | * [Sigmoid](https://github.com/TheAlgorithms/Python/blob/master/maths/sigmoid.py)
|
562 | 564 | * [Simpson Rule](https://github.com/TheAlgorithms/Python/blob/master/maths/simpson_rule.py)
|
| 565 | + * [Sin](https://github.com/TheAlgorithms/Python/blob/master/maths/sin.py) |
563 | 566 | * [Sock Merchant](https://github.com/TheAlgorithms/Python/blob/master/maths/sock_merchant.py)
|
564 | 567 | * [Softmax](https://github.com/TheAlgorithms/Python/blob/master/maths/softmax.py)
|
565 | 568 | * [Square Root](https://github.com/TheAlgorithms/Python/blob/master/maths/square_root.py)
|
|
623 | 626 |
|
624 | 627 | ## Physics
|
625 | 628 | * [Horizontal Projectile Motion](https://github.com/TheAlgorithms/Python/blob/master/physics/horizontal_projectile_motion.py)
|
| 629 | + * [Lorenz Transformation Four Vector](https://github.com/TheAlgorithms/Python/blob/master/physics/lorenz_transformation_four_vector.py) |
626 | 630 | * [N Body Simulation](https://github.com/TheAlgorithms/Python/blob/master/physics/n_body_simulation.py)
|
627 | 631 | * [Newtons Second Law Of Motion](https://github.com/TheAlgorithms/Python/blob/master/physics/newtons_second_law_of_motion.py)
|
628 | 632 |
|
|
0 commit comments