Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 파이썬 프로그래머스
- python 알고리즘
- 상가수익률계산기
- 릿코드
- python 릿코드
- 파이썬 알고리즘 풀기
- LeetCode
- 잇츠디모
- binary search
- 파이썬알고리즘풀기
- 릿코드 풀기
- python xor
- 릿코드풀기
- leetcode풀이
- 릿코드풀이
- python Leetcode
- 파이썬릿코드풀기
- 코틀린기초
- 알고리즘풀이
- 파이썬 릿코드
- python sorted
- 알고리즘풀기
- python priority queue
- 릿코드 파이썬
- 파이썬릿코드
- python zip_longest
- leetcode 풀기
- 파이썬 알고리즘
- 파이썬알고리즘
- leetcode풀기
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 1304. Find N Unique Integers Sum up to Zero 본문
반응형
1304. Find N Unique Integers Sum up to Zero
https://leetcode.com/problems/find-n-unique-integers-sum-up-to-zero/
문제)
솔루션1) Straight forward
n 숫자가 주어지면 유니크한 숫자 n개를 더했을 때 0를 만드는 array를 구하는 문제입니다.
단순하게 생각했습니다.
n-1 만큼 순차적으로 할당하고 마지막 n번째는 이전 값을 모두 더한 값에 -를 취하면 sum이 0이되고 유니크 숫자를 만족하게 됩니다.
class Solution:
def sumZero(self, n: int) -> List[int]:
res = list(range(1, n))
res.append(-sum(res))
return res
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 1742. Maximum Number of Balls in a Box (0) | 2021.12.14 |
---|---|
LeetCode 풀기 - 2053. Kth Distinct String in an Array (0) | 2021.12.13 |
LeetCode 풀기 - 1382. Balance a Binary Search Tree (0) | 2021.12.09 |
LeetCode 풀기 - 1551. Minimum Operations to Make Array Equal (0) | 2021.12.09 |
LeetCode 풀기 - 1572. Matrix Diagonal Sum (0) | 2021.12.06 |
Comments