LeetCode in Kotlin

1945. Sum of Digits of String After Convert

Easy

You are given a string s consisting of lowercase English letters, and an integer k.

First, convert s into an integer by replacing each letter with its position in the alphabet (i.e., replace 'a' with 1, 'b' with 2, …, 'z' with 26). Then, transform the integer by replacing it with the sum of its digits. Repeat the transform operation k times in total.

For example, if s = "zbax" and k = 2, then the resulting integer would be 8 by the following operations:

Return the resulting integer after performing the operations described above.

Example 1:

Input: s = “iiii”, k = 1

Output: 36

Explanation: The operations are as follows:

Example 2:

Input: s = “leetcode”, k = 2

Output: 6

Explanation: The operations are as follows:

Example 3:

Input: s = “zbax”, k = 2

Output: 8

Constraints:

Solution

@Suppress("NAME_SHADOWING")
class Solution {
    fun getLucky(s: String, k: Int): Int {
        var k = k
        val list: MutableList<Int> = ArrayList()
        for (c in s.toCharArray()) {
            list.add(c.code - 'a'.code + 1)
        }
        var sum = 0
        for (i in list) {
            if (i >= 10) {
                sum += i / 10
            }
            sum += i % 10
        }
        while (k-- > 1) {
            var newSum = 0
            while (sum != 0) {
                newSum += sum % 10
                sum /= 10
            }
            sum = newSum
        }
        return sum
    }
}