标签:
import java.util.*; public class Different { public boolean checkDifferent(String str) { // write code here 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; } }
标签:
原文地址:http://www.cnblogs.com/yueyebigdata/p/5051782.html