Programmers[자바].140108 문자열 나누기 (코드첨부)
·
문제 풀이/Programmers
📌코드를 풀면서 주의해야 할 점 ☀️기준이 되는 값은 하나다 ☀️기준과 다른 수는 각각 문자별로 개수를 세는게 아니라 다른 수 하나로 지정하여 카운트한다. ☀️예를들어 기준이 a이고 bcde가 있으면 a=1, bcde=4로 카운트하여 비교하는 것 import java.util.*; class Solution { public int solution(String s) { int len = s.length(); int answer=0; int otherCnt=0; Map map = new HashMap(); for(int i=0; i