比如特定字符是“A”“B”“C”,那么给定一个字符串就要判断是否除了“A”“B”“C”外还有没有其他字符
例:input:ABD 
output:false
input:DEF
output:false
input:AB
output:true
input:ABC
output:true