#sample solution
puts "Enter some text: "
text = gets.chomp
puts "Enter the word to redact / censor in your text: "
redact = gets.chomp
words = text.split(" ")
words.each {|word|
print "#{word}"
}
puts "Enter some text: "
text = gets.chomp
puts "Enter the word to redact / censor in your text: "
redact = gets.chomp
words = text.split(" ")
words.each {|word|
print "#{word}"
}
No comments:
Post a Comment