Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- leetcode
- 데이콘
- 백준
- ChatGPT
- 우분투
- 파이썬
- 더현대서울 맛집
- Baekjoon
- SW Expert Academy
- Real or Not? NLP with Disaster Tweets
- dacon
- 코로나19
- 자연어처리
- 금융문자분석경진대회
- 캐치카페
- ubuntu
- 편스토랑 우승상품
- Docker
- programmers
- 프로그래머스 파이썬
- hackerrank
- PYTHON
- github
- Kaggle
- Git
- gs25
- 프로그래머스
- 맥북
- 편스토랑
- AI 경진대회
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 448. Find All Numbers Disappeared in an Array (Python) 본문
Programming/코딩 1일 1문제
[leetCode] 448. Find All Numbers Disappeared in an Array (Python)
솜씨좋은장씨 2020. 8. 6. 22:08728x90
반응형
Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once.
Find all the elements of [1, n] inclusive that do not appear in this array.
Could you do it without extra space and in O(n) runtime? You may assume the returned list does not count as extra space.
Example:
Input:
[4,3,2,7,8,2,3,1]
Output:
[5,6]
Solution
class Solution:
def findDisappearedNumbers(self, nums: List[int]) -> List[int]:
if len(nums) < 0:
answer = []
else:
max_num = len(nums)
answer = list(set(range(1,max_num + 1)) - set(nums))
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 551. Student Attendance Record I (Python) (0) | 2020.08.08 |
---|---|
[leetCode] 345. Reverse Vowels of a String (Python) (0) | 2020.08.07 |
[leetCode] 35. Search Insert Position (Python) (0) | 2020.08.05 |
[leetCode] 290. Word Pattern (Python) (0) | 2020.08.04 |
[leetCode] 205. Isomorphic Strings (Python) (0) | 2020.08.03 |
Comments