Completed
Writing a first, plain Java SE 17 solution
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Leveraging Java 17 Features to Create a Wordle Checker
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 Wordle rules
- 3 Introducing the Wordle Checker Kata
- 4 Describing the Eclipse Collections solution
- 5 Writing a first, plain Java SE 17 solution
- 6 Using Records to improve the solution
- 7 Using Streams to remove for loops
- 8 Using Switch Expression and Pattern Matching on Sealed Types to remove `if` statements
- 9 Discussing the design or your Records
- 10 Hiding the stream in a record to clean the code
- 11 Final words and outro