Skip to content
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
7 changes: 6 additions & 1 deletion recipe.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,9 @@
## Instructions:
1. Preheat the oven to 350°F (175°C).
2. In a large bowl, whisk together the flour, sugar, and cocoa powder.
3. ...
3. ...

## Additional Directions by alice
1. git where is bob
2. ok
3.
2 changes: 1 addition & 1 deletion src/DataTypes.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public class DataTypes {
// TODO TASK 1: fix this code so that it passes the test in DataTypesTest.java
public static long sum(List<Integer> numbers) {

int s = 0;
long s = 0;
// below is a "foreach" loop which iterates through numbers
for (int x : numbers) {
s += x;
Expand Down