Last active
December 20, 2016 20:42
-
-
Save dtran320/9de27601911dbab9fe20 to your computer and use it in GitHub Desktop.
Revisions
-
dtran320 revised this gist
Dec 20, 2016 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ def build_startup(team, product, market, cash): while team and cash > 0: while not fits(product, market): apply_breadth_first_search() # Apply with heuristics apply_depth_first_search() -
dtran320 revised this gist
Jun 1, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ def build_startup(team, product, market, cash): while team and cash > 0: while not fits(product, market): do_breadth_first_search() # Apply with heuristics do_depth_first_search() -
dtran320 created this gist
Jun 1, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ def build_startup(team, product, market, cash): while team and cash > 0: while not fits(product, market): do_breadth_first_search() # Apply with heuristics do_depth_first_search()