+ 1
Reverse a string without using library functions
Help me in thi not getting correct output
3 Answers
+ 4
Please tag the relevant programming language and show your code attempt.
+ 4
Python solution:
'racecar'[::-1]
Does list slicing count as a library? I wonder.
How can you expect people to analyze and debug your code, if you do not link the code itself?
+ 3
Where is the code