strong
Results
1
issues of
strong
## 既然都是ASCII码,那长度大于256必定会出现重复的,所以改为以下是不是可以: ``` func isUniqueString(s string) bool { if len(s) > 256 { return false } unique := make(map[int32]bool) for _, v := range s { if v > 256...