- 4
CHALLENGE: reversed word
create a programm that reverse a given word ex: blue --->eulb Any language is welcome
8 odpowiedzi
+ 12
JavaScript:
alert(prompt("").split("").reverse().join(""));
+ 8
print(input()[::-1])
which kind of answers this thread below:
https://www.sololearn.com/Discuss/778659/?ref=app
+ 2
https://code.sololearn.com/cGCYt9f38W1M/?ref=app
+ 2
There you go
https://code.sololearn.com/cnZ9qjXxqyrn/?ref=app
+ 2
print(input()[::-1])
+ 1
one liner.. its simple..
https://code.sololearn.com/ceqWUVYteS3x/?ref=app