The Journey Begins
add
Write a function that returns the sum of two numbers.
Example
For param1 = 1
and param2 = 2
, the output should be
add(param1, param2) = 3
.
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 becenturyFromYear(year) = 20
;For
year = 1700
, the output should becenturyFromYear(year) = 17
.
checkPalindrome
Given the string, check if it is a palindrome.
Palindrome - A string that doesn't changed when reversed (it reads the same backward and forward). Examples: "eye", "noon", "decaf faced".
Example
For
inputString = "aabaa"
, the output should becheckPalindrome(inputString) = true
;For
inputString = "abac"
, the output should becheckPalindrome(inputString) = false
;For
inputString = "a"
, the output should becheckPalindrome(inputString) = true
.
Last updated
Was this helpful?