Right now I\'m doing
for (char c = \'a\'; c <= \'z\'; c++) { alphabet[c - \'a\'] = c; }
but is there a better way to do it? Similar
Check this once I'm sure you will get a to z alphabets:
a
z
for (char c = 'a'; c <= 'z'; c++) { al.add(c); } System.out.println(al);'