Java program to check if string is a palindrome : check palindrome string in java
Java program to check if a number is Armstrong : Find Armstrong Number In Java
Java Program to check whether number is Palindrome or not | Java Find Palindrome Number
Java program to check prime number : find prime number in Java
Linux Create And Remove Directory
Back end developer roadmap : how to became back end developer ? back end development kya hai?
PHP Form validation | Validate User Input Data In PHP In Hindi
If tutorials available on this website are helpful for you, please whitelist this website in your ad blocker😭 or Donate to help us ❤️ pay for the web hosting to keep the website running.
ArrayList का use करके duplicate elements को remove करने के लिए सबसे पहले सभी elements को एक new ArrayList में insert करेंगे , फिर उस list को iterate करके new list में insert करते रहेंगे। new list में insert करने से पहले contains()
method की help से हम check करेंगे कि element exist है या नहीं।
public class RemoveDuplicates {
public static void main(String[] args) {
// Array with duplicate elements
int[] arr = {1, 2, 3, 4, 2, 7, 8, 8, 3, 1};
// Create a list from the array
ArrayList<Integer> al = new ArrayList<>();
for (int i : arr)
al.add(i);
// Remove duplicates
ArrayList<Integer> newList = new ArrayList<>();
for (Integer element : al) {
if (!newList.contains(element)) {
newList.add(element);
}
}
// Finally iterate the list to print element.
for (Integer element : newList) {
System.out.print(element + " ");
}
}
}
Loading ...
Hi ! My name is Rahul Kumar Rajput. I'm a back end web developer and founder of learnhindituts.com. I live in Uttar Pradesh (UP), India and I love to talk about programming as well as writing technical tutorials and tips that can help to others.
Get connected with me. :) LinkedIn Twitter Instagram Facebook