https://github.com/chlohal/crossword-ui
A rough crossword puzzle UI in Snap
https://github.com/chlohal/crossword-ui
class-project crossword-puzzle scratch snap
Last synced: 2 months ago
JSON representation
A rough crossword puzzle UI in Snap
- Host: GitHub
- URL: https://github.com/chlohal/crossword-ui
- Owner: chlohal
- Created: 2022-10-18T15:22:34.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-18T21:04:22.000Z (over 3 years ago)
- Last Synced: 2025-03-22T19:15:43.416Z (over 1 year ago)
- Topics: class-project, crossword-puzzle, scratch, snap
- Language: JavaScript
- Homepage: https://snap.berkeley.edu/snap/snap.html#present:Username=chlohal&ProjectName=U2L3-WordPuzzleSolver
- Size: 112 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# crossword-ui
A rough crossword puzzle UI in Snap.
This is a class project for my Ethical Computing class.
The assignment was to make a crossword-solving app for a class-provided puzzle. I wanted to improve it, so I made mine work for *any* puzzle-- with some preprocessing.
Snap is... limited, so parsing and *using* JSON directly was infeasible. I coded a quick-and-dirty Node.JS wrapper to convert crossword JSON into the ad-hoc format that my crossword app uses.
An explanation of the JSON format used can be found [here](https://www.xwordinfo.com/JSON/).
NYT crosswords were taken from [doshea/nyt_crosswords](https://github.com/doshea/nyt_crosswords).
The project itself can be found [here](https://snap.berkeley.edu/snap/snap.html#present:Username=chlohal&ProjectName=U2L3-WordPuzzleSolver).