Skip to content

Instantly share code, notes, and snippets.

@BalajiMalliswamy
Created April 26, 2022 16:01
Show Gist options
  • Save BalajiMalliswamy/e8031e9344d05d4bad93655359e04f30 to your computer and use it in GitHub Desktop.
Save BalajiMalliswamy/e8031e9344d05d4bad93655359e04f30 to your computer and use it in GitHub Desktop.
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
//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
// solution(year) = 20;
// For year = 1700, the output should be
// solution(year) = 17.
func solution(year: Int) -> Int {
return Int((Float(year)/100.0).rounded(.up))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment