Case-Insensitive Search in Java ArrayLists

Examples of searching an element in an ArrayList ignoring its case. Overview Java ArrayList is a dynamically growing ordered collection of elements and is widely used. This tutorial demonstrates various […]

Finding the Difference Between Two Java Sets

This article contains examples of finding the difference between two Java Set implementations. Overview Java Set is a collection of unique elements, and they are used in many use cases. […]

Comparing Two Lists In Java

Learn compare, find commonality, and difference in two Java Lists using Plain Java, Java Streams, and Commons Collections library