Skip to content

Instantly share code, notes, and snippets.

@vikingosegundo
Created March 25, 2022 13:01
Show Gist options
  • Save vikingosegundo/16c3b16665cba648222685044789744c to your computer and use it in GitHub Desktop.
Save vikingosegundo/16c3b16665cba648222685044789744c to your computer and use it in GitHub Desktop.
func createRandomStackDispenser<T>(with data: [T]) -> () -> T? {
let state = createStack(with:data.shuffled())
return {
state.pop()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment