about summary refs log tree commit diff stats
path: root/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* Re-implement octans, move subroutines to respective modulesAndinus2021-01-191-0/+1
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
ec55005f6347'>^
571bf69f ^
a03bbc82 ^

571bf69f ^







a03bbc82 ^


a03bbc82 ^
300f4554 ^
a03bbc82 ^
9e5e87ca ^
9e5e87ca ^
9e5e87ca ^
9e5e87ca ^
9e5e87ca ^
9e5e87ca ^
9e5e87ca ^
9e5e87ca ^
9e5e87ca ^
531f14c9 ^

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