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
- HTTP 완벽 가이드
- stack&que
- greedy
- ORM
- Bruteforce
- stateless
- dictionary
- codecov
- Stack
- was
- AWS
- 백준
- Query
- permutations
- Gunicorn
- pytest
- Git
- Django
- Q objects
- postreSQL
- utils
- Programmers
- combinations
- Unit Testing
- ws
- Python
- TDD
- SQL
- algorithm
- stateful
Archives
- Today
- Total
해피 코딩!
[프로그래머스] 두 개 뽑아서 더하기 본문
link
def solution(numbers):
answer = []
for val in range(len(numbers)):
for val_2 in range(len(numbers)):
if val == val_2:
pass
else:
value = numbers[val] + numbers[val_2]
answer.append(value)
answer = set(answer)
# print(list(answer))
return sorted(answer)
'알고리즘' 카테고리의 다른 글
[프로그래머스] 완주하지 못한 선수 (0) | 2020.12.12 |
---|---|
[프로그래머스] 모의고사 (0) | 2020.12.12 |
[프로그래머스] 다리를 지나는 트럭 (0) | 2020.12.12 |
[프로그래머스] 내적 (0) | 2020.12.12 |
[프로그래머스] 기능개발 (0) | 2020.12.12 |
Comments