I\'m trying to create an algorithm in C# which produces the following output strings:
AAAA AAAB AAAC ...and so on... ZZZX ZZZY ZZZZ
What is the
Haskell!
replicateM 4 ['A'..'Z']
Ruby!
('A'*4..'Z'*4).to_a