题解 | #判断字符是否唯一#
判断字符是否唯一
http://www.nowcoder.com/practice/fb08c63e2c4f4f7dbf41086e46044211
import java.util.*;
public class Solution { Map<Character,Character> map=new HashMap<>(); public boolean isUnique (String str) { for(int i=0;i<str.length();i++){ if(map.get(str.charAt(i))!=null){ return false; }else{ map.put(str.charAt(i),'a'); } } return true; } }