Skip to content

Commit a8e194b

Browse files
authored
added links for sections
1 parent a71618f commit a8e194b

File tree

1 file changed

+44
-44
lines changed

1 file changed

+44
-44
lines changed

DIRECTORY.md

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11

2-
## Audio Filters
2+
## [Audio Filters](audio_filters)
33
* [Butterworth Filter](audio_filters/butterworth_filter.py)
44
* [Iir Filter](audio_filters/iir_filter.py)
55
* [Show Response](audio_filters/show_response.py)
66

7-
## Backtracking
7+
## [Backtracking](backtracking)
88
* [All Combinations](backtracking/all_combinations.py)
99
* [All Permutations](backtracking/all_permutations.py)
1010
* [All Subsequences](backtracking/all_subsequences.py)
@@ -27,7 +27,7 @@
2727
* [Word Ladder](backtracking/word_ladder.py)
2828
* [Word Search](backtracking/word_search.py)
2929

30-
## Bit Manipulation
30+
## [Bit Manipulation](bit_manipulation)
3131
* [Binary And Operator](bit_manipulation/binary_and_operator.py)
3232
* [Binary Coded Decimal](bit_manipulation/binary_coded_decimal.py)
3333
* [Binary Count Setbits](bit_manipulation/binary_count_setbits.py)
@@ -55,10 +55,10 @@
5555
* [Single Bit Manipulation Operations](bit_manipulation/single_bit_manipulation_operations.py)
5656
* [Swap All Odd And Even Bits](bit_manipulation/swap_all_odd_and_even_bits.py)
5757

58-
## Blockchain
58+
## [Blockchain](blockchain)
5959
* [Diophantine Equation](blockchain/diophantine_equation.py)
6060

61-
## Boolean Algebra
61+
## [Boolean Algebra](boolean_algebra)
6262
* [And Gate](boolean_algebra/and_gate.py)
6363
* [Imply Gate](boolean_algebra/imply_gate.py)
6464
* [Karnaugh Map Simplification](boolean_algebra/karnaugh_map_simplification.py)
@@ -72,15 +72,15 @@
7272
* [Xnor Gate](boolean_algebra/xnor_gate.py)
7373
* [Xor Gate](boolean_algebra/xor_gate.py)
7474

75-
## Cellular Automata
75+
## [Cellular Automata](cellular_automata)
7676
* [Conways Game Of Life](cellular_automata/conways_game_of_life.py)
7777
* [Game Of Life](cellular_automata/game_of_life.py)
7878
* [Langtons Ant](cellular_automata/langtons_ant.py)
7979
* [Nagel Schrekenberg](cellular_automata/nagel_schrekenberg.py)
8080
* [One Dimensional](cellular_automata/one_dimensional.py)
8181
* [Wa Tor](cellular_automata/wa_tor.py)
8282

83-
## Ciphers
83+
## [Ciphers](ciphers)
8484
* [A1Z26](ciphers/a1z26.py)
8585
* [Affine Cipher](ciphers/affine_cipher.py)
8686
* [Atbash](ciphers/atbash.py)
@@ -129,7 +129,7 @@
129129
* [Vigenere Cipher](ciphers/vigenere_cipher.py)
130130
* [Xor Cipher](ciphers/xor_cipher.py)
131131

132-
## Computer Vision
132+
## [Computer Vision](computer_vision)
133133
* [Cnn Classification](computer_vision/cnn_classification.py)
134134
* [Flip Augmentation](computer_vision/flip_augmentation.py)
135135
* [Haralick Descriptors](computer_vision/haralick_descriptors.py)
@@ -140,7 +140,7 @@
140140
* [Mosaic Augmentation](computer_vision/mosaic_augmentation.py)
141141
* [Pooling Functions](computer_vision/pooling_functions.py)
142142

143-
## Conversions
143+
## [Conversions](conversions)
144144
* [Astronomical Length Scale Conversion](conversions/astronomical_length_scale_conversion.py)
145145
* [Binary To Decimal](conversions/binary_to_decimal.py)
146146
* [Binary To Hexadecimal](conversions/binary_to_hexadecimal.py)
@@ -173,7 +173,7 @@
173173
* [Volume Conversions](conversions/volume_conversions.py)
174174
* [Weight Conversion](conversions/weight_conversion.py)
175175

176-
## Data Compression
176+
## [Data Compression](data_compression)
177177
* [Burrows Wheeler](data_compression/burrows_wheeler.py)
178178
* [Coordinate Compression](data_compression/coordinate_compression.py)
179179
* [Huffman](data_compression/huffman.py)
@@ -183,7 +183,7 @@
183183
* [Peak Signal To Noise Ratio](data_compression/peak_signal_to_noise_ratio.py)
184184
* [Run Length Encoding](data_compression/run_length_encoding.py)
185185

186-
## Data Structures
186+
## [Data Structures](data_structures)
187187
* Arrays
188188
* [Equilibrium Index In Array](data_structures/arrays/equilibrium_index_in_array.py)
189189
* [Find Triplets With 0 Sum](data_structures/arrays/find_triplets_with_0_sum.py)
@@ -313,7 +313,7 @@
313313
* [Radix Tree](data_structures/trie/radix_tree.py)
314314
* [Trie](data_structures/trie/trie.py)
315315

316-
## Digital Image Processing
316+
## [Digital Image Processing](digital_image_processing])
317317
* [Change Brightness](digital_image_processing/change_brightness.py)
318318
* [Change Contrast](digital_image_processing/change_contrast.py)
319319
* [Convert To Negative](digital_image_processing/convert_to_negative.py)
@@ -343,7 +343,7 @@
343343
* [Sepia](digital_image_processing/sepia.py)
344344
* [Test Digital Image Processing](digital_image_processing/test_digital_image_processing.py)
345345

346-
## Divide And Conquer
346+
## [Divide And Conquer](divide_and_conquer)
347347
* [Closest Pair Of Points](divide_and_conquer/closest_pair_of_points.py)
348348
* [Convex Hull](divide_and_conquer/convex_hull.py)
349349
* [Heaps Algorithm](divide_and_conquer/heaps_algorithm.py)
@@ -357,10 +357,10 @@
357357
* [Power](divide_and_conquer/power.py)
358358
* [Strassen Matrix Multiplication](divide_and_conquer/strassen_matrix_multiplication.py)
359359

360-
## Docs
360+
## [Docs](docs)
361361
* [Conf](docs/conf.py)
362362

363-
## Dynamic Programming
363+
## [Dynamic Programming](dynamic_programming)
364364
* [Abbreviation](dynamic_programming/abbreviation.py)
365365
* [All Construct](dynamic_programming/all_construct.py)
366366
* [Bitmask](dynamic_programming/bitmask.py)
@@ -411,7 +411,7 @@
411411
* [Wildcard Matching](dynamic_programming/wildcard_matching.py)
412412
* [Word Break](dynamic_programming/word_break.py)
413413

414-
## Electronics
414+
## [Electronics](electronics)
415415
* [Apparent Power](electronics/apparent_power.py)
416416
* [Builtin Voltage](electronics/builtin_voltage.py)
417417
* [Capacitor Equivalence](electronics/capacitor_equivalence.py)
@@ -432,13 +432,13 @@
432432
* [Resonant Frequency](electronics/resonant_frequency.py)
433433
* [Wheatstone Bridge](electronics/wheatstone_bridge.py)
434434

435-
## File Transfer
435+
## [File Transfer](file_transfer)
436436
* [Receive File](file_transfer/receive_file.py)
437437
* [Send File](file_transfer/send_file.py)
438438
* Tests
439439
* [Test Send File](file_transfer/tests/test_send_file.py)
440440

441-
## Financial
441+
## [Financial](financial)
442442
* [Equated Monthly Installments](financial/equated_monthly_installments.py)
443443
* [Exponential Moving Average](financial/exponential_moving_average.py)
444444
* [Interest](financial/interest.py)
@@ -448,33 +448,33 @@
448448
* [Straight Line Depreciation](financial/straight_line_depreciation.py)
449449
* [Time And Half Pay](financial/time_and_half_pay.py)
450450

451-
## Fractals
451+
## [Fractals](fractals)
452452
* [Julia Sets](fractals/julia_sets.py)
453453
* [Koch Snowflake](fractals/koch_snowflake.py)
454454
* [Mandelbrot](fractals/mandelbrot.py)
455455
* [Sierpinski Triangle](fractals/sierpinski_triangle.py)
456456
* [Vicsek](fractals/vicsek.py)
457457

458-
## Fuzzy Logic
458+
## [Fuzzy Logic](fuzzy_logic)
459459
* [Fuzzy Operations](fuzzy_logic/fuzzy_operations.py)
460460

461-
## Genetic Algorithm
461+
## [Genetic Algorithm](genetic_algorithm)
462462
* [Basic String](genetic_algorithm/basic_string.py)
463463

464-
## Geodesy
464+
## [Geodesy](geodesy)
465465
* [Haversine Distance](geodesy/haversine_distance.py)
466466
* [Lamberts Ellipsoidal Distance](geodesy/lamberts_ellipsoidal_distance.py)
467467

468-
## Geometry
468+
## [Geometry](geometry)
469469
* [Geometry](geometry/geometry.py)
470470

471-
## Graphics
471+
## [Graphics](graphics)
472472
* [Bezier Curve](graphics/bezier_curve.py)
473473
* [Butterfly Pattern](graphics/butterfly_pattern.py)
474474
* [Digital Differential Analyzer Line](graphics/digital_differential_analyzer_line.py)
475475
* [Vector3 For 2D Rendering](graphics/vector3_for_2d_rendering.py)
476476

477-
## Graphs
477+
## [Graphs](graphs)
478478
* [A Star](graphs/a_star.py)
479479
* [Ant Colony Optimization Algorithms](graphs/ant_colony_optimization_algorithms.py)
480480
* [Articulation Points](graphs/articulation_points.py)
@@ -539,7 +539,7 @@
539539
* [Test Min Spanning Tree Kruskal](graphs/tests/test_min_spanning_tree_kruskal.py)
540540
* [Test Min Spanning Tree Prim](graphs/tests/test_min_spanning_tree_prim.py)
541541

542-
## Greedy Methods
542+
## [Greedy Methods](greedy_methods)
543543
* [Best Time To Buy And Sell Stock](greedy_methods/best_time_to_buy_and_sell_stock.py)
544544
* [Fractional Cover Problem](greedy_methods/fractional_cover_problem.py)
545545
* [Fractional Knapsack](greedy_methods/fractional_knapsack.py)
@@ -550,7 +550,7 @@
550550
* [Optimal Merge Pattern](greedy_methods/optimal_merge_pattern.py)
551551
* [Smallest Range](greedy_methods/smallest_range.py)
552552

553-
## Hashes
553+
## [Hashes](hashes)
554554
* [Adler32](hashes/adler32.py)
555555
* [Chaos Machine](hashes/chaos_machine.py)
556556
* [Djb2](hashes/djb2.py)
@@ -564,15 +564,15 @@
564564
* [Sha1](hashes/sha1.py)
565565
* [Sha256](hashes/sha256.py)
566566

567-
## Knapsack
567+
## [Knapsack](knapsack)
568568
* [Greedy Knapsack](knapsack/greedy_knapsack.py)
569569
* [Knapsack](knapsack/knapsack.py)
570570
* [Recursive Approach Knapsack](knapsack/recursive_approach_knapsack.py)
571571
* Tests
572572
* [Test Greedy Knapsack](knapsack/tests/test_greedy_knapsack.py)
573573
* [Test Knapsack](knapsack/tests/test_knapsack.py)
574574

575-
## Linear Algebra
575+
## [Linear Algebra](linear_algebra)
576576
* [Gaussian Elimination](linear_algebra/gaussian_elimination.py)
577577
* [Jacobi Iteration Method](linear_algebra/jacobi_iteration_method.py)
578578
* [Lu Decomposition](linear_algebra/lu_decomposition.py)
@@ -589,10 +589,10 @@
589589
* [Test Linear Algebra](linear_algebra/src/test_linear_algebra.py)
590590
* [Transformations 2D](linear_algebra/src/transformations_2d.py)
591591

592-
## Linear Programming
592+
## [Linear Programming](linear_programming)
593593
* [Simplex](linear_programming/simplex.py)
594594

595-
## Machine Learning
595+
## [Machine Learning](machine_learning)
596596
* [Apriori Algorithm](machine_learning/apriori_algorithm.py)
597597
* [Astar](machine_learning/astar.py)
598598
* [Automatic Differentiation](machine_learning/automatic_differentiation.py)
@@ -627,7 +627,7 @@
627627
* [Xgboost Classifier](machine_learning/xgboost_classifier.py)
628628
* [Xgboost Regressor](machine_learning/xgboost_regressor.py)
629629

630-
## Maths
630+
## [Maths](maths)
631631
* [Abs](maths/abs.py)
632632
* [Addition Without Arithmetic](maths/addition_without_arithmetic.py)
633633
* [Aliquot Sum](maths/aliquot_sum.py)
@@ -805,7 +805,7 @@
805805
* [Volume](maths/volume.py)
806806
* [Zellers Congruence](maths/zellers_congruence.py)
807807

808-
## Matrix
808+
## [Matrix](matrix)
809809
* [Binary Search Matrix](matrix/binary_search_matrix.py)
810810
* [Count Islands In Matrix](matrix/count_islands_in_matrix.py)
811811
* [Count Negative Numbers In Sorted Matrix](matrix/count_negative_numbers_in_sorted_matrix.py)
@@ -830,11 +830,11 @@
830830
* [Test Matrix Operation](matrix/tests/test_matrix_operation.py)
831831
* [Validate Sudoku Board](matrix/validate_sudoku_board.py)
832832

833-
## Networking Flow
833+
## [Networking Flow](networking_flow)
834834
* [Ford Fulkerson](networking_flow/ford_fulkerson.py)
835835
* [Minimum Cut](networking_flow/minimum_cut.py)
836836

837-
## Neural Network
837+
## [Neural Network](neural_network)
838838
* Activation Functions
839839
* [Binary Step](neural_network/activation_functions/binary_step.py)
840840
* [Exponential Linear Unit](neural_network/activation_functions/exponential_linear_unit.py)
@@ -853,7 +853,7 @@
853853
* [Simple Neural Network](neural_network/simple_neural_network.py)
854854
* [Two Hidden Layers Neural Network](neural_network/two_hidden_layers_neural_network.py)
855855

856-
## Other
856+
## [Other](other)
857857
* [Activity Selection](other/activity_selection.py)
858858
* [Alternative List Arrange](other/alternative_list_arrange.py)
859859
* [Bankers Algorithm](other/bankers_algorithm.py)
@@ -881,7 +881,7 @@
881881
* [Tower Of Hanoi](other/tower_of_hanoi.py)
882882
* [Word Search](other/word_search.py)
883883

884-
## Physics
884+
## [Physics](physics)
885885
* [Altitude Pressure](physics/altitude_pressure.py)
886886
* [Archimedes Principle Of Buoyant Force](physics/archimedes_principle_of_buoyant_force.py)
887887
* [Basic Orbital Capture](physics/basic_orbital_capture.py)
@@ -917,7 +917,7 @@
917917
* [Speeds Of Gas Molecules](physics/speeds_of_gas_molecules.py)
918918
* [Terminal Velocity](physics/terminal_velocity.py)
919919

920-
## Project Euler
920+
## [Project Euler](project_euler)
921921
* Problem 001
922922
* [Sol1](project_euler/problem_001/sol1.py)
923923
* [Sol2](project_euler/problem_001/sol2.py)
@@ -1226,10 +1226,10 @@
12261226
* Problem 800
12271227
* [Sol1](project_euler/problem_800/sol1.py)
12281228

1229-
## Quantum
1229+
## [Quantum](quantum)
12301230
* [Q Fourier Transform](quantum/q_fourier_transform.py)
12311231

1232-
## Scheduling
1232+
## [Scheduling](scheduling)
12331233
* [First Come First Served](scheduling/first_come_first_served.py)
12341234
* [Highest Response Ratio Next](scheduling/highest_response_ratio_next.py)
12351235
* [Job Sequence With Deadline](scheduling/job_sequence_with_deadline.py)
@@ -1239,7 +1239,7 @@
12391239
* [Round Robin](scheduling/round_robin.py)
12401240
* [Shortest Job First](scheduling/shortest_job_first.py)
12411241

1242-
## Searches
1242+
## [Searches](searches)
12431243
* [Binary Search](searches/binary_search.py)
12441244
* [Binary Tree Traversal](searches/binary_tree_traversal.py)
12451245
* [Double Linear Search](searches/double_linear_search.py)
@@ -1258,7 +1258,7 @@
12581258
* [Tabu Search](searches/tabu_search.py)
12591259
* [Ternary Search](searches/ternary_search.py)
12601260

1261-
## Sorts
1261+
## [Sorts](sorts)
12621262
* [Bead Sort](sorts/bead_sort.py)
12631263
* [Binary Insertion Sort](sorts/binary_insertion_sort.py)
12641264
* [Bitonic Sort](sorts/bitonic_sort.py)
@@ -1310,7 +1310,7 @@
13101310
* [Unknown Sort](sorts/unknown_sort.py)
13111311
* [Wiggle Sort](sorts/wiggle_sort.py)
13121312

1313-
## Strings
1313+
## [Strings](strings)
13141314
* [Aho Corasick](strings/aho_corasick.py)
13151315
* [Alternative String Arrange](strings/alternative_string_arrange.py)
13161316
* [Anagrams](strings/anagrams.py)
@@ -1368,7 +1368,7 @@
13681368
* [Word Patterns](strings/word_patterns.py)
13691369
* [Z Function](strings/z_function.py)
13701370

1371-
## Web Programming
1371+
## [Web Programming](web_programming)
13721372
* [Co2 Emission](web_programming/co2_emission.py)
13731373
* [Covid Stats Via Xpath](web_programming/covid_stats_via_xpath.py)
13741374
* [Crawl Google Results](web_programming/crawl_google_results.py)

0 commit comments

Comments
 (0)