Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Troca vogal por * #5

Open
danielle8farias-zz opened this issue Apr 30, 2020 · 3 comments
Open

Troca vogal por * #5

danielle8farias-zz opened this issue Apr 30, 2020 · 3 comments
Labels
good first issue Good for newcomers level-100 Nível básico

Comments

@danielle8farias-zz
Copy link
Contributor

danielle8farias-zz commented Apr 30, 2020

[pt-br] Usuário digita uma palavra ou frase, e programa retorna a mesma com as vogais trocadas por *(asterisco).

Exemplo de entrada

a lenda de zelda

Exemplo de saída

* l*nd* d* z*ld*

@mariagabrielec
Copy link

https://github.com/mariagabrielec/cod/commit/6a86d4af0481f32c2845448bb17161ee1ca770e2

@leticiacamposs2
Copy link
Contributor

Fiz a minha solução em Node:
https://github.com/leticiacamposs2/hackerrank-algorithms-js/blob/master/13-vowel-by-asteristic.js

@carolfortunato carolfortunato added good first issue Good for newcomers level-100 Nível básico labels Oct 10, 2020
@bellesamways
Copy link

solução em ruby:

puts "entre com uma frase e aperte enter: "
frase = gets.chomp

puts "#{frase.gsub(/[aeiou]/, '*')}"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers level-100 Nível básico
Projects
None yet
Development

No branches or pull requests

5 participants