CJCoding With Joseph

Find the Missing Number

The array {1, 2, 4, 5, 6} should contain the numbers 1 through 6, but exactly one is missing. Find and print the missing number:

3

The full sum of 1 through 6 is 21. Subtract the actual array sum from that to find the gap. Use the formula n * (n + 1) / 2 with n = 6.

Expected Output:

3
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.