|
294 | 294 | * [Mergesort](divide_and_conquer/mergesort.py) |
295 | 295 | * [Peak](divide_and_conquer/peak.py) |
296 | 296 | * [Power](divide_and_conquer/power.py) |
297 | | - * [Strassen Matrix Multiplication](divide_and_conquer/strassen_matrix_multiplication.py) |
298 | 297 |
|
299 | 298 | ## Dynamic Programming |
300 | 299 | * [Abbreviation](dynamic_programming/abbreviation.py) |
|
632 | 631 | * [Radians](maths/radians.py) |
633 | 632 | * [Radix2 Fft](maths/radix2_fft.py) |
634 | 633 | * [Relu](maths/relu.py) |
| 634 | + * [Remove Digit](maths/remove_digit.py) |
635 | 635 | * [Runge Kutta](maths/runge_kutta.py) |
636 | 636 | * [Segmented Sieve](maths/segmented_sieve.py) |
637 | 637 | * Series |
|
694 | 694 |
|
695 | 695 | ## Neural Network |
696 | 696 | * [2 Hidden Layers Neural Network](neural_network/2_hidden_layers_neural_network.py) |
| 697 | + * Activation Functions |
| 698 | + * [Exponential Linear Unit](neural_network/activation_functions/exponential_linear_unit.py) |
697 | 699 | * [Back Propagation Neural Network](neural_network/back_propagation_neural_network.py) |
698 | 700 | * [Convolution Neural Network](neural_network/convolution_neural_network.py) |
699 | 701 | * [Input Data](neural_network/input_data.py) |
|
1080 | 1082 |
|
1081 | 1083 | ## Sorts |
1082 | 1084 | * [Bead Sort](sorts/bead_sort.py) |
| 1085 | + * [Binary Insertion Sort](sorts/binary_insertion_sort.py) |
1083 | 1086 | * [Bitonic Sort](sorts/bitonic_sort.py) |
1084 | 1087 | * [Bogo Sort](sorts/bogo_sort.py) |
1085 | 1088 | * [Bubble Sort](sorts/bubble_sort.py) |
|
1170 | 1173 | * [Reverse Words](strings/reverse_words.py) |
1171 | 1174 | * [Snake Case To Camel Pascal Case](strings/snake_case_to_camel_pascal_case.py) |
1172 | 1175 | * [Split](strings/split.py) |
| 1176 | + * [String Switch Case](strings/string_switch_case.py) |
1173 | 1177 | * [Text Justification](strings/text_justification.py) |
1174 | 1178 | * [Top K Frequent Words](strings/top_k_frequent_words.py) |
1175 | 1179 | * [Upper](strings/upper.py) |
|
0 commit comments