Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
bowbahdoe committed Sep 27, 2024
1 parent 6869e14 commit 1039ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arrays_ii/initialization_with_size.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ boolean[] pixels = new boolean[23040];

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

[^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 7 states, not just 2.
[^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.

0 comments on commit 1039ad8

Please sign in to comment.