본문 바로가기

Ruby & Rails

[Ruby] A..Z 리스트의 구현

alphaList=Array.new
('A'..'Z').each {|c| alphaList.push(c)}
view raw gistfile1.rb hosted with ❤ by GitHub