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
- github
- GCP
- datascience
- GIT
- GitHub Action
- docker
- python
- FDS
- 프로그래머스
- 알고리즘
- wandb
- 네이버AItech
- 완전탐색
- Kubernetes
- pep8
- 백준
- DeepLearning
- FastAPI
- Matplotlib
- pytorch
- torchserve
- leetcode
- Kaggle
- vscode
- rnn
- autoencoder
- NaverAItech
- NLP
- PytorchLightning
- 코딩테스트
Archives
- Today
- Total
목록알고리즘/데이터구조 (1)
Sangmun
binary search left & right
https://www.acmicpc.net/problem/10816 10816번: 숫자 카드 2 첫째 줄에 상근이가 가지고 있는 숫자 카드의 개수 N(1 ≤ N ≤ 500,000)이 주어진다. 둘째 줄에는 숫자 카드에 적혀있는 정수가 주어진다. 숫자 카드에 적혀있는 수는 -10,000,000보다 크거나 같고, 10, www.acmicpc.net from bisect import bisect_left, bisect_right from sys import stdin n = stdin.readline().rstrip() card = list(map(int,stdin.readline().split())) m = stdin.readline().rstrip() test = list(map(int,stdin.read..
알고리즘/데이터구조
2022. 12. 1. 09:49