Skip to content

Instantly share code, notes, and snippets.

@r00k
Created April 27, 2010 15:45
Show Gist options
  • Save r00k/380886 to your computer and use it in GitHub Desktop.
Save r00k/380886 to your computer and use it in GitHub Desktop.
def squish(str)
str = str.split('')
str.inject(str[0]) do |acc, char|
acc << char unless acc.split('').last.downcase == char.downcase
acc
end
end
puts squish("AQAaaBbbbbccCcc")
puts squish("ZzzzzXxxxyYY")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment