מידע

יוצרים Alexandre Fiset
מועד הגשה אין מועד הגשה
מגבלת הגשות אין הגבלה

כניסה

TP03_Exercice4_Miroir

Écrivez une méthode miroir(string) qui prend en input un string et renvoie en sortie ce string dans l'ordre inverse.

Par exemple pour le string :

s = "abc de"

Votre code doit retourner :

ans = "ed cba"

Implémentation

Écrivez la signature et le corps de la fonction miroir(string)