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
- OCR
- nestjs
- AWS
- MySQL
- flask
- class
- Dinosaur
- Python
- cookie
- 공룡게임
- mongoose
- game
- Express
- nodejs
- Nest.js
- MongoDB
- react
- dfs
- typeORM
- 자료구조
- GIT
- Sequelize
- JavaScript
- 게임
- Queue
- jest
- 정렬
- TypeScript
- Bull
Archives
- Today
- Total
목록values() (1)
포시코딩
1월4일
Python string에서 문자 찾기 not in def solution(num, k): if str(k) not in str(num): print(True) else: print(False) result = solution(29583, 1) # True result = solution(29183, 1) # False in def solution(num, k): if str(k) in str(num): print(True) else: print(False) result = solution(29583, 1) # False result = solution(29183, 1) # True index, find 둘 다 문자열에 사용할 수 있으며 index는 찾았을 때 없으면 에러가 나지만 find는 찾았을 때 ..
TIL
2023. 1. 4. 10:15