VUGCFGT4MFFIHBC55LJR7FS6VTFOXTXYPJW5HJT64QJIUPYLOAMAC
EAUA64VB4NGEH5VXLCWMFSS52DTTC4DTEEUDRCYRNDJDYOELCUQAC
WZNXW2L6YUIXA6LMNSUEHMJNLBVGL3CJR5ECSBJEZ3EWTPOOZ3XQC
// Space, hyphen and mixed case does not matter input = strings.ReplaceAll(input, " ", "") input = strings.ReplaceAll(input, "-", "")
// Space, hyphen and mixed case does not matter
input = strings.ReplaceAll(input, " ", "")
input = strings.ReplaceAll(input, "-", "")
// mixed case does not matter
if _, found := used[ch]; found {
// skip spaces and hyphens, because they do not matter if ch == ' ' || ch == '-' { continue } if used[ch] {
// skip spaces and hyphens, because they do not matter
if ch == ' ' || ch == '-' {
continue
}
if used[ch] {