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
- pytorch
- 프로그래머스파이썬
- 프로그래머스
- 코딩테스트2단계
- Pytorch pruning
- Two stage Detector
- deep learning
- Paper list
- 코딩테스트연습
- Object Detection
- One stage detector
- 프로그래머스타겟넘버정답
- 프로그래머스게임맵최단거리
- Faster R-CNN
- 최솟값 만들기
- ECCV
- SSD 리뷰
- 프로그래머스타겟넘버파이썬
- Pruning Tutorial
- Code Study
- 코딩테스트네트워크
- 다음큰숫자
- ssd
- 타겟넘버bfs
- Single Shot MultiBox Detector
- 프로그래머스bfs
- 프로그래머스타겟넘버
- 프로그래머스너비우선탐색
- 커피후기
- 프로그래머스네트워크
Archives
- Today
- Total
soyeonland
최댓값과 최솟값 본문
def solution(s):
s = s.split(' ')
l = [int(num) for num in s]
l = sorted(l)
answer = str(l[0]) + " " + str(l[-1])
return answer