LeetCode.面试题01.01.判断字符是否唯一(Java实现)

LeetCode.面试题01.01.判断字符是否唯一(Java实现)_第1张图片

class Solution {                       //双指针暴力解法
    public boolean isUnique(String astr) {
        boolean isSame = true;
        for(int i = 0; i < astr.length() - 1; i++)
        {
            for(int j = i + 1; j < astr.length(); j++)
            {
                if(astr.charAt(i) == astr.charAt(j))
                {
                    return false;
                }
            }
        }

        return isSame;
    }
}

 

你可能感兴趣的:(LeetCode)