6 kyu
Range function
712 of 1,406wichu
Description:
Create range
generator function that will take up to 3 parameters - start value, step and stop value. This function should return an iterable object with numbers. For simplicity, assume all parameters to be positive numbers.
Examples:
- range(5) --> 1,2,3,4,5
- range(3, 7) --> 3,4,5,6,7
- range(2, 3, 15) --> 2,5,8,11,14
Fundamentals
Similar Kata:
Stats:
Created | Dec 12, 2016 |
Published | Dec 12, 2016 |
Warriors Trained | 2501 |
Total Skips | 103 |
Total Code Submissions | 4855 |
Total Times Completed | 1406 |
JavaScript Completions | 724 |
Python Completions | 712 |
Prolog Completions | 9 |
Total Stars | 42 |
% of votes with a positive feedback rating | 89% of 322 |
Total "Very Satisfied" Votes | 262 |
Total "Somewhat Satisfied" Votes | 46 |
Total "Not Satisfied" Votes | 14 |
Total Rank Assessments | 8 |
Average Assessed Rank | 6 kyu |
Highest Assessed Rank | 6 kyu |
Lowest Assessed Rank | 7 kyu |