Course description This course serves as an introduction to computer programming and computer science. We will introduce the Python programming language. We will use Python to solve a variety of problems, and practice problem-solving techniques that are applicable to computational problems. We will discuss good practices in software engineering (designing and building large software systems). We will analyze the efficiency of algorithms, and discuss designing efficient algorithms. Various research areas in computer science (AI, software engineering research, the theory of computation, etc.) will be introduced throughout the term. No previous knowledge of programming or computer science is assumed.
The course syllabus is available here (to be posted).
Project 1. Due Oct. 12 at 10:59p.m. (late submission allowed until Sunday Oct 16 23:59p.m.). credit.py (6%). Test cases
Project 2. Due Nov. 15 at 10:59p.m. gomoku.py (7%).
Project 3. test.txt Due Dec. 5 at 10:59 p.m. (7%). synonyms.py
Lab 1: Tracing and Conditionals (assigned Sept. 12, show the TA during the lab).
Lab 2: Functions and Local and Global Variables: Simulating a Pocket Calculator (assigned Sept. 19, show the TA during the lab). Video solutions to the warm-up exercise. Solutions
Lab 3: Loops. (assigned Sept. 26). Solutions.
Lab 4: Loops and Lists (assigned Oct. 3). Solutions.
Lab 5: Lists of lists and Tic-Tac-Toe (assigned Oct. 17). ttt.py. Solutions.
Lab 6: Getting started with Gomoku, files, and strings (assigned Oct. 31) Solutions
Lab 7: Gaussian Elimination (assigned Nov. 14) numpy_intro.py. Sample run. Solutions
Lab 8: Debugging, dictionaries, computational linguistics, and web scraping (assigned Nov. 21) gomoku.py, tester.py. Solutions: lab08.py
Lab 9: To get the answer you must know the answer (assigned Nov. 28) nim.py, minimax_ttt.py. Solutions: lab09.py, play_nim.py, ttt_soln.py
The midterm was held on Oct 27.
2015 midterm paper. Reference sheet. Solutions: Part 1, Part 2 (contains optional advanced material).
2014 midterm and aid sheet. (Solutions). Note: in Q2d, True and False should switch places. Another solution is to go return not (a==b==c).
2010 midterm. (Solutions; note that there is a small bug in the solutions to the last question and that the midterm was written in Python 2, which means that it uses print <things-to-print> instead of print(<things-to-print>).)
The exam will be held in December. Past exams are below.
2016 exam paper (reference sheet). Solutions + marking scheme.
2015 exam paper (reference sheet). Partial solution of the challenging problems. I encourage people to work on the problems in the beginning of the exam by themsleves. (Note that Q8 and Q9 were supposed to be very challenging -- exam grades were adjusted.)
2014 exam paper (reference sheet). Solutions and my favourite solution of Q7. Video solution of Q7.
Design credit: CS229, Jan 2019.