Skip to content

Instantly share code, notes, and snippets.

@rafaelqueiroz88
Created January 24, 2024 17:14
Show Gist options
  • Save rafaelqueiroz88/ad2d8ba466cee02e404e57f7091a0f3a to your computer and use it in GitHub Desktop.
Save rafaelqueiroz88/ad2d8ba466cee02e404e57f7091a0f3a to your computer and use it in GitHub Desktop.
Get some element at random from array
bool getRandomElement(List<bool> list) => list[Random().nextInt(list.length)];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment