22 lines
566 B
Python
22 lines
566 B
Python
|
"""
|
||
|
Dada uma string, construa e devolva uma nova string onde
|
||
|
todas as letras 'x' apareçam movidas para o fim da string.
|
||
|
A função tem de ser recursiva. Não pode usar ciclos.
|
||
|
|
||
|
Given a string, return a new string where all the
|
||
|
'x' chars have been moved to the end of the string.
|
||
|
The function must be recursive. You cannot use loops.
|
||
|
|
||
|
endX("xxre") → "rexx"
|
||
|
endX("xxhixx") → "hixxxx"
|
||
|
endX("hixhix") → "hihixx"
|
||
|
"""
|
||
|
|
||
|
def endX(s):
|
||
|
if s == '':
|
||
|
return ''
|
||
|
elif s[0] == 'x':
|
||
|
return endX(s[1:]) + 'x'
|
||
|
else:
|
||
|
return s[0] + endX(s[1:])
|