Print "SoloLearn is awesome" 1000 times. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

Print "SoloLearn is awesome" 1000 times.

Design a program to Print "SoloLearn is awesome" 1000 times with No loops, No recursion, Reasonably readable and concise. Do the work by hand. All languages are Welcome :)

4th Apr 2018, 1:51 AM
Nabeel
Nabeel - avatar
10 Answers
+ 9
This will definitely get to 1000; I just don't think it's ever going to stop. Given how I do this, it might count as a brain boggler :) https://code.sololearn.com/cYgU9YGHlfD1/?ref=app
4th Apr 2018, 3:41 AM
Kirk Schafer
Kirk Schafer - avatar
4th Apr 2018, 4:42 AM
Vishal Pal❄️⚛️
Vishal Pal❄️⚛️ - avatar
+ 7
https://code.sololearn.com/WsH68MV7s0JX/?ref=app
4th Apr 2018, 2:32 AM
Morpheus
Morpheus - avatar
+ 6
Time limit exceeded stops it, but here you go: https://code.sololearn.com/cHdp99sUw5Ni
4th Apr 2018, 2:18 AM
John Wells
John Wells - avatar
+ 6
js => console.log("Sololearn is awesome".repeat(1000));
4th Apr 2018, 2:33 AM
Ranjan Bagri
Ranjan Bagri - avatar
+ 5
Here's one that uses CPU/FPU floating point exception to "goto by fatal signal" (controlled, so 1000x ok) https://code.sololearn.com/c99KPGHr5FIb/?ref=app
4th Apr 2018, 4:31 AM
Kirk Schafer
Kirk Schafer - avatar
+ 3
https://code.sololearn.com/cmADa6rTVISp/?ref=app
4th Apr 2018, 2:02 AM
kaliki chandu
kaliki chandu - avatar
+ 1
Time limit, though... req = 1000 done = 1 while done <= req: print('{} - SoloLearn is Awesome!'.format(done)) done += 1
4th Apr 2018, 8:40 AM
Andrey Vostokov
Andrey Vostokov - avatar
+ 1
Oracle SQL : select 'SoloLearn is awesome' from DUAL connect by level <= 1000;
4th Apr 2018, 10:35 AM
Prokopios Poulimenos
Prokopios Poulimenos - avatar
+ 1
Well I was procrastinating a bit whIle taking an exam today and I found this and I gladly accepted the challenge. Enjoy and any feedback would be much appreciated. Thanks ✌😀 https://code.sololearn.com/WEtk4qY4126X/?ref=app
4th Apr 2018, 7:14 PM
Michelangelo
Michelangelo - avatar