Challenge: Filtering Users by Two Criteria
Aufgabe
Swipe to start coding
Filter the users who are over 18 years old and have an "Active" status, then print them to the screen.
- Create a
BiPredicate
to check ifage
is greater than 18 andstatus
is "Active". - Inside
forEach()
, use theif
statement to evaluate the user based on theBiPredicate
. - If the user satisfies the condition, print the user to the console.
Lösung
solution.java
War alles klar?
Danke für Ihr Feedback!
Abschnitt 1. Kapitel 14
single
Fragen Sie AI
Fragen Sie AI
Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen
Awesome!
Completion rate improved to 2.33Awesome!
Completion rate improved to 2.33
Challenge: Filtering Users by Two Criteria
Aufgabe
Swipe to start coding
Filter the users who are over 18 years old and have an "Active" status, then print them to the screen.
- Create a
BiPredicate
to check ifage
is greater than 18 andstatus
is "Active". - Inside
forEach()
, use theif
statement to evaluate the user based on theBiPredicate
. - If the user satisfies the condition, print the user to the console.
Lösung
solution.java
War alles klar?
Danke für Ihr Feedback!
Abschnitt 1. Kapitel 14
single
Awesome!
Completion rate improved to 2.33
Challenge: Filtering Users by Two Criteria
Swipe um das Menü anzuzeigen
Aufgabe
Swipe to start coding
Filter the users who are over 18 years old and have an "Active" status, then print them to the screen.
- Create a
BiPredicate
to check ifage
is greater than 18 andstatus
is "Active". - Inside
forEach()
, use theif
statement to evaluate the user based on theBiPredicate
. - If the user satisfies the condition, print the user to the console.
Lösung
solution.java
War alles klar?
Danke für Ihr Feedback!