Skip to content

Instantly share code, notes, and snippets.

@jezinka
Created October 17, 2018 17:14
Show Gist options
  • Select an option

  • Save jezinka/e0ae4235c3e74f7660940f756ab53069 to your computer and use it in GitHub Desktop.

Select an option

Save jezinka/e0ae4235c3e74f7660940f756ab53069 to your computer and use it in GitHub Desktop.
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