This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# | |
# See http://stackoverflow.com/questions/1016997/generate-from-generators | |
# | |
# Equivalent implementation in Python of this Haskell code: | |
# | |
# grandKids generation kidsFunc val = | |
# iterate (concatMap kidsFunc) [val] !! generation | |
from itertools import chain, islice, imap |
NewerOlder