I have a puzzle idea I call "Minimum Difference". The puzzle looks like a network of connected cells, much like the Sum Thing puzzles already on the site. The goal is to fill all the cells with integers 1 to n, such that the difference between any two connected cells meets or exceeds a specified minimum. A few of the cells in a puzzle will already be filled in.
Sample Puzzle
Code:
Numbers 1-7
Minimum Difference = 3
+-+ +-+
| |---| |
+-+ +-+
/ \ /
+-+ +-+ +-+
|5| | |---| |
+-+ +-+ +-+
\ / /
+-+ +-+
| |---| |
+-+ +-+
I have this and three other puzzles in my sandbox, made using Sum Thing.