Skip to content

Latest commit

 

History

History
67 lines (40 loc) · 944 Bytes

Century_From_Year.md

File metadata and controls

67 lines (40 loc) · 944 Bytes

CodeWars Python Solutions


Century From Year

Introduction

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.

Task :

Given a year, return the century it is in.

Input , Output Examples :

centuryFromYear(1705)  returns (18)
centuryFromYear(1900)  returns (19)
centuryFromYear(1601)  returns (17)
centuryFromYear(2000)  returns (20)

Given Code

def century(year):
    # Finish this :)
    return

Solution 1

def century(year):
    return (year + 99) // 100

Solution 2

def century(year):
    if year < 1000:
        return year // 100 + 1
    elif year >= 1000 and year % 100 == 0:
        return year / 100
    else:
        return year // 100 + 1

See on CodeWars.com