From 3aa80688bbf35eedf73749b2b6582efba1c2d77e Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Tue, 17 Apr 2018 08:04:46 +0300 Subject: [PATCH] Add primality tests. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7ce2f1c1..8a4040f6 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ * [Fibonacci Number](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/fibonacci) * [Cartesian Product](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/cartesian-product) * [Power Set](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/power-set) - * [Primality Test](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/primality-test) - trial division + * [Primality Test](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/primality-test) (trial division) * [Euclidean Algorithm](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/euclidean-algorithm) - calculate the greatest common divisor (GCD) * Collatz Conjecture algorithm * Extended Euclidean algorithm