Assignments
Please make sure all submissions are anonymous.
We will use Gradescope for assignment submission and grading. Follow these instructions to sign up for Gradescope. Please do not go to Gradescope directly; you really do need to read these instructions!
All work will be due by 11:59pm US/Eastern of the indicated day.
Title |
| Pair? |
| Published |
| Due |
| no |
| Wed, Sep 9 |
| Fri, Sep 11 | |
| no |
| Sat, Sep 12 |
| Tue, Sep 15 | |
| no |
| Wed, Sep 16 |
| Mon, Sep 21 | |
| no |
| Tue, Sep 22 |
| Wed, Sep 23 | |
| no |
| Fri, Sep 25 |
| Tue, Sep 29 | |
| no |
| Wed, Sep 30 |
| Thu, Oct 1 | |
| yes |
| Fri, Oct 2 |
| Wed, Oct 7 | |
| no |
| Thu, Oct 8 |
| Thu, Oct 15 | |
| no |
| Sun, Oct 18 |
| Wed, Oct 21 | |
| yes |
| Thu, Oct 22 |
| Tue, Oct 27 | |
| no |
| Wed, Oct 28 |
| Thu, Nov 5 | |
| no |
| Sun, Nov 8 |
| Sat, Nov 14 | |
| yes |
| Sun, Nov 15 |
| Thu, Nov 19 | |
| no |
| Sun, Nov 22 |
| Thu, Dec 3 | |
| no |
| Fri, Dec 4 |
| Sun, Dec 6 |
For assignments marked “pair”, you must work with at least one partner. You cannot repeat a partner across non-simultaneous “pair” assignments.
The course homeworks will be programmed in Pyret,Please program according to the Pyret Style Guide. unless indicated otherwise. Pyret is a reasonably large language with many libraries, some of which reproduce functionality (like basic data structures) that we are asking you to create in this course. This can lead to some confusion about what you are and aren’t allowed to use from the language. Each assignment provides information about this when necessary, but in general, the following rules apply:
You can always use the computational core of the language: basic constants, functions, higher-order functions, and composition.
You can always construct your own new data definitions, unless explicitly stated otherwise.
You are allowed to use builtin functions for the following datatypes unless explicitly stated otherwise:
Numbers (functions such as num-abs, num-max)
Strings (functions such as string-to-number, string-length)
Booleans (functions such as not)
You are allowed to use the following libraries unless explicitly stated otherwise:
lists
sets
pick
tables
option
either
You should not use any other built-in functions or libraries unless an assignment explicitly permits you to. When in doubt, ask.
You may not use variables (var) or mutate objects (!) unless explicitly permitted to by an assignment.