-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Jason Cozens edited this page Feb 27, 2015
·
7 revisions
Scheduling is an important problems and occurs in many areas.
The task can be seen as a scheduler. Let's look at matching brackets.
Computation is algebraic not numeric. To reflect this we will use the symbols H, I and T for three symbol computation.
['H', 'I', 'T']All code blocks will have the form:
while s == S.I:
passOne of the reasons for this project is to study software development. The initial aim is to start with test driven development. The first task is to generate test data.
- Create an unsorted list of random times between a minimum time and a maximum time.
- Allow the number of elements in the list to be specified.