aboutsummaryrefslogtreecommitdiff
path: root/impls/bsearch-gen.el
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2025-10-27 00:29:19 +0000
committerAryadev Chavali <aryadev@aryadevchavali.com>2025-10-27 00:29:19 +0000
commit03ba2096c1ba186d0b6045423d8d3de0f243ef37 (patch)
treeaa2388f6579bb9073ab7d70734871a11a996c1cc /impls/bsearch-gen.el
parente3863557f5762735bc2c911f94a96a84dae2d8f5 (diff)
downloadalgorithms-03ba2096c1ba186d0b6045423d8d3de0f243ef37.tar.gz
algorithms-03ba2096c1ba186d0b6045423d8d3de0f243ef37.tar.bz2
algorithms-03ba2096c1ba186d0b6045423d8d3de0f243ef37.zip
bsearch-gen -> num-gen
Diffstat (limited to 'impls/bsearch-gen.el')
-rw-r--r--impls/bsearch-gen.el9
1 files changed, 0 insertions, 9 deletions
diff --git a/impls/bsearch-gen.el b/impls/bsearch-gen.el
deleted file mode 100644
index 79aac56..0000000
--- a/impls/bsearch-gen.el
+++ /dev/null
@@ -1,9 +0,0 @@
-(defconst *LIST-SIZE* 128)
-(defconst *UPPER-BOUND* 1024)
-(with-current-buffer (find-file "bsearch.txt")
- (mapcar
- #'(lambda (res) (insert (format "%s\n" res)))
- (cl-loop
- for i from 0 to *LIST-SIZE*
- collect
- (random *UPPER-BOUND*))))