문제 링크 leetcode.com/problems/consecutive-characters/ Consecutive Characters - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 코드 class Solution { fun maxPower(s: String): Int { var maxResult = 0 val charArray = s.toCharArray() val charArraySize = s.toCharArray().size for (i in 0 unt..