Skip to content

Instantly share code, notes, and snippets.

@milesrout
Last active February 26, 2016 02:20
Show Gist options
  • Save milesrout/b1194fff89574bc50c8e to your computer and use it in GitHub Desktop.
Save milesrout/b1194fff89574bc50c8e to your computer and use it in GitHub Desktop.
def attempt(f, is_valid, *args):
return next(y for y in itertools.starmap(f, itertools.repeat(args)) if is_valid(y))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment