Skip to content

Commit 79a91cc

Browse files
cclaussgithub-actions
and
github-actions
authored
Fix typo in filename: ciphers/trifid_cipher.py (TheAlgorithms#10516)
* Update and rename trafid_cipher.py to trifid_cipher.py * updating DIRECTORY.md --------- Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
1 parent 777eca8 commit 79a91cc

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

DIRECTORY.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@
6363

6464
## Boolean Algebra
6565
* [And Gate](boolean_algebra/and_gate.py)
66+
* [Imply Gate](boolean_algebra/imply_gate.py)
6667
* [Nand Gate](boolean_algebra/nand_gate.py)
68+
* [Nimply Gate](boolean_algebra/nimply_gate.py)
6769
* [Nor Gate](boolean_algebra/nor_gate.py)
6870
* [Not Gate](boolean_algebra/not_gate.py)
6971
* [Or Gate](boolean_algebra/or_gate.py)
@@ -119,9 +121,9 @@
119121
* [Shuffled Shift Cipher](ciphers/shuffled_shift_cipher.py)
120122
* [Simple Keyword Cypher](ciphers/simple_keyword_cypher.py)
121123
* [Simple Substitution Cipher](ciphers/simple_substitution_cipher.py)
122-
* [Trafid Cipher](ciphers/trafid_cipher.py)
123124
* [Transposition Cipher](ciphers/transposition_cipher.py)
124125
* [Transposition Cipher Encrypt Decrypt File](ciphers/transposition_cipher_encrypt_decrypt_file.py)
126+
* [Trifid Cipher](ciphers/trifid_cipher.py)
125127
* [Vigenere Cipher](ciphers/vigenere_cipher.py)
126128
* [Xor Cipher](ciphers/xor_cipher.py)
127129

@@ -174,7 +176,9 @@
174176
## Data Structures
175177
* Arrays
176178
* [Equilibrium Index In Array](data_structures/arrays/equilibrium_index_in_array.py)
179+
* [Find Triplets With 0 Sum](data_structures/arrays/find_triplets_with_0_sum.py)
177180
* [Median Two Array](data_structures/arrays/median_two_array.py)
181+
* [Pairs With Given Sum](data_structures/arrays/pairs_with_given_sum.py)
178182
* [Permutations](data_structures/arrays/permutations.py)
179183
* [Prefix Sum](data_structures/arrays/prefix_sum.py)
180184
* [Product Sum](data_structures/arrays/product_sum.py)
@@ -385,6 +389,7 @@
385389

386390
## Financial
387391
* [Equated Monthly Installments](financial/equated_monthly_installments.py)
392+
* [Exponential Moving Average](financial/exponential_moving_average.py)
388393
* [Interest](financial/interest.py)
389394
* [Present Value](financial/present_value.py)
390395
* [Price Plus Tax](financial/price_plus_tax.py)
@@ -670,6 +675,7 @@
670675
* [Radians](maths/radians.py)
671676
* [Radix2 Fft](maths/radix2_fft.py)
672677
* [Remove Digit](maths/remove_digit.py)
678+
* [Rkf45](maths/rkf45.py)
673679
* [Runge Kutta](maths/runge_kutta.py)
674680
* [Segmented Sieve](maths/segmented_sieve.py)
675681
* Series
@@ -688,6 +694,7 @@
688694
* [Sin](maths/sin.py)
689695
* [Sock Merchant](maths/sock_merchant.py)
690696
* [Softmax](maths/softmax.py)
697+
* [Solovay Strassen Primality Test](maths/solovay_strassen_primality_test.py)
691698
* [Square Root](maths/square_root.py)
692699
* [Sum Of Arithmetic Series](maths/sum_of_arithmetic_series.py)
693700
* [Sum Of Digits](maths/sum_of_digits.py)
@@ -728,6 +735,7 @@
728735
* [Spiral Print](matrix/spiral_print.py)
729736
* Tests
730737
* [Test Matrix Operation](matrix/tests/test_matrix_operation.py)
738+
* [Validate Sudoku Board](matrix/validate_sudoku_board.py)
731739

732740
## Networking Flow
733741
* [Ford Fulkerson](networking_flow/ford_fulkerson.py)
@@ -803,6 +811,7 @@
803811
* [Rms Speed Of Molecule](physics/rms_speed_of_molecule.py)
804812
* [Shear Stress](physics/shear_stress.py)
805813
* [Speed Of Sound](physics/speed_of_sound.py)
814+
* [Speeds Of Gas Molecules](physics/speeds_of_gas_molecules.py)
806815

807816
## Project Euler
808817
* Problem 001
@@ -1106,6 +1115,7 @@
11061115
## Scheduling
11071116
* [First Come First Served](scheduling/first_come_first_served.py)
11081117
* [Highest Response Ratio Next](scheduling/highest_response_ratio_next.py)
1118+
* [Job Sequence With Deadline](scheduling/job_sequence_with_deadline.py)
11091119
* [Job Sequencing With Deadline](scheduling/job_sequencing_with_deadline.py)
11101120
* [Multi Level Feedback Queue](scheduling/multi_level_feedback_queue.py)
11111121
* [Non Preemptive Shortest Job First](scheduling/non_preemptive_shortest_job_first.py)
@@ -1193,6 +1203,7 @@
11931203
* [Capitalize](strings/capitalize.py)
11941204
* [Check Anagrams](strings/check_anagrams.py)
11951205
* [Credit Card Validator](strings/credit_card_validator.py)
1206+
* [Damerau Levenshtein Distance](strings/damerau_levenshtein_distance.py)
11961207
* [Detecting English Programmatically](strings/detecting_english_programmatically.py)
11971208
* [Dna](strings/dna.py)
11981209
* [Frequency Finder](strings/frequency_finder.py)
@@ -1225,6 +1236,7 @@
12251236
* [String Switch Case](strings/string_switch_case.py)
12261237
* [Strip](strings/strip.py)
12271238
* [Text Justification](strings/text_justification.py)
1239+
* [Title](strings/title.py)
12281240
* [Top K Frequent Words](strings/top_k_frequent_words.py)
12291241
* [Upper](strings/upper.py)
12301242
* [Wave](strings/wave.py)
File renamed without changes.

0 commit comments

Comments
 (0)