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:
Convert:
"zbax" ➝ "(26)(2)(1)(24)" ➝ "262124" ➝ 262124
Transform #1:
262124 ➝ 2 + 6 + 2 + 1 + 2 + 4 ➝ 17
Transform #2:
17 ➝ 1 + 7 ➝ 8
Return the resulting integer after performing the operations described above.
Example 1:
Example 2:
Example 3:
Constraints:
1 <= s.length <= 100
1 <= k <= 10
s
consists of lowercase English letters.
解題
Runtime: 0 ms, faster than 100%
Memory Usage: 2.9 MB, less than 29.17%
Last updated