Given an unsorted list of n-3 distinct integers from 1..n, find the three missing numbers in ascending order.
Constraints
Example
>>> find_missing_numbers([2, 4, 1, 5]) [3, 6, 7] >>> find_missing_numbers([1, 2, 3, 4]) [5, 6, 7] >>> find_missing_numbers([5, 4, 3, 2, 1, 8, 10, 9]) [6, 7, 11]
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints