CHIqueen
[Intro] centuryFromYear 본문
Given a year, return the century it is in. The first century spans from the year 1 up to and including the year 100, the second - from the year 101 up to and including the year 200, etc.
Example
- For year = 1905, the output should be
centuryFromYear(year) = 20; - For year = 1700, the output should be
centuryFromYear(year) = 17.
def centuryFromYear(year):
return (year + 99) // 100
'프로그래밍 > CodeSignal' 카테고리의 다른 글
[Intro] shapeArea (0) | 2020.03.03 |
---|---|
[Intro] Make Array Consecutive 2 (0) | 2020.03.03 |
[Intro] adjacentElementsProduct (0) | 2020.03.03 |
[Intro] checkPalindrome (0) | 2020.02.26 |
[Intro] add (0) | 2020.02.26 |
Comments