5 kyu
Chameleon unity
59 of 207Absurdated
Loading description...
Algebra
Logic
Algorithms
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 version updated:
[0,1,6], 1
(thanks to lechevalier)It was difficult to understand the task just by looking at the text, but happy could solve it finally.
Can you please helt me to undaetnad the problem, 34, 32, 35 -> 35 -32 = 3, so will be come 50, 0, 3 and 49, 2, 2 and 51, 0, 0 so counting this will become 34 not 35, please help me to undertand the task is not very clear, Thank you!
After 32 meetings of green and blue chameleons, numbers will be [98, 0, 3] (chameleons don't disappear, so the sum must remain the same). After that, meeting red+blue gives [97,2,2] and then you need TWO more meetings of green+blue to get [101, 0, 0]. 32+1+2 = 35.
Thanks, now its clear!
Can you add this test
chameleon([0,1,6], 1)
? It complements the test added by AlexIsHappy with a case where one other color is "vastly" superior to desired one (explanation here).Another suggestion for the description - wording is slightly misleading:
They both change their colors each time they meet. With this wording, you can think it is possible for them to keep their colors - which allows this incorrect case
chameleons([0, 1, 2], 0)
.Test added and description updated.
The new test case killed one third of solutions.
Outch.
Approved
Python, enjoyable. Had to explore and experiment my way to the logic behind the problem. Thanks for the Kata.
For Python, in Solution Setup:
desired_color
, notdesiredColor
).chameleon()
, notChameleon()
).As there are already some solutions posted, if you change the function name they will be broken. To avoid this, you can add
chameleon = Chameleon
in test cases after you correct the second issue.Do you know how to write different descriptions for different languages? I only found a way to do it for code fragments, not for main text (which in some kata includes formal description of restrictions of the arguments).
No, I don't. I would write "Your function should return..." instead of "
Kata.Chameleon
should return...", and similar way forint.MaxValue
.Done
The test statements are wrong. For example
test.assert_equals(35, Chameleon([34, 32, 35], 0), "Wrong answer")
prints the following if
-1
is returned:Wrong answer: 35 should equal -1
To avoid this, please revert the test statements like this:
test.assert_equals(Chameleon([34, 32, 35], 0), 35, "Wrong answer")
Changed order. Thanks for notice.
Thanks, looks fine now! Nice kata. :)
Problem wording remains hard to understand and would benefit from editing.
Please clarify for me whether my interpretation of how chameleons change color is as intended. It is my understanding that if two chameleons meet, with one already the desired color, but the other some other color, then it is possible for both to emerge with the desired color. That is, if the desired color is red and a red chameleon meets a green chameleon, it is possible for the red chameleon to stay red, and for the green chameleon to turn red. Is this correct?
No. When red and green chameleons meet, they can both change their colors to blue (third color). I'll try to clarify this in description, thanks.
Nice Kata! Had quite a lot of fun!
Thank you! And... kinda sorry, but I added two more tests. Thanks for pointing these cases out.
Agree! Few katas like this, programing with fun!