|
13 | 13 | * Bit Manipulation |
14 | 14 | * [Counting Bits](https://github.com/TheAlgorithms/Rust/blob/master/src/bit_manipulation/counting_bits.rs) |
15 | 15 | * [Highest Set Bit](https://github.com/TheAlgorithms/Rust/blob/master/src/bit_manipulation/highest_set_bit.rs) |
16 | | - * [Sum of Two Integers](https://github.com/TheAlgorithms/Rust/blob/master/src/bit_manipulation/sum_of_two_integers.rs) |
| 16 | + * [Sum Of Two Integers](https://github.com/TheAlgorithms/Rust/blob/master/src/bit_manipulation/sum_of_two_integers.rs) |
17 | 17 | * Ciphers |
18 | 18 | * [Aes](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/aes.rs) |
19 | 19 | * [Another Rot13](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/another_rot13.rs) |
|
125 | 125 | * [Graph Enumeration](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/graph_enumeration.rs) |
126 | 126 | * [Heavy Light Decomposition](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/heavy_light_decomposition.rs) |
127 | 127 | * [Kosaraju](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/kosaraju.rs) |
128 | | - * [Lee's Breadth First Search](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/lee.rs) |
| 128 | + * [Lee](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/lee.rs) |
129 | 129 | * [Lowest Common Ancestor](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/lowest_common_ancestor.rs) |
130 | 130 | * [Minimum Spanning Tree](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/minimum_spanning_tree.rs) |
131 | 131 | * [Prim](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/prim.rs) |
|
134 | 134 | * [Tarjans Ssc](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/tarjans_ssc.rs) |
135 | 135 | * [Topological Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/topological_sort.rs) |
136 | 136 | * [Two Satisfiability](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/two_satisfiability.rs) |
| 137 | + * [Lib](https://github.com/TheAlgorithms/Rust/blob/master/src/lib.rs) |
137 | 138 | * Machine Learning |
| 139 | + * [Linear Regression](https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/linear_regression.rs) |
138 | 140 | * Loss Function |
139 | | - * [Mean Absolute Error Loss](https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/loss_function/mae_loss.rs) |
140 | | - * [Mean Squared Error Loss](https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/loss_function/mse_loss.rs) |
| 141 | + * [Mae Loss](https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/loss_function/mae_loss.rs) |
| 142 | + * [Mse Loss](https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/loss_function/mse_loss.rs) |
141 | 143 | * Optimization |
142 | 144 | * [Adam](https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/optimization/adam.rs) |
143 | 145 | * [Gradient Descent](https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/optimization/gradient_descent.rs) |
144 | | - * [Linear Regression](https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/linear_regression.rs) |
145 | | - * [Lib](https://github.com/TheAlgorithms/Rust/blob/master/src/lib.rs) |
146 | 146 | * Math |
147 | 147 | * [Abs](https://github.com/TheAlgorithms/Rust/blob/master/src/math/abs.rs) |
148 | 148 | * [Aliquot Sum](https://github.com/TheAlgorithms/Rust/blob/master/src/math/aliquot_sum.rs) |
|
154 | 154 | * [Baby Step Giant Step](https://github.com/TheAlgorithms/Rust/blob/master/src/math/baby_step_giant_step.rs) |
155 | 155 | * [Bell Numbers](https://github.com/TheAlgorithms/Rust/blob/master/src/math/bell_numbers.rs) |
156 | 156 | * [Binary Exponentiation](https://github.com/TheAlgorithms/Rust/blob/master/src/math/binary_exponentiation.rs) |
157 | | - * [Binomial Coefficient](https://github.com/TheAlgorithms/Rust/blob/master/src/math/binary_coefficient.rs) |
| 157 | + * [Binomial Coefficient](https://github.com/TheAlgorithms/Rust/blob/master/src/math/binomial_coefficient.rs) |
158 | 158 | * [Catalan Numbers](https://github.com/TheAlgorithms/Rust/blob/master/src/math/catalan_numbers.rs) |
159 | 159 | * [Ceil](https://github.com/TheAlgorithms/Rust/blob/master/src/math/ceil.rs) |
160 | 160 | * [Chinese Remainder Theorem](https://github.com/TheAlgorithms/Rust/blob/master/src/math/chinese_remainder_theorem.rs) |
|
0 commit comments