Created
May 30, 2021 21:32
-
-
Save mattiaferigutti/7259119d8b3f9dd1515aad114e05c270 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Esercizio 1 | |
// Crea una funzione che fa il reverse di una stringa | |
// Esempio: input: "cool" output: "looc" | |
// Usa il tipo di ciclo che preferisci (ti consiglio il for) | |
//Esercizio 2 | |
// Crea una funzione che converte ogni frase nel suo acronimo | |
// Esempio 1: TLA è acronimo di Three Letter Acronyms | |
// Esempio 2: MR è acronimo di Marco Rossi | |
//Per entrambi gli esercizi non serve che crei nessuna classe ma solo high-level functions come abbiamo visto 💪 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment