-
-
Save jezinka/e0ae4235c3e74f7660940f756ab53069 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| while (board.emptyCells.size() > 0 || results.any { it }) { | |
| List bees = [] | |
| (0..10).each { | |
| Cell cell = board.getCell() | |
| bees << task { board.resolve(cell) } | |
| } | |
| results = waitAll(bees) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment