Python Challenges: Find missing numbers from a list
Python Challenges - 1: Exercise-8 with Solution
Write a Python program to find missing numbers from a list.
Explanation:
Sample Solution:
Python Code:
def missing_numbers(num_list):
original_list = [x for x in range(num_list[0], num_list[-1] + 1)]
num_list = set(num_list)
return (list(num_list ^ set(original_list)))
print(missing_numbers([1,2,3,4,6,7,10]))
print(missing_numbers([10,11,12,14,17]))
Sample Output:
[5, 8, 9] [13, 15, 16]
Flowchart:
Python Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Python program to find a missing number from a list.
Next: Write a Python program to find three numbers from an array such that the sum of three numbers equal to zero.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/challenges/1/python-challenges-1-exercise-8.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics