about summary refs log tree commit diff stats
path: root/octans.raku
Commit message (Collapse)AuthorAgeFilesLines
* Re-structure for CPAN upload, include a dictionary file v0.1.0Andinus2021-01-191-76/+0
| | | | bin/octans calls lib/Octans/CLI.rakumod which has the MAIN subroutine.
* Re-implement octans, move subroutines to respective modulesAndinus2021-01-191-212/+56
| | | | | | | | | | | | | | | Initially it went over the list of words & checked if they exist in the grid. This was very slow. Currently it walks the grid & checks if the current string exist in the dictionary. This is faster for these reasons: • The dictionary is sorted, we perform binary range search on the dictionary to return the list of all words that start with specific string. • Starting positions are limited. If the dictionary wasn't sorted then this probably would've been
* Document the implementationAndinus2021-01-141-1/+71
|
* Initial commitAndinus2021-01-141-0/+162
b2b4739'>2bb448a ^
7be294f ^
a0d9363 ^
a7e66bc ^

16bcb7f ^








03197e4 ^
16bcb7f ^

















38c3872 ^


16bcb7f ^

38c3872 ^
16bcb7f ^
50871fc ^

16842fa ^



50871fc ^















16842fa ^


50871fc ^






3326769 ^



50871fc ^


38c3872 ^


50871fc ^


f0a905d ^
b34b873 ^


a7e66bc ^


b34b873 ^

17ca26f ^
bfa2918 ^
6849d7f ^
b34b873 ^
f755d1d ^

7552361 ^
72441e4 ^


7552361 ^
f755d1d ^










16bcb7f ^

f755d1d ^
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130