CJCoding With Joseph

Check for Duplicate Values

The array {3, 5, 2, 5, 8} is given. Determine whether any value appears more than once, and print true if there is a duplicate or false otherwise:

true

Here 5 appears twice, so the answer is true. Print the boolean in lowercase exactly as System.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.