Skip to content

Instantly share code, notes, and snippets.

@FerdinaKusumah
Created December 16, 2019 02:00
Show Gist options
  • Save FerdinaKusumah/63165d0ef7d82d384fe4272c64978a5a to your computer and use it in GitHub Desktop.
Save FerdinaKusumah/63165d0ef7d82d384fe4272c64978a5a to your computer and use it in GitHub Desktop.
Non deterministic function
def nondeterministic_function(a, b):
if a % b == 0:
return "Even number"
return "Odd number"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment