Tag: Java

Merge sort java

Merge Sort with Java

The merge sort is a sorting algorithm that uses a divide-and-conquer strategy to sort an array of elements. It is an efficient sorting algorithm, with an average time complexity of O(n log n). The merge sort algorithm works by recursively dividing...

java jcp

What is the Java Community Process (JCP)?

The Java Community Process (JCP) is a collaborative effort between the Java community and Oracle Corporation to develop and evolve the Java Platform, Standard Edition (Java SE), Java Platform, Enterprise Edition (Jakarta EE), and related...

streams min max

Streams min max Java Challenge

Streams are really important for every Java developer to master. Some functions such as max and min are also important and that’s what we will explore in the following Java code challenge! After trying out to solve the Java code challenge on...