-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdict-utils.lisp
60 lines (48 loc) · 2.05 KB
/
dict-utils.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
;; utils initially copied from word puzzle, need cleanup
;(defparameter *dict-location* "/usr/share/dict/words")
;(defparameter *dict-location* "/tmp/mywords")
(defparameter *dict-location* "/usr/share/dict/british-english-small")
(defparameter *words* `())
(defun load-dict-british-small ()
(defparameter *dict-location* "/usr/share/dict/british-english-small")
(load-dict `string-does-not-end-with-apostrophe-s))
(defun string-does-not-end-with-apostrophe-s (x)
(not (and
(> (length x) 2)
(string= x "'s"
:start1 (- (length x) 2)))))
(defun load-dict (&optional (filter (lambda (x) t)))
"Loads the dictionary defined by *dict-location* into *words*. Lines can be filtered by providing a filter-function."
(let ((in (open *dict-location* :if-does-not-exist nil)))
(when in
(loop for line = (read-line in nil)
while line
when (funcall filter line)
collect line into lines
finally (setf *words* lines))
(close in))))
(defun string-starts-with (input prefix-candidate)
(or
(string-equal prefix-candidate input)
(>= (string/= prefix-candidate input) (length prefix-candidate))))
;; (define-test strings-starts-with
;; (assert-true (string-starts-with "abc" "a"))
;; (assert-true (string-starts-with "a" "a"))
;; (assert-true (string-starts-with "abc" ""))
;; (assert-true (string-starts-with "" ""))
;; (assert-true (string-starts-with "abc" "abc"))
;; (assert-false (string-starts-with "bc" "a"))
;; (assert-false (string-starts-with "" "a"))
;; (assert-false (string-starts-with "bc" "a")))
(defun words-starting-with (seq)
(remove-if-not (lambda (x) (string-starts-with x seq)) *words*))
(defun get-if (fn list &optional (count 0))
"Returns a list of elements of list satisfying fn, optionally limited by count."
(loop
for val in list
when (funcall fn val)
collect val into result
until (> (length result) count)
finally (return result)))
(defun words-starting-with (string &optional (count (length *words*)))
(get-if (lambda (x) (string-starts-with x string)) *words* count))