일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- almostIncreasingSequence
- flask
- Python
- shapeArea
- 2750
- 수 정렬하기
- Counting cells in a blob
- 파이썬 포렌식
- Numpy
- matrixElementsSum
- centuryFromYear
- recursion
- Daily Commit
- cpp
- codesingal
- til
- 백준
- codesignal
- 10953
- Sequential Search
- All Longest Strings
- adjacentElementsProduct
- collections.deque
- markdown
- 피보나치 수
- 파이썬머신러닝완벽가이드
- 2015 봄학기 알고리즘
- baekjun
- data_structure
- C++
- Today
- Total
목록Programming_prob/Codewares 4
Introfor
from functools import reduce 이 모듈은 처음 써보는데 편리하게 사용할 수 있을 것 같다. 1 2 3 4 5 6 7 8 9 10 from sys import stdin from functools import reduce n = int(stdin.readline()) cnt = 0 while n >= 10: n_list = list(str(n)) n = reduce(lambda x, y: int(x)*int(y), n_list) cnt += 1 print(cnt) Colored by Color Scripter cs 다른 소스코드 1 2 3 4 5 6 7 8 9 10 def persistence(n): n = str(n) count = 0 while len(n) > 1: p = 1 fo..
1 2 3 4 5 6 7 8 9 10 11 12 def likes(names): if len(names) == 0: return "no one likes this" elif len(names) == 1: return f'{names[0]} likes this' elif len(names) == 2: return f'{names[0]} and {names[1]} like this' elif len(names) == 3: return f'{names[0]}, {names[1]} and {names[2]} like this' else: num = len(names) - 2 return f'{names[0]}, {names[1]} and {num} others like this' cs names의 크기에 따라서..