A deeply unsatisfying word search.
Go to file
2024-02-05 20:04:51 -08:00
go.mod fix bugs, add go.mod 2024-02-05 18:30:08 -08:00
LICENSE Initial commit 2024-02-06 01:39:58 +00:00
README.md Document flags (correctly). 2024-02-05 20:04:51 -08:00
uckf.go additional flags: -s to summarize, -r=false to suppress final result 2024-02-05 19:48:45 -08:00

uckf

A deeply unsatisfying word search.

Usage

  1. install the Go compiler if you don't have it yet
  2. clone this repo (git clone https://git.chromaticdragon.app/kistaro/uckf.git)
  3. go run uckf.go
  4. you can use -n to specify a different grid size; for example, go run uckf.go -n 100 will create a 100x100 unsatisfying word search

Flags

  • -n <int> -- use a grid with edges of length n
  • -s -- summary mode; do not print intermediate grids, only summaries
  • -r=false -- suppress final result (only print a summary for that)

Notes

This algorithm converges much more quickly than I expected.