You need to sign in or sign up before continuing.×
7 kyu
Operations with sequence
118 of 1,355arkada38
Loading description...
Fundamentals
Arrays
View
This comment has been reported as {{ abuseKindText }}.
Show
This comment has been hidden. You can view it now .
This comment can not be viewed.
- |
- Reply
- Edit
- View Solution
- Expand 1 Reply Expand {{ comments?.length }} replies
- Collapse
- Spoiler
- Remove
- Remove comment & replies
- Report
{{ fetchSolutionsError }}
-
-
Your rendered github-flavored markdown will appear here.
-
Label this discussion...
-
No Label
Keep the comment unlabeled if none of the below applies.
-
Issue
Use the issue label when reporting problems with the kata.
Be sure to explain the problem clearly and include the steps to reproduce. -
Suggestion
Use the suggestion label if you have feedback on how this kata can be improved.
-
Question
Use the question label if you have questions and/or need help solving the kata.
Don't forget to mention the language you're using, and mark as having spoiler if you include your solution.
-
No Label
- Cancel
Commenting is not allowed on this discussion
You cannot view this solution
There is no solution to show
Please sign in or sign up to leave a comment.
python new test framework is required. updated in this fork
Approved by someone
thanks for kata,it was good one
This comment has been hidden.
Some language versions doesn't have random tests.
Approved
What does this error message mean ?
Test Failed
Very nice Kata to learn R language! :D
It's probably not an exact duplicate of anything, but it doesn't feel very inspired. :S
Issue: no random tests.
@arkada38,
You may find this guide helpful when constructing your random assertions.
Cheers, donaldsebleung
Thank you.
The description seems to have a typo.
{ -2, -1, 0, 1, 2 } -> 6
1. Square numbers greater than zero:
{ -2, -1, 0, 1, 4 }
2. Multiply by 3 every third number.
{ -2, -1, 0(*3), 1, 4 }
3. Multiply by -1 every fifth number.
{ -2, -1, 0, 1, -4 }
4. Return the sum of the sequence. -->
-6
, not6
Thank you