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
import itertools | |
#config | |
thepool = [10,20,30,40,60,100] | |
HOWMANY = 5 | |
# get all possible (mynum) piece combinations from a set of (stuff). Can repeat pieces | |
def get_combos(stuff, mynum): | |
returned_list = [] | |
for subset in itertools.combinations_with_replacement(stuff, mynum): |
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
call("9175255976", { "onAnswer": lambda event : say("Hello Marte") | |
}) |
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
.row{ height:10px; margin:5px;} | |
.innerSquare{ | |
float:left; | |
height:5px; | |
width:5px; | |
margin:5px; | |
} |
NewerOlder