Skip to content

Instantly share code, notes, and snippets.

@miyataka
Created June 23, 2019 14:43
Show Gist options
  • Save miyataka/9e4cba597dbbad052109960592fb4436 to your computer and use it in GitHub Desktop.
Save miyataka/9e4cba597dbbad052109960592fb4436 to your computer and use it in GitHub Desktop.
i = gets.chomp
prev = ''
result = ''
i.split('').each do |k|
if k == prev
result = 'Bad'
break
else
result = 'Good'
end
prev = k
end
print result
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment