7 kyu
Sum of a sequence
17,151 of 50,255fyvfyv
Description:
Your task is to write a function which returns the sum of a sequence of integers.
The sequence is defined by 3 non-negative values: begin, end, step.
If begin value is greater than the end, your function should return 0. If end is not the result of an integer number of steps, then don't add it to the sum. See the 4th example below.
Examples
2,2,2 --> 2
2,6,2 --> 12 (2 + 4 + 6)
1,5,1 --> 15 (1 + 2 + 3 + 4 + 5)
1,5,3 --> 5 (1 + 4)
This is the first kata in the series:
- Sum of a sequence (this kata)
- Sum of a Sequence [Hard-Core Version]
Fundamentals
Algorithms
Mathematics
Similar Kata:
Stats:
Created | Jan 6, 2017 |
Published | Jan 6, 2017 |
Warriors Trained | 79058 |
Total Skips | 10490 |
Total Code Submissions | 134537 |
Total Times Completed | 50255 |
JavaScript Completions | 17151 |
PHP Completions | 2030 |
Haskell Completions | 629 |
Python Completions | 17070 |
Ruby Completions | 1324 |
Crystal Completions | 40 |
CoffeeScript Completions | 28 |
C# Completions | 2563 |
C++ Completions | 6031 |
C Completions | 1760 |
NASM Completions | 74 |
COBOL Completions | 19 |
Nim Completions | 35 |
Factor Completions | 19 |
D Completions | 18 |
Go Completions | 882 |
Rust Completions | 522 |
Scala Completions | 94 |
Java Completions | 1401 |
Lua Completions | 39 |
Prolog Completions | 7 |
Julia Completions | 11 |
Total Stars | 555 |
% of votes with a positive feedback rating | 88% of 4507 |
Total "Very Satisfied" Votes | 3566 |
Total "Somewhat Satisfied" Votes | 816 |
Total "Not Satisfied" Votes | 125 |
Total Rank Assessments | 15 |
Average Assessed Rank | 7 kyu |
Highest Assessed Rank | 6 kyu |
Lowest Assessed Rank | 8 kyu |