250x250
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 |
Tags
- 데이터넥스트레벨챌린지
- 내일배움캠프
- WIL
- time()
- 함수성능평가
- 프로그래머스
- Level1
- 데이터리안
- A태그
- vscode
- python
- Display
- cte
- itertools
- gitignore
- 함수실행시간
- 우선순위
- AI 5기
- 가상환경
- 알고리즘
- googleappscript
- Iterator
- 그로스해킹
- iterable
- position
- git #github #내일배움캠프
- 데벨챌
- with\
- venv
- googlesheet
Archives
- Today
- Total
05의 개발 계발
[TIL] 230518 알고리즘 본문
728x90
1.알고리즘 문제 풀이
[내일배움캠프 AI/페어프로그래밍] - [페어프로그래밍] 230518 소수찾기 Lv.1 | for if range
[페어프로그래밍] 230518 소수찾기 Lv.1 | for if range
소수찾기 페어프로그래밍 결과 코드 # =======초기 코드========== def solution(n): def prime_number(number): for i in range(2,int(number**0.5)+1): if number % i == 0: return False return True answer = 0 for num in range(2,n+1): if prime_num
05-archives.tistory.com
[페어프로그래밍] 230518 숫자 문자열과 영단어 Lv.1 | list replace
[페어프로그래밍] 230518 숫자 문자열과 영단어 Lv.1 | list replace
숫자 문자열과 영단어 페어프로그래밍 결과 코드 # 초기 코드 def solution(s): num_list= ["zero","one","two","three","four","five","six","seven","eight","nine"] for i,num in enumerate(num_list): if num in s: s = s.replace(num,str(i)) re
05-archives.tistory.com
728x90
'TIL' 카테고리의 다른 글
[TIL] 230517 머신러닝 TensorFlow / Keras | WARNING:absl:`lr` is deprecated (0) | 2023.05.17 |
---|---|
[TIL] 230516 머신러닝의 기본개념 (0) | 2023.05.16 |
[TIL] 230509 DRF에서 SQLite3 대신 MySQL로 변경하기 (0) | 2023.05.09 |
[TIL] 230508 DRF_팀프로젝트 시작 (0) | 2023.05.08 |
[TIL] 230426 재귀함수 / 클래스상속 추상클래스 (0) | 2023.04.27 |