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:

  1. Sum of a sequence (this kata)
  2. Sum of a Sequence [Hard-Core Version]
Fundamentals
Algorithms
Mathematics

More By Author:

Check out these other kata created by fyvfyv

Stats:

CreatedJan 6, 2017
PublishedJan 6, 2017
Warriors Trained79058
Total Skips10490
Total Code Submissions134537
Total Times Completed50255
JavaScript Completions17151
PHP Completions2030
Haskell Completions629
Python Completions17070
Ruby Completions1324
Crystal Completions40
CoffeeScript Completions28
C# Completions2563
C++ Completions6031
C Completions1760
NASM Completions74
COBOL Completions19
Nim Completions35
Factor Completions19
D Completions18
Go Completions882
Rust Completions522
Scala Completions94
Java Completions1401
Lua Completions39
Prolog Completions7
Julia Completions11
Total Stars555
% of votes with a positive feedback rating88% of 4507
Total "Very Satisfied" Votes3566
Total "Somewhat Satisfied" Votes816
Total "Not Satisfied" Votes125
Total Rank Assessments15
Average Assessed Rank
7 kyu
Highest Assessed Rank
6 kyu
Lowest Assessed Rank
8 kyu
Ad
Contributors
  • fyvfyv Avatar
  • Javatlacati Avatar
  • GiacomoSorbi Avatar
  • donaldsebleung Avatar
  • Chrono79 Avatar
  • Dentzil Avatar
  • EatYourBeetS Avatar
  • Papaltine Avatar
  • Voile Avatar
  • Madjosz Avatar
  • metagn Avatar
  • FArekkusu Avatar
  • monadius Avatar
  • hobovsky Avatar
  • uniapi Avatar
  • stellartux Avatar
  • user8436785 Avatar
  • ejini战神 Avatar
  • Reargem Avatar
  • akar-0 Avatar
  • Kacarott Avatar
  • razetime Avatar
  • Thomas-Teo Avatar
  • KayleighWasTaken Avatar
  • metatable Avatar
Ad