Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Ian Thompson

Ian Thompson

Ian Thompson has asked 1 questions and find answers to 10 problems.

Stats

143
EtPoint
24
Vote count
1
questions
10
answers

About

    while days_left_in_life > 0:

    # By Day:

        for problem in list_of_problems:
            solved_problems.append(solve(problem))

    # By Night:

        for idea in head:
            list_of_problems.append(idea.find(problem))
        
        days_left_in_life -= 1