Ruby Cheat Sheet
alphabet_list
ruby
('a'..'z').to_a
python
from string import ascii_lowercase ALPHABET = list(ascii_lowercase)
javascript
go
rust