1. 程式人生 > >LintCode 157---判斷字符串是否沒有重復字符

LintCode 157---判斷字符串是否沒有重復字符

ntc style for ram char 判斷字符串 是否 als col

public class Solution {
    /*
     * @param str: A string
     * @return: a boolean
     */
     public static boolean isUnique(String str) {
        if(str.length() == 1)
            return true;
        for (int i = 0; i < str.length(); i++) {
            for (int j = i+1; j < str.length(); j++) {
                
if(str.charAt(i) == str.charAt(j)) return false; } } return true; } }

LintCode 157---判斷字符串是否沒有重復字符