โ Back to Arrays
Question 396
Find the Missing Number
Find the Missing Number
The array{1, 2, 4, 5, 6}should contain the numbers1through6, but exactly one is missing. Find and print the missing number: 3 The full sum of1through6is21. Subtract the actual array sum from that to find the gap. Use the formulan * (n + 1) / 2withn = 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.