Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit ce0ede6

Browse files
tianyizheng02github-actions
and
github-actions
authored
Fix typo in DPLL file name (TheAlgorithms#10723)
* Fix DPLL file name * updating DIRECTORY.md --------- Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
1 parent 6f2d6f7 commit ce0ede6

File tree

2 files changed

+28
-18
lines changed

2 files changed

+28
-18
lines changed

‎DIRECTORY.md‎

Lines changed: 28 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@
6565

6666
## Boolean Algebra
6767
* [And Gate](boolean_algebra/and_gate.py)
68+
* [Imply Gate](boolean_algebra/imply_gate.py)
6869
* [Nand Gate](boolean_algebra/nand_gate.py)
70+
* [Nimply Gate](boolean_algebra/nimply_gate.py)
6971
* [Nor Gate](boolean_algebra/nor_gate.py)
7072
* [Not Gate](boolean_algebra/not_gate.py)
7173
* [Or Gate](boolean_algebra/or_gate.py)
@@ -178,7 +180,9 @@
178180
## Data Structures
179181
* Arrays
180182
* [Equilibrium Index In Array](data_structures/arrays/equilibrium_index_in_array.py)
183+
* [Find Triplets With 0 Sum](data_structures/arrays/find_triplets_with_0_sum.py)
181184
* [Median Two Array](data_structures/arrays/median_two_array.py)
185+
* [Pairs With Given Sum](data_structures/arrays/pairs_with_given_sum.py)
182186
* [Permutations](data_structures/arrays/permutations.py)
183187
* [Prefix Sum](data_structures/arrays/prefix_sum.py)
184188
* [Product Sum](data_structures/arrays/product_sum.py)
@@ -398,6 +402,7 @@
398402

399403
## Financial
400404
* [Equated Monthly Installments](financial/equated_monthly_installments.py)
405+
* [Exponential Moving Average](financial/exponential_moving_average.py)
401406
* [Interest](financial/interest.py)
402407
* [Present Value](financial/present_value.py)
403408
* [Price Plus Tax](financial/price_plus_tax.py)
@@ -433,8 +438,7 @@
433438
* [Breadth First Search Shortest Path](graphs/breadth_first_search_shortest_path.py)
434439
* [Breadth First Search Shortest Path 2](graphs/breadth_first_search_shortest_path_2.py)
435440
* [Breadth First Search Zero One Shortest Path](graphs/breadth_first_search_zero_one_shortest_path.py)
436-
* [Check Bipartite Graph Bfs](graphs/check_bipartite_graph_bfs.py)
437-
* [Check Bipartite Graph Dfs](graphs/check_bipartite_graph_dfs.py)
441+
* [Check Bipatrite](graphs/check_bipatrite.py)
438442
* [Check Cycle](graphs/check_cycle.py)
439443
* [Connected Components](graphs/connected_components.py)
440444
* [Deep Clone Graph](graphs/deep_clone_graph.py)
@@ -572,25 +576,20 @@
572576
* [Arc Length](maths/arc_length.py)
573577
* [Area](maths/area.py)
574578
* [Area Under Curve](maths/area_under_curve.py)
575-
* [Armstrong Numbers](maths/armstrong_numbers.py)
576-
* [Automorphic Number](maths/automorphic_number.py)
577579
* [Average Absolute Deviation](maths/average_absolute_deviation.py)
578580
* [Average Mean](maths/average_mean.py)
579581
* [Average Median](maths/average_median.py)
580582
* [Average Mode](maths/average_mode.py)
581583
* [Bailey Borwein Plouffe](maths/bailey_borwein_plouffe.py)
582584
* [Base Neg2 Conversion](maths/base_neg2_conversion.py)
583585
* [Basic Maths](maths/basic_maths.py)
584-
* [Bell Numbers](maths/bell_numbers.py)
585586
* [Binary Exp Mod](maths/binary_exp_mod.py)
586587
* [Binary Exponentiation](maths/binary_exponentiation.py)
587588
* [Binary Exponentiation 2](maths/binary_exponentiation_2.py)
588589
* [Binary Multiplication](maths/binary_multiplication.py)
589590
* [Binomial Coefficient](maths/binomial_coefficient.py)
590591
* [Binomial Distribution](maths/binomial_distribution.py)
591592
* [Bisection](maths/bisection.py)
592-
* [Carmichael Number](maths/carmichael_number.py)
593-
* [Catalan Number](maths/catalan_number.py)
594593
* [Ceil](maths/ceil.py)
595594
* [Chebyshev Distance](maths/chebyshev_distance.py)
596595
* [Check Polygon](maths/check_polygon.py)
@@ -623,10 +622,7 @@
623622
* [Gcd Of N Numbers](maths/gcd_of_n_numbers.py)
624623
* [Germain Primes](maths/germain_primes.py)
625624
* [Greatest Common Divisor](maths/greatest_common_divisor.py)
626-
* [Hamming Numbers](maths/hamming_numbers.py)
627625
* [Hardy Ramanujanalgo](maths/hardy_ramanujanalgo.py)
628-
* [Harshad Numbers](maths/harshad_numbers.py)
629-
* [Hexagonal Number](maths/hexagonal_number.py)
630626
* [Integration By Simpson Approx](maths/integration_by_simpson_approx.py)
631627
* [Interquartile Range](maths/interquartile_range.py)
632628
* [Is Int Palindrome](maths/is_int_palindrome.py)
@@ -636,7 +632,6 @@
636632
* [Joint Probability Distribution](maths/joint_probability_distribution.py)
637633
* [Juggler Sequence](maths/juggler_sequence.py)
638634
* [Karatsuba](maths/karatsuba.py)
639-
* [Krishnamurthy Number](maths/krishnamurthy_number.py)
640635
* [Kth Lexicographic Permutation](maths/kth_lexicographic_permutation.py)
641636
* [Largest Of Very Large Numbers](maths/largest_of_very_large_numbers.py)
642637
* [Least Common Multiple](maths/least_common_multiple.py)
@@ -661,14 +656,12 @@
661656
* [Numerical Integration](maths/numerical_integration.py)
662657
* [Odd Sieve](maths/odd_sieve.py)
663658
* [Perfect Cube](maths/perfect_cube.py)
664-
* [Perfect Number](maths/perfect_number.py)
665659
* [Perfect Square](maths/perfect_square.py)
666660
* [Persistence](maths/persistence.py)
667661
* [Pi Generator](maths/pi_generator.py)
668662
* [Pi Monte Carlo Estimation](maths/pi_monte_carlo_estimation.py)
669663
* [Points Are Collinear 3D](maths/points_are_collinear_3d.py)
670664
* [Pollard Rho](maths/pollard_rho.py)
671-
* [Polygonal Numbers](maths/polygonal_numbers.py)
672665
* [Polynomial Evaluation](maths/polynomial_evaluation.py)
673666
* Polynomials
674667
* [Single Indeterminate Operations](maths/polynomials/single_indeterminate_operations.py)
@@ -679,8 +672,6 @@
679672
* [Prime Sieve Eratosthenes](maths/prime_sieve_eratosthenes.py)
680673
* [Primelib](maths/primelib.py)
681674
* [Print Multiplication Table](maths/print_multiplication_table.py)
682-
* [Pronic Number](maths/pronic_number.py)
683-
* [Proth Number](maths/proth_number.py)
684675
* [Pythagoras](maths/pythagoras.py)
685676
* [Qr Decomposition](maths/qr_decomposition.py)
686677
* [Quadratic Equations Complex Numbers](maths/quadratic_equations_complex_numbers.py)
@@ -706,6 +697,23 @@
706697
* [Sin](maths/sin.py)
707698
* [Sock Merchant](maths/sock_merchant.py)
708699
* [Softmax](maths/softmax.py)
700+
* [Solovay Strassen Primality Test](maths/solovay_strassen_primality_test.py)
701+
* Special Numbers
702+
* [Armstrong Numbers](maths/special_numbers/armstrong_numbers.py)
703+
* [Automorphic Number](maths/special_numbers/automorphic_number.py)
704+
* [Bell Numbers](maths/special_numbers/bell_numbers.py)
705+
* [Carmichael Number](maths/special_numbers/carmichael_number.py)
706+
* [Catalan Number](maths/special_numbers/catalan_number.py)
707+
* [Hamming Numbers](maths/special_numbers/hamming_numbers.py)
708+
* [Harshad Numbers](maths/special_numbers/harshad_numbers.py)
709+
* [Hexagonal Number](maths/special_numbers/hexagonal_number.py)
710+
* [Krishnamurthy Number](maths/special_numbers/krishnamurthy_number.py)
711+
* [Perfect Number](maths/special_numbers/perfect_number.py)
712+
* [Polygonal Numbers](maths/special_numbers/polygonal_numbers.py)
713+
* [Pronic Number](maths/special_numbers/pronic_number.py)
714+
* [Proth Number](maths/special_numbers/proth_number.py)
715+
* [Ugly Numbers](maths/special_numbers/ugly_numbers.py)
716+
* [Weird Number](maths/special_numbers/weird_number.py)
709717
* [Square Root](maths/square_root.py)
710718
* [Sum Of Arithmetic Series](maths/sum_of_arithmetic_series.py)
711719
* [Sum Of Digits](maths/sum_of_digits.py)
@@ -721,9 +729,7 @@
721729
* [Twin Prime](maths/twin_prime.py)
722730
* [Two Pointer](maths/two_pointer.py)
723731
* [Two Sum](maths/two_sum.py)
724-
* [Ugly Numbers](maths/ugly_numbers.py)
725732
* [Volume](maths/volume.py)
726-
* [Weird Number](maths/weird_number.py)
727733
* [Zellers Congruence](maths/zellers_congruence.py)
728734

729735
## Matrix
@@ -747,6 +753,7 @@
747753
* [Spiral Print](matrix/spiral_print.py)
748754
* Tests
749755
* [Test Matrix Operation](matrix/tests/test_matrix_operation.py)
756+
* [Validate Sudoku Board](matrix/validate_sudoku_board.py)
750757

751758
## Networking Flow
752759
* [Ford Fulkerson](networking_flow/ford_fulkerson.py)
@@ -773,7 +780,7 @@
773780
## Other
774781
* [Activity Selection](other/activity_selection.py)
775782
* [Alternative List Arrange](other/alternative_list_arrange.py)
776-
* [Davisb Putnamb Logemannb Loveland](other/davisb_putnamb_logemannb_loveland.py)
783+
* [Davis Putnam Logemann Loveland](other/davis_putnam_logemann_loveland.py)
777784
* [Dijkstra Bankers Algorithm](other/dijkstra_bankers_algorithm.py)
778785
* [Doomsday](other/doomsday.py)
779786
* [Fischer Yates Shuffle](other/fischer_yates_shuffle.py)
@@ -822,6 +829,7 @@
822829
* [Rms Speed Of Molecule](physics/rms_speed_of_molecule.py)
823830
* [Shear Stress](physics/shear_stress.py)
824831
* [Speed Of Sound](physics/speed_of_sound.py)
832+
* [Speeds Of Gas Molecules](physics/speeds_of_gas_molecules.py)
825833

826834
## Project Euler
827835
* Problem 001
@@ -1212,6 +1220,7 @@
12121220
* [Capitalize](strings/capitalize.py)
12131221
* [Check Anagrams](strings/check_anagrams.py)
12141222
* [Credit Card Validator](strings/credit_card_validator.py)
1223+
* [Damerau Levenshtein Distance](strings/damerau_levenshtein_distance.py)
12151224
* [Detecting English Programmatically](strings/detecting_english_programmatically.py)
12161225
* [Dna](strings/dna.py)
12171226
* [Edit Distance](strings/edit_distance.py)
@@ -1246,6 +1255,7 @@
12461255
* [String Switch Case](strings/string_switch_case.py)
12471256
* [Strip](strings/strip.py)
12481257
* [Text Justification](strings/text_justification.py)
1258+
* [Title](strings/title.py)
12491259
* [Top K Frequent Words](strings/top_k_frequent_words.py)
12501260
* [Upper](strings/upper.py)
12511261
* [Wave](strings/wave.py)
File renamed without changes.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /