-
-
Notifications
You must be signed in to change notification settings - Fork 550
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Anagram test data #413
Comments
Seems correct, if it should be the case (as in earlier tests) that anagrams are case insensitive. "ΑΒΓ" lowercased is indeed "αβγ", which is a rearrangement of the "γβα" |
Technically, I think it is an anagram, @fredb; because - surprisingly - it seems that That said, I don't think we should test extreme cases like this one, as it is not an essential part of the problem to deal with obscure case conversions. |
I do not think, that we should test for anything that is not in ASCII.
So we wozuld need to think about that characters before allowing them blindly. |
I agree with this. Handling non-ASCII casing is a whole other problem. |
https://github.com/exercism/x-common/blob/master/exercises/anagram/canonical-data.json#L106
Is this really a valid anagram?
Is seems to me that
"γβα"
should not be considered a valid anagram of"ΑΒΓ"
.Also, this test failed when ruby generator was implemented exercism/ruby#464.
Thanks!
The text was updated successfully, but these errors were encountered: