Skip to content

Commit

Permalink
Merge pull request #192 from Rinyaresu/challenges/2-palindromos/ruby/…
Browse files Browse the repository at this point in the history
…rinyaresu

feat: palindromos
  • Loading branch information
lanjoni authored Oct 4, 2023
2 parents a1610ae + 51972e6 commit cdf1592
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
23 changes: 23 additions & 0 deletions challenges/2-palindromos/ruby/rinyaresu/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Submissão de Exercicio

**Exercicio:** 2 - Palíndromo

**Nickname:** rinyaresu

**Nível Técnico:** - ? -

**Empresa:** - Umanni -

**Twitter**: twitter.com/rinyaresu

**Dificuldade de Resolução:** - Baixa -

**Comentários:**

**Como rodar o desafio**:

Use o comando abaixo:

```bash
ruby main.rb arara
```
1 change: 1 addition & 0 deletions challenges/2-palindromos/ruby/rinyaresu/main.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
puts ARGV.first.downcase == ARGV.first.reverse.downcase

0 comments on commit cdf1592

Please sign in to comment.