How to create our own custom ArrayList?
Introduction
We know ArrayList stores list of objects along with duplicates. In this article we are going to create our own custom ArrayList to stop allowing duplicates.
Steps
Custom class should extends ArrayList class
It should override add(T t) ...
shivaprasadgurram.hashnode.dev1 min read