- Collections
- Streams
- Lists
- Maps
- Comparator
- Entry
As mentioned it is used to sort, also it's for educational purposes with clarified examples There are some tasks for now but a lot are coming soon Example of how the output descriptive for educational purposes
Main list = [5, 75, 2, 3, 14, 6, 7, 23]
**************using streams**************
New list = [2, 3, 5, 6, 7, 14, 23, 75]
Main list as it's = [5, 75, 2, 3, 14, 6, 7, 23]
**************using collection**************
Main list changed now it's = [2, 3, 5, 6, 7, 14, 23, 75]
List is mutable so we should keep in mind that the list could be changed after initializing.
- Make sure to have some kind of IDE that runs Java (IntelliJ, Eclipse)
- Makes sure to have Java version 8+
- Setup new Java project
- Clone the files into your project
if you found a bug or searching for improvement feel free to submit it in the issues tab