38. Java의 Leetcode 솔루션

3435 단어 java
class Solution {
  public String countAndSay(int n) {
    StringBuilder sb = new StringBuilder("1");

    while (--n > 0) {
      StringBuilder next = new StringBuilder();
      for (int i = 0; i < sb.length(); ++i) {
        int count = 1;
        while (i + 1 < sb.length() && sb.charAt(i) == sb.charAt(i + 1)) {
          ++count;
          ++i;
        }
        next.append(count).append(sb.charAt(i));
      }
      sb = next;
    }

    return sb.toString();
  }
}



리트코드



도전



문제에 대한 링크는 다음과 같습니다.
https://leetcode.com/problems/count-and-say/

좋은 웹페이지 즐겨찾기