import java.util.*; public class Solution { public boolean isUnique (String str) { // 预处理 if (str.length() == 1) return true; // 初始化 Set<Character> set = new HashSet<>(); // 遍历字符串 for (char c : str.toCharArray()) { // 添加失败,则集合中有重复元素 if (!set.add(c)) return false; } // 所有字符添加成功 return true; } }