From feed6d6c1a438b1700f0c58160422f47c9dfd41e Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Tue, 12 Jun 2018 17:31:46 +0300 Subject: [PATCH] Add Liu Hui to README. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d0b32a90..bfb91579 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,7 @@ a set of rules that precisely define a sequence of operations. * [Integer Partition](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/integer-partition) * [Sieve of Eratosthenes](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/sieve-of-eratosthenes) - finding all prime numbers up to any given limit * [Is Power of Two](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/is-power-of-two) - check if the number is power of two (naive and bitwise algorithms) + * [Liu Hui π Algorithm](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/liu-hui) - approximate π calculations based on N-gons. * **Sets** * [Cartesian Product](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/sets/cartesian-product) - product of multiple sets * [Power Set](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/sets/power-set) - all subsets of a set