From ad6513e62affb029e97fc5184925f194c0c8e261 Mon Sep 17 00:00:00 2001 From: Anthony Lee Date: Tue, 5 Jul 2016 09:24:55 -0500 Subject: [PATCH] Add finding one prime number out of arrays --- algorithms/binary_search.js | 1 + 1 file changed, 1 insertion(+) create mode 100644 algorithms/binary_search.js diff --git a/algorithms/binary_search.js b/algorithms/binary_search.js new file mode 100644 index 0000000..3c43846 --- /dev/null +++ b/algorithms/binary_search.js @@ -0,0 +1 @@ +var primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97];