CHALLENGE: reversed word | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 4

CHALLENGE: reversed word

create a programm that reverse a given word ex: blue --->eulb Any language is welcome

10th Oct 2017, 7:49 PM
CCtuhulu
CCtuhulu - avatar
8 Answers
+ 12
JavaScript: alert(prompt("").split("").reverse().join(""));
11th Oct 2017, 2:52 AM
Krishna Teja Yeluripati
Krishna Teja Yeluripati - avatar
+ 8
print(input()[::-1]) which kind of answers this thread below: https://www.sololearn.com/Discuss/778659/?ref=app
10th Oct 2017, 7:59 PM
Kuba Siekierzyล„ski
Kuba Siekierzyล„ski - avatar
10th Oct 2017, 8:23 PM
Joshua
Joshua - avatar
+ 2
https://code.sololearn.com/cGCYt9f38W1M/?ref=app
10th Oct 2017, 9:49 PM
Ferhat Sevim
Ferhat Sevim - avatar
10th Oct 2017, 10:02 PM
Utkarsh Gupta
Utkarsh Gupta - avatar
+ 2
print(input()[::-1])
11th Oct 2017, 2:03 AM
๐Ÿ‘‘ Prometheus ๐Ÿ‡ธ๐Ÿ‡ฌ
๐Ÿ‘‘ Prometheus ๐Ÿ‡ธ๐Ÿ‡ฌ - avatar
11th Oct 2017, 11:24 AM
Siddu Kori
Siddu Kori - avatar