Skip to content

Commit

Permalink
integrate last warmup
Browse files Browse the repository at this point in the history
  • Loading branch information
Carl Pearson committed Jul 8, 2015
1 parent 02525f7 commit 2df108c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions _warmups/w1/d3/13.md → _warmups/w1/d3/lists.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
layout: section
title: Warmup
title: Some Lists
---

For our last warmum we would like you to implement, in order as you finish them, the following three data structures in Python:
Expand All @@ -9,6 +8,6 @@ For our last warmum we would like you to implement, in order as you finish them,
- Queue (Find specs [here](http://interactivepython.org/runestone/static/pythonds/BasicDS/TheQueueAbstractDataType.html))
- Deque (Find specs [here](http://interactivepython.org/runestone/static/pythonds/BasicDS/TheDequeAbstractDataType.html))

By implement, we mean you should create classes in python for each of the above data types, with all of the methods described in their specs pages. So, for example, the Stack class should have a method called "push," which takes in an object and appends it to the stack, and a method called "pop" which returns the most recently pushed object and removes it from the stack.
By implement, we mean you should create classes in python for each of the above data types, with all of the methods described in their specs pages. So, for example, the Stack class should have a method called "push," which takes in an object and appends it to the stack, and a method called "pop" which returns the most recently pushed object and removes it from the stack.

Find more about stacks [here](http://interactivepython.org/runestone/static/pythonds/BasicDS/WhatisaStack.html), queues [here](http://interactivepython.org/runestone/static/pythonds/BasicDS/WhatIsaQueue.html), and deques [here](http://interactivepython.org/runestone/static/pythonds/BasicDS/WhatIsaDeque.html).
Find more about stacks [here](http://interactivepython.org/runestone/static/pythonds/BasicDS/WhatisaStack.html), queues [here](http://interactivepython.org/runestone/static/pythonds/BasicDS/WhatIsaQueue.html), and deques [here](http://interactivepython.org/runestone/static/pythonds/BasicDS/WhatIsaDeque.html).
2 changes: 1 addition & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ world.
| Mon | [SQL](warmup/sql/) | {% include sess_link.md which=4 %} | {% include prac_link.md which=4 %} | {% include proj_link.md which=4 %} |
| Tue | [Agents in NYC](warmup/abm/) | {% include sess_link.md which=5 %} | {% include prac_link.md which=5 %} | {% include proj_link.md which=5 %} |
| Wed | O(n) analysis | {% include sess_link.md which=6 %} | {% include prac_link.md which=6 %} | {% include proj_link.md which=6 %} |
| Thu | | {% include sess_link.md which=7 %} | {% include prac_link.md which=7 %} | {% include proj_link.md which=7 %} |
| Thu | [Some Lists](warmup/lists/) | {% include sess_link.md which=7 %} | {% include prac_link.md which=7 %} | {% include proj_link.md which=7 %} |
| Fri | Demo Prep | Demo Prep | Demonstrations | Demonstrations |
{:.schedule}

Expand Down

0 comments on commit 2df108c

Please sign in to comment.