6 kyu
Something similar to RokuLiuYeoseot- Nacci
149 of 179raulbc777
Loading description...
Fundamentals
Mathematics
Recursion
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.
The number of digits given will be always more than 5. num_dig > 5.
num_digits = 5 tested in full tests suite.
python new test framework + v3.11 is required. updated in this fork
Approved!
Nice one, well done.
The Kata is not stright forward, can anyone help me to understand this?
C# Translation Since there is a high fluctuation in the biggest random tests, I took the number of them down to 10 to avoid unwanted timeouts on proper solutions.
Approved!!
thanks again, this won't be the last translation coming your way ;)
will output a tuple/array with the ordinal number in the sequence for the least value in having equal or more than the given number of digits. ???
The output is a tuple of two elements, the first element is nth-term that has more digits than the output, the second element is the real amount of digits of the corresponding term.
Please could you update the description? a tuple/array with the ordinal number in the sequence for the least value in having equal or more than the given number of digits only refers to the first. Users should not have to read the discussion to understand the task.
this kata is not very clear what excatly is being asked??
I'll try to figure out anyway, but I agree with you.
with respect raulbc777, usually your katas are much much better and more clear and easy to understand with more examples that are super intuitiv
"something_acci() will output a tuple/array with the ordinal number in the sequence for the least value in having equal or more than the given number of digits."
I can't figure out what should be the second value of the returned array.
Python 3 should be enabled.
Done.
That
-
sign is very easy to miss in the definition off
. I've spent at least half an hour trying to figure out why myf
results don't match the examples you gave. Maybe it's worth emphasising the-
in the description somehow saving fellow shortsighted that come after me from half an hour frustration :)I agree, I got hit by the same trap for like 15 minutes :)
same! xD
Approved
Ruby translation kumited.