Search Interview Questions | More than 3000 questions in repository. There are more than 900 unanswered questions. Click here and help us by providing the answer. Have a video suggestion. Click Correct / Improve and please let us know. |
|
| ||||
Algorithm - Interview Questions and Answers for 'Bosch' - 1 question(s) found - Order By Newest | ||||
| ||||
Ans. int duplicateArray[] = { 1, 2, 2, 3, 4, 5, 6, 8, 9} Set unique = new HashSet(); for (int i = 0; i < duplicateArray.length; i) { if (unique.contains(duplicateArray[i])) { System.out.println(duplicateArray[i]); } else { unique.add(duplicateArray[i]); } } Complexity O(n) = nHashSet contains and add has O(n) = 1 | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  coding  code Asked in 2 Companies | ||||
Related Questions | ||||
What are the steps to be performed while coding Junit with Mocking framework ? | ||||
What is a Sequence File? | ||||
What different level of logging you use while coding ? | ||||
Have you ever encoded the response before sending it back from the service? If Yes , Which encoding was used ? | ||||
What are the different type of encoding you have used ? | ||||
How does encoding affect using Reader / writer classes or Stream classes in Java ? | ||||
What is the difference between html encoding and url encoding ? | ||||
Does spaces get's encoded in html encoding ? | ||||