Skip to content

Instantly share code, notes, and snippets.

@stephenLee
Created June 27, 2012 01:22
Show Gist options
  • Save stephenLee/3000659 to your computer and use it in GitHub Desktop.
Save stephenLee/3000659 to your computer and use it in GitHub Desktop.
Udacity CS 215, algorithm design
def algorithm_development(problem_spec):
correct = False
while not correct or not fast_enough(running.time):
algorithm = devise_algorithm(problem_spec)
correct = analyze_correct(algorithm)
running.time = analyze_efficiency(algorithm)
return algorithm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment