(s)
| 31 | VALID_LI = ["b", "c", "d", "e", "g", "h", "k", "m", "n", "r", "t"] |
| 32 | |
| 33 | def is_vowel(s): |
| 34 | return s in VOWELS |
| 35 | def is_consonant(s): |
| 36 | return s not in VOWELS |
| 37 | def is_double_consonant(s): |
no outgoing calls
no test coverage detected
searching dependent graphs…