Skip to content

Commit 5e784fc

Browse files
authored
Merge branch 'develop' into develop
2 parents 28725cd + 2afb760 commit 5e784fc

12 files changed

+19
-12
lines changed

src/SUMMARY.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -471,6 +471,7 @@
471471
- [Challenges](./files/challenges.md)
472472

473473

474+
474475
<!--
475476
# Data Structures & Algorithms II
476477
@@ -650,9 +651,12 @@ Make them do one. -->
650651
651652
652653
654+
# Concepts
655+
653656
654657
# Concepts
655658
659+
656660
- [The Idiot Game](./the_idiot_game.md)
657661
658662
# Data Types V
@@ -695,8 +699,6 @@ Make them do one. -->
695699
- [Sets]()
696700
- [HashSet]()
697701
698-
699-
700702
<!--
701703
702704

src/arrays_ii/initialization_with_size.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ boolean[] pixels = new boolean[23040];
1313

1414
So you have to say `new` followed by the type of element in the array, `[`, the size of the array and `]`.
1515

16-
[^bw]: The original GameBoy wasn't actually just black and white. It supported 7 shades of gray, so a `boolean` wouldn't technically to be enough to represent a pixel's state. You'd have to use something with at least 8 states, not just 2.
16+
17+
[^bw]: The original GameBoy wasn't actually just black and white. It supported 7 shades of gray, so a `boolean` wouldn't technically to be enough to represent a pixel's state. You'd have to use something with at least 8 states, not just 2.

src/boolean/operator_precedence.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ For booleans `!` always happens first. This is followed by `&&` and then by `||`
99

1010
```java,no_run
1111
boolean a = true;
12-
boolean b = false
12+
boolean b = false;
1313
boolean c = false;
1414
1515
// just as 2 + 5 * 3 "evaluates" 5 * 3 before adding 2

src/branching_logic/challenges.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ void main() {
4141

4242
## Challenge 4
4343

44-
Write code that will assign the string `The number is {x} even` to `message` if `x` is an even number
45-
and `The number is {x} odd` if `x` is an odd number.
44+
Write code that will assign the string `The number {x} is even` to `message` if `x` is an even number
45+
and `The number {x} is odd` if `x` is an odd number.
4646

4747
So if `x` is 12 the string you should assign `The number 12 is even` to `message`.
4848

src/encapsulation.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ is encapsulation.
55

66
To encapsulate something is to hide it from the larger world. By doing
77
so you lower the number of people who are able to observe what we would call
8-
"implementation details."
8+
"implementation details."
9+

src/generics.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ Generics help us make these generically useful containers.
1111
class Box<T> {
1212
T value;
1313
}
14-
```
14+
```
15+

src/getting_started.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ You can either download the `.tar.gz` file that matches your machine, extract it
3737
and add the `bin` folder to your `PATH`, or you can try to find an installer for your
3838
specific linux distribution.
3939

40+
4041
## repl.it
4142

4243
[replit.com](https://replit.com) is a pretty common choice for teachers because

src/interfaces.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ of commonalities.
1111
inteface Dog {
1212
void bark();
1313
}
14-
```
14+
```

src/multi_dimensional_arrays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ class Main {
1717
}
1818
}
1919
}
20-
```
20+
```

src/objects/override_equals_and_hashCode.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Override equals and hashCode
22

3+
34
If you want to customize the `equals` method of an object the
45
general pattern for doing so is the following.
56

0 commit comments

Comments
 (0)