Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Abstract methods #33

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,19 @@ It should feel quite similar to code you would have seen in your first-year CS c
In a small group (around 4 students), choose one of you to make a fork of
https://github.com/CSC207-2023F-UofT/multiset-adt

- [ ] Each other team member should make a fork of that repo (or the repository owner can add the others
- [ X ] Each other team member should make a fork of that repo (or the repository owner can add the others
as collaborators).

- [ ] Take the time to skim the rest of the instructions to get a better sense of what you'll be doing
- [ X ] Take the time to skim the rest of the instructions to get a better sense of what you'll be doing
in this activity. If you have any immediate questions, raise these with your group or ask your TA.

- [ ] As a team, explore the python code base and identify specific pieces of code that will need to
- [ X ] As a team, explore the python code base and identify specific pieces of code that will need to
be completed. (See the general strategies and advice further below, ask other groups, or
ask your TA for advice as needed.)
- The next section highlights a few aspects of the code which your team should think about as you
explore the code.

- [ ] Based on your group discussion, you should each create your own branch and write a piece of code.
- [ X ] Based on your group discussion, you should each create your own branch and write a piece of code.
- Note: If your team identifies any code that needs to be written before others can start their parts,
you might choose to work on that first, push that branch to the remote, make a pull request to merge it
into main, and then everyone on your team will need to make sure their fork and local copies are
Expand Down
5 changes: 5 additions & 0 deletions src/MultiSet.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
public abstract class MultiSet {
public abstract boolean add();

public abstract void remove();
}
2 changes: 2 additions & 0 deletions src/Tree.java
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
import java.util.HashSet;

public class Tree {
}