Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Created March 1, 2020 18:43
Show Gist options
  • Save deque-blog/3c5987542c263fc6e66a91e9adf7ce15 to your computer and use it in GitHub Desktop.
Save deque-blog/3c5987542c263fc6e66a91e9adf7ce15 to your computer and use it in GitHub Desktop.
def poor_pigs(buckets: int, iterations: int):
pigs = math.log(buckets, iterations + 1)
return math.ceil(pigs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment