Skip to content

Instantly share code, notes, and snippets.

@dtran320
Last active December 20, 2016 20:42
Show Gist options
  • Select an option

  • Save dtran320/9de27601911dbab9fe20 to your computer and use it in GitHub Desktop.

Select an option

Save dtran320/9de27601911dbab9fe20 to your computer and use it in GitHub Desktop.

Revisions

  1. dtran320 revised this gist Dec 20, 2016. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions startup.py
    Original 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()
    apply_breadth_first_search() # Apply with heuristics
    apply_depth_first_search()
  2. dtran320 revised this gist Jun 1, 2015. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion startup.py
    Original 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 team and cash > 0:
    while not fits(product, market):
    do_breadth_first_search() # Apply with heuristics
    do_depth_first_search()
  3. dtran320 created this gist Jun 1, 2015.
    5 changes: 5 additions & 0 deletions startup.py
    Original 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()