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
- 3D
- OpenCV
- 파이썬
- center loss
- 알고리즘
- deep learning
- 자료구조
- 큐
- Deeplearning
- 딥러닝
- Object Tracking
- transformer
- 스택
- numpy
- attention
- Object Detection
- 임계처리
- 논문 구현
- reconstruction
- 프로그래머스
- Knowledge Distillation
- re-identification
- flame
- NLP
- cv2
- Computer Vision
- Python
- level2
- point cloud
- Threshold
Archives
- Today
- Total
공돌이 공룡의 서재
[프로그래머스 Level 1] 같은 숫자는 싫어 / 연습문제 / 파이썬 본문
<문제>
<풀이>
def solution(arr):
answer = [arr[0]]
for i in range(1, len(arr)):
if arr[i] == arr[i-1]:
pass
else:
answer.append(arr[i])
return answer
코드 설명:
처음 숫자는 그 다음 숫자랑 중복이 되든 안되든 무조건 하나를 취하고, 그 다음부터는 배열의 원소를 2개씩 비교하면서 같으면 pass (continue를 써도 무방), 다르면 숫자가 달라지는 것이니 answer 배열에 넣었다.
'코딩 > 프로그래머스' 카테고리의 다른 글
[프로그래머스 Level 2] 다리를 지나는 트럭 / (스택/큐) / 파이썬 (0) | 2020.08.29 |
---|---|
[프로그래머스 Level 1] 문자열 내 마음대로 정렬하기 / 연습문제 / 파이썬 (0) | 2020.08.16 |
[프로그래머스 Level 1] K번째수 / 정렬 / 파이썬 (0) | 2020.07.15 |
[프로그래머스 Level 1] 체육복 / 탐욕법 / 파이썬 (0) | 2020.07.09 |
[프로그래머스 Level 1] 모의고사 / 완전탐색 / 파이썬 (0) | 2020.07.05 |
Comments