removed unnecesary curly braces
This commit is contained in:
parent
9515c5b18f
commit
fc5804a157
|
@ -71,10 +71,8 @@ public class Day02 {
|
||||||
public static String getFirstPuzzleResult(String input) {
|
public static String getFirstPuzzleResult(String input) {
|
||||||
List<Game> games = parse(input);
|
List<Game> games = parse(input);
|
||||||
int result = games.stream()
|
int result = games.stream()
|
||||||
.filter(game -> {
|
.filter(game -> game.bunches.stream().allMatch(bunch -> bunch.red <= MAX_RED_CONTENTS
|
||||||
return game.bunches.stream().allMatch(bunch -> bunch.red <= MAX_RED_CONTENTS
|
&& bunch.green <= MAX_GREEN_CONTENTS && bunch.blue <= MAX_BLUE_CONTENTS))
|
||||||
&& bunch.green <= MAX_GREEN_CONTENTS && bunch.blue <= MAX_BLUE_CONTENTS);
|
|
||||||
})
|
|
||||||
.map(game -> game.id)
|
.map(game -> game.id)
|
||||||
.reduce(0, (a, b) -> a + b);
|
.reduce(0, (a, b) -> a + b);
|
||||||
return Integer.toString(result);
|
return Integer.toString(result);
|
||||||
|
|
Loading…
Reference in New Issue