Problem Statement:
I have list of Alphabets array: const Alphabets = ['a','b','c','d','e','f','g','h','i','j',''k','l','m','n','o','p','q','r','s','t','u','v','w','x','y',z];
I want to have list list of unique alphabetic combinations from one digit till 2 digits. For example :
const result = ['a','b','c','d','e','f','g','h','i','j',''k','l','m','n','o','p','q','r','s','t','u','v','w','x','y',z', 'aa','ab','ac ..... , 'ba','bb','bc','bd'......., 'ca','cb',....till zz];
Also there should not be any duplicate values. Please assist