Skip to content

Commit

Permalink
Finalizando o desafio
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielhpereira committed Oct 4, 2023
1 parent d087392 commit 5d54ec9
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
18 changes: 18 additions & 0 deletions challenges/2-palindromos/kotlin/herco/README.md
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
```
3 changes: 3 additions & 0 deletions challenges/2-palindromos/kotlin/herco/palindrome.kt
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)

0 comments on commit 5d54ec9

Please sign in to comment.