
Asked in Deloitte
Write code to return non-duplicate values from an array.

AnswerBot
2y
Code to return non-duplicate values from an array.
Create an empty array to store non-duplicate values.
Loop through the original array and check if the value already exists in the new array.
If it doesn...read more
Anonymous
10mo
import java.util.*; public class NonDuplicateValues { public static void main(String[] args) { int[] array = {1, 2, 2, 3, 4, 4, 5, 6, 7, 7, 8}; Set nonDuplicates = findNonDuplicates(array); System.out...read more
Shubham Mahajan
1y
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
public class Main {
public static List<Integer> findNonDuplicates(int[] arr) {
Set<Integer> uniqueValues ...read more
Add answer anonymously...
Top QA Automation Engineer Interview Questions Asked at Deloitte
Q. How do you start writing code from scratch?
Q. What is Scenario Outline?
Q. Write code to reverse a string without using built-in functions.
Interview Questions Asked to QA Automation Engineer at Other Companies
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

