In Class: Week 8, list algorithms
Create a week08 subdirectory
in your cs21/class directory and copy over my starting point files:
$ cd
$ cd cs21/class
$ pwd
/home/your_user_name/cs21/class
$ mkdir week08
$ cd week08
$ pwd
/home/your_user_name/cs21/class/week08
$ cp ~newhall/public/cs21/week08/* .
After taking a look at what list_algs.py does, we are going to add some
code to list_algs.py.
- First, we are going to add a function to find an element in a
list of integer values.
- Next, we are going to think about a better way to implement this
function.