-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d087392
commit 5d54ec9
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Submissão de Exercicio | ||
|
||
**Exercicio:** 2 - palindromos | ||
|
||
**Nickname:** Herco | ||
|
||
**Nível Técnico:** - Junior | ||
|
||
**Dificuldade de Resolução:** - Baixa | ||
|
||
**Como rodar o desafio**: | ||
Para executar o aplicativo é necessário já ter o ambiente Java configurado em sua máquina e o compilador do Kotlin que pode ser instalado seguindo a [documentação oficial](https://kotlinlang.org/docs/command-line.html). Caso utilize Windows basta seguir [este](https://downlinko.com/download-install-kotlin-windows.html) passo a passo. | ||
|
||
Use o comando abaixo: | ||
```bash | ||
kotlinc palindrome.kt -include-runtime -d palindrome.jar | ||
java -jar palindrome.jar | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
fun main() = println(isPalindrome(readln().trim())) | ||
|
||
private fun isPalindrome(valor: String) = valor.equals(valor.reversed(), ignoreCase = true) |