2018.03.20
#Sum of the first nth term of Series
Your task is to write a function which returns the sum of following series upto nth term(parameter).
Series: 1 + 1/4 + 1/7 + 1/10 + 1/13 + 1/16 +...
Rules:
- You need to round the answer to 2 decimal places and return it as String.
- If the given value is 0 then it should return 0.00
- You will only be given Natural Numbers as arguments.
Examples:
SeriesSum(1) => 1 = "1.00"
SeriesSum(2) => 1 + 1/4 = "1.25"
SeriesSum(5) => 1 + 1/4 + 1/7 + 1/10 + 1/13 = "1.57"
'매일매일개발 > Codewars' 카테고리의 다른 글
Codewars #5 Take a Number And Sum Its Digits Raised To The Consecutive Powers And ....¡Eureka!! (6kuy) (0) | 2018.03.23 |
---|---|
Codwars #4 Find the unique number (6kyu) (0) | 2018.03.22 |
Codwars #3 Sort the odd (6kyu) (0) | 2018.03.21 |
Codwars #1 Find the missing letter (6kyu) (0) | 2018.03.20 |
Codwars #0 코드워즈 시작 (0) | 2018.03.20 |