Jump to content

Find words with alternating vowels and consonants: Difference between revisions

m
→‎{{header|Python}}: Pruned out one unused primitive.
(→‎{{header|Python}}: Added a draft in Python.)
m (→‎{{header|Python}}: Pruned out one unused primitive.)
Line 885:
) if 0 < n else None
return go
 
 
# justifyLeft :: Int -> Char -> String -> String
def justifyLeft(n):
'''A string padded at right to length n,
using the padding character c.
'''
return lambda c: lambda s: s.ljust(n, c)
 
 
Line 926 ⟶ 918:
telekinesis teratogenic topologize unilateral
unimodular uninominal verisimilitude</pre>
 
 
=={{header|Raku}}==
9,659

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.