Question d’entretien chez Charles Schwab

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

Réponses aux questions d'entretien

Utilisateur anonyme

24 avr. 2018

Again, tons of examples on Youtube.

Utilisateur anonyme

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