Charles Schwab interview question

Write a program that takes a string and prints it out backwards.

Interview Answers

Anonymous

Apr 24, 2018

Again, tons of examples on Youtube.

Anonymous

May 17, 2022

Python solution: txt = "Hello World"[::-1] print(txt) Notes: Coding questions were so easy back in the day, now we have to deal with leetcode mediums lol