소문자로 된 한개의 문자열이 입력되면 중복된 문자를 제거하고 출력하는 프로그램을 작성하세요.
중복이 제거된 문자열의 각 문자는 원래 문자열의 순서를 유지합니다.
첫 줄에 문자열이 입력됩니다. 문자열의 길이는 100을 넘지 않는다.
첫 줄에 중복문자가 제거된 문자열을 출력합니다.
ksekkset
kset
public class StringEx_6 {
public String solution(String str) {
String answer="";
for (int i=0; i<str.length(); i++) {
// System.out.println(str.charAt(i)+" "+i+ " "+str.indexOf(str.charAt(i)));
// charAt을 통해 도출되는 문자가 최초로 등장하는거라면 true
if (str.indexOf(str.charAt(i)) == i) {
answer += str.charAt(i);
}
}
return answer;
}
public static void main(String[] args) throws IOException {
StringEx_6 T = new StringEx_6();
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String input = br.readLine();
System.out.println(T.solution(input));
}
}
indexOf()를 제대로 익혀볼 수 있는 문제였다.
문자열 함수를 제대로 알아야겠다는 마음이 들게 한 문제.. 어려웠다.