Skip to content

Commit

Permalink
Merge pull request nirmalnishant645#14 from nirmalnishant645/problem1
Browse files Browse the repository at this point in the history
Missing Number in the array
  • Loading branch information
anantkaushik authored Jan 26, 2020
2 parents c859769 + 599ae3d commit 4d19137
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions 268-Missing-Number.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
'''
Given an array containing n distinct numbers taken from 0, 1, 2, ..., n, find the one that is missing from the array.
Example 1:
Input: [3,0,1]
Output: 2
Example 2:
Input: [9,6,4,2,3,5,7,0,1]
Output: 8
Note:
Your algorithm should run in linear runtime complexity. Could you implement it using only constant extra space complexity?
'''
class Solution:
def missingNumber(self, nums: List[int]) -> int:
res = 0
for i in range(len(nums) + 1):
res ^= i
if i < len(nums):
res ^= nums[i]
return res

0 comments on commit 4d19137

Please sign in to comment.