letterToNum: This method returns a map from every lowercase letter to the number corresponding to its ordering in the alphabet, where 'a' corresponds to 1 and 'z' corresponds to 26.
public static Map letterToNum() {
return null;