You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Neste desafio você deverá construir uma função que recebe uma String e identifique se a mesma é um palíndromo, ou seja, se a String é igual a ela mesma invertida.
// Dado que temos a String "digital" uma vez invertida temos "latigid" que são diferentes.
// Logo, NÃO é um Palíndromo.
// Já se recebemos a string "radar" uma vez invertida temos "radar" que são iguais.