Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 313 Bytes

README.md

File metadata and controls

13 lines (7 loc) · 313 Bytes

40.Single Number

Description

Given an array of integers, every element appears twice except for one. Find that single one.

Note

Your algorithm should have a linear runtime complexity. Could you implement it without using extra memory?

From

LeetCode