Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 코로나19
- 캐치카페
- elasticsearch
- 프로그래머스
- PYTHON
- Real or Not? NLP with Disaster Tweets
- SW Expert Academy
- AI 경진대회
- Git
- 데이콘
- 더현대서울 맛집
- Docker
- NLP 대회
- 파이썬
- 우분투
- 자연어처리
- 캐글
- 백준
- 맥북
- github
- dacon
- 금융문자분석경진대회
- leetcode
- 편스토랑
- Kaggle
- selenium
- ubuntu
- hackerrank
- programmers
- Baekjoon
- Today
- 0
- Total
- 1,490,379
목록
반응형
2022/01/24 (1)
반응형
솜씨좋은장씨

코딩 1일 1문제! 오늘의 문제는 leetCode의 Capitalize the Title 입니다. Capitalize the Title - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 👨🏻💻 코드 ( Solution ) class Solution: def capitalizeTitle(self, title: str) -> str: answer = [] lower_title = title.lower() lower_title_list = lower_title.sp..
Programming/코딩 1일 1문제
2022. 1. 24. 00:22
반응형