โ Back to Arrays
Question 391
Check for Duplicate Values
Check for Duplicate Values
The array{3, 5, 2, 5, 8}is given. Determine whether any value appears more than once, and printtrueif there is a duplicate orfalseotherwise: true Here5appears twice, so the answer istrue. Print the boolean in lowercase exactly asSystem.out.println(boolean)produces it.
Expected Output:
true
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.