Skip to content

Instantly share code, notes, and snippets.

@need4spd
Created November 29, 2012 00:51
Show Gist options
  • Save need4spd/4165940 to your computer and use it in GitHub Desktop.
Save need4spd/4165940 to your computer and use it in GitHub Desktop.
[Ruby] A..Z 리스트의 구현
alphaList=Array.new
('A'..'Z').each {|c| alphaList.push(c)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment