Live data from Hacker News

Show HN: Crossle – Scrabble meets crossword game

playcrossle.com

1–10 of 16 posts

Show HN: Crossle – Scrabble meets crossword game

#1
Hello HN,

I created Crossle after playing a dice version of this once. it's web/mobile only with mechanics similar to wordle. the object is to create a crossword using scrabble words that is fully connected and each word is at least 3 characters long. all letters must be used. Fun weekend coding project that I'd love to get any feedback on.

thanks!

Show HN: Crossle – Scrabble meets crossword game
playcrossle.com

Re: Show HN: Crossle – Scrabble meets crossword game

#2
Cute idea. The constraint that all letters must be used is what makes this interesting over just a free-form crossword builder since it turns it into a proper puzzle. How do you handle validation? Specifically, are you checking connectivity with a union-find or just flood fill from an arbitrary starting tile?

Re: Show HN: Crossle – Scrabble meets crossword game

#3

Cute idea. The constraint that all letters must be used is what makes this interesting over just a free-form crossword builder since it turns it into a proper puzzle. How do you handle validation? Specifically, are you checking connectivity with a union-find or just flood fill from an arbitrary starting tile?

we just check connectivity on the front-end kind of naively by ensuring each square is adjacent to another. is that union-find? I didn't do well in algorithms class..

Re: Show HN: Crossle – Scrabble meets crossword game

#5

Nice and simple. Might just be me but a way to move groups of tiles on the board could be helpful, I accidentally started building too low down and had to move everything at one point.

yeah i agree moving the tiles can be cumbersome. I started thinking through keyboard interactions but haven't figured out how best to implement it yet.

Re: Show HN: Crossle – Scrabble meets crossword game

#7
post #5

Nice and simple. Might just be me but a way to move groups of tiles on the board could be helpful, I accidentally started building too low down and had to move everything at one point.

yeah i agree moving the tiles can be cumbersome. I started thinking through keyboard interactions but haven't figured out how best to implement it yet.

Maybe just scroll the grid?

Re: Show HN: Crossle – Scrabble meets crossword game

#9
post #8

Presumably you choose the letters with a solution in mind, otherwise it might be impossible.

So the lions share of the work was building a solver and then iterating through the solution space to come up with puzzles. All of them are solvable. It’s on my todo list to classify them based on difficulty and potentially add variable difficulty levels by the day.
Post reply on HN