Skip to content

Instantly share code, notes, and snippets.

@Liooo
Last active August 29, 2015 14:01
Show Gist options
  • Save Liooo/bcc9b03b1fa5f4040a00 to your computer and use it in GitHub Desktop.
Save Liooo/bcc9b03b1fa5f4040a00 to your computer and use it in GitHub Desktop.
# ruby1.8以前では正常に動作しない可能性あり
def get_first_unique_char(str)
str.split('').inject(Hash.new(0)){|memo, v| memo[v]+=1; memo}.select{|k,v| v==1}.first[0]
end
$*.each {|v| p get_first_unique_char(v)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment