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
- 이코테
- 딥러닝
- 데이터분석준전문가
- 데이터 분석
- ADsP
- 데이터 전처리
- 데이터분석
- IRIS
- scikit learn
- matplotlib
- 파이썬
- 머신러닝
- Deep Learning Specialization
- 통계
- 시각화
- r
- tableau
- 코딩테스트
- SQL
- Google ML Bootcamp
- sklearn
- pandas
- 태블로
- Python
- 자격증
- 이것이 코딩테스트다
- 회귀분석
- ML
- pytorch
- SQLD
Archives
- Today
- Total
목록Binary Search (1)
함께하는 데이터 분석

부품 찾기 # 부품 찾기 (시간 초과할 수도) N = int(input()) arr = list(map(int, input().split())) M = int(input()) data = list(map(int, input().split())) for i in range(len(data)) : if data[i] in arr : print('yes', end = ' ') else : print('no', end = ' ') # 부품 찾기(이진 탐색) def binary_search(array, target, start, end) : while start target : # 중간점보다 target이 작으므로 왼쪽 end = mid - 1 else : # 중간점보다 target이 크므로 오른쪽 start =..
코딩 테스트/이것이 코딩테스트다
2023. 7. 17. 15:38