Retired
Simple Syllable Separator (SSS) (retired)
Loading description...
Strings
Fundamentals
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.
This has nothing to do with actual syllable separation... It's just split the word with non sense rules I've just come up with.
Vowels will always be lowercase?
Hi, just wondering why
ab-ort
in the example isn'tab-or-t
as there is a vowel and consonantor
and they are not the last letters ?mb i changed the rule last night and forgot to change the examples
it's fixed now
Hi,
It's not specified in the description that the input is always considered to be a single ""word"" (here: only lowercase letters)
I just added that the input only contains a single word
Python function parameter shadows the
string
module.This comment has been hidden.
This comment has been hidden.
Import of
solution
module is missing in sample tests. I cannot see full test suite, but I assume it might be missing there too.See this paragraph on module imports: https://docs.codewars.com/languages/python/authoring#imports
I am unpublishing the kata before it collects more negative feedback caused by issues reported below. Please feel free to republish the kata after issues are fixed.
Additionally, please read the documentation section on authoring to see what are requirements for a kata to be considered of acceptable quality: https://docs.codewars.com/authoring/guidelines
There are no random tests. Please see this article: https://docs.codewars.com/languages/python/authoring for some examples and explanation how to create test suites in Python.
Description should explain how characters (letters) are divided into vowels and consonants. Most significantly, should
y
be counted as a vowel or as a consonant?It is now mentioned in the description that vowels are "aeiou".