Moved implementations to folder

This commit is contained in:
2024-04-29 15:43:17 +05:30
parent d30043274d
commit 4359caa3ca
6 changed files with 5 additions and 5 deletions

9
impls/bsearch-gen.el Normal file
View File

@@ -0,0 +1,9 @@
(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*))))