Charles Schwab interview question

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

Interview Answers

Anonymous

24 Apr 2018

Again, tons of examples on Youtube.

Anonymous

17 May 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