CS 61BL is run in a lab-centric format during the summer because active learning is better than passive learning. This will better prepare you for the large-scale team projects that lie ahead in upper-division EECS courses, and you’ll also be prepared to contribute effectively to your team in industry. Further, you learn more than you would on your own through collaboration.

  • Explaining a concept to someone helps you understand it better.
  • Having a concept explained to you might provide you with different and more productive ways of understanding the concept.
  • Explaining a program to someone else can help you find its bugs.
  • Working with someone else helps you identify your own strengths and weaknesses.

Finally, collaboration not only can be helpful to learning, but fun! You can make new friends who will make good partners in future courses and supporters both on campus and beyond.

What is the best way to collaborate?

The exact work style you use with your partner is up to you. There are several ways that pairs can work together. Here are some possible strategies, along with our opinion about the effectiveness of each.

Experiment with each of these styles on your own to determine what works and which situations are most effective for each style.

Write the code together

Strongly recommended, especially for solving more complex problems with many small details and interactions between different parts of a program.

In this work style, you would sit next to each other at the same computer and collaborate to write the code. One person would type for a while, then the other, and back again. You can decide the interval for switching who controls the computer (the “driver”). Some people recommend switching roughly every 15-20 minutes, to make sure that each person gets to drive. Even if one of you is a faster typer, letting both people drive for equal time is good to avoid having one person dominate the work.

Work together using online tools

Recommended, but only if you can’t meet in person.

In this work style, the two of you would be physically apart but would collaborate by communicating online and sharing code using git.

Do the assignment individually, and then compare solutions

Somewhat recommended, but we suggest one of the others above instead.

In this work style, each of you would complete the assignment on your own, then the two of you would have a meeting and compare solutions. You would then merge the solution into a best combined solution that you would submit together. This work style doesn’t have as many benefits as working on the solution together, but it is still good to see how another student solved the problem and learn from the strengths and weaknesses of each others’ code.

There are some work styles that we do NOT recommend because we do not think they follow the spirit of working in pairs, and do not allow both students to effectively learn the material. For example:

Splitting up the parts of the assignment
In this work style, each of you would complete parts of the assignment individually, then submit them together. For example, if the assignment has a “Part A” and a “Part B”, one of you would do Part A and the other would do Part B. We do not recommend doing this because each of you will only learn part of the material for that assignment. This will leave you less prepared on exams and future assignments.
Taking turns on assignments
In this work style, in a pair of students named A and B, student A would do Homework X, then B would do Homework X+1, A would do Homework X+2, and so on. You should not do this, since each partner is expected to make a significant contribution toward solving the assignment. You should not claim to be part of a pair submission if you did not contribute significantly to help solve that problem. Moreover, your TAs may ask you to explain aspects of the submission during lab check-offs. By doing this each of you will only learn half of the course material in detail. The assignments are by far the best vehicle for you to learn how to program effectively and truly come to understand the course material. Only completing half of them will leave you much less prepared to do well on exams and future assignments.
One person does all of the work
You should not do this, since each partner is expected to make a significant contribution toward solving each assignment. You should not claim to be part of a pair submission if you did not contribute significantly to help solve that problem. By doing this the other person will not learn the material well and will be grossly underprepared to do well on exams and future assignments. The assignments are by far the best vehicle for you to learn how to program effectively and truly come to understand the course material.

Logistics

Are there any constraints about whom I can work with?

Your partner must be another student in your lab section and who is taking the course for the same grading basis (e.g. letter grade, P/NP). If your desired partner is in a differ section, then one of you should request to switch into their partner’s section so that you may attend together.

How can I find a partner?

The first week your lab TA will have you work with different people in your lab section so that you can get to know a few people. Starting with week two, you will choose a partner to work with. You may also ask the lab staff if you need help finding someone else in your section to partner with.

How do we submit/get grades as a pair?

BOTH of you need to make individual submissions to the assignment on Gradescope. It is perfectly acceptable for you both to submit the same code from the same repository, but you still both need to make a submission so that you both get credit.

For how long am I committed to working with my partner?

See the calendar on the home page for the date ranges in which you are locked in to your partner. Essentially, for the duration of each project, you must work with the partner you choose. When the next project comes around, you may choose to work with new partners, or you can continue working with your previous partner.

Can I dissolve my partnership?

Barring extreme circumstances, no you cannot. Each project lasts only a couple weeks, so time is of the essence. Hopefully, even if there is some dissatisfaction with your partner, the two of you can still complete the work and learn, and when the next project comes along, you may find a new partner at that time. If you are having trouble working with your partner, please talk to your TA as soon as possible; we want to make things right in the best way possible.

May I work alone?

Nope, that is not in the spirit of the course as described above. Learning to work with a partner is a part of our course’s objectives.

May we work in a group of three?

No. We will try to rebalance sections in the first few days to ensure there are an even number of students in every section.

My partner was a bad partner…

They didn’t do any work, or didn’t do their share of the work, or didn’t communicate or meet with me, etc. What can I do?

Have you tried speaking to your partner to let them know that you expect them to do more? Remind your partner of the expectations of each member of a pair. Many group issues can be resolved by better communication and setting expectations.

If talking to your partner does not resolve the situation, speak to your TA and explain the details of what has happened. We will help you resolve the issue.

NOTE: If you agree verbally or in writing (email, Piazza, text message, etc.) to work with a given partner on a given assignment, you are expected to work through that assignment with that partner to completion. You shouldn’t abandon your partner in the middle of an assignment. Please be considerate for your partner and don’t leave them hanging without an easy way to find a new partner for upcoming assignments. If you are planning to end your partnership at the end of the current round, please tell your partner this as soon as possible when the assignment is given out, so that they can make other arrangements.

Not because they didn’t do enough work; they did too much! They hogged the keyboard, or they did the whole assignment without waiting for me, or they didn’t communicate with me, etc. I feel that I didn’t get a real chance to help in writing the code and solving the assignment. What can I do?

The answer is similar to the previous question. Have you tried speaking to your partner to let them know that you expect them to let you contribute? Remind your partner of the expectations of each member of a pair. Many group issues can be resolved by better communication and setting expectations.

If talking to your partner does not resolve the situation, speak to your TA and explain the details of what has happened. We will help you resolve the issue.

Acknowledgements

Much of this material is adapted from CS 106A at Stanford.