Skip to content

3304-find-the-k-th-character-in-string-game-i

DevGod
DevGod
Elf Vtuber
class Solution{
public char kthCharacter(int k) {
return (char)('a' + Integer.bitCount(k - 1));
}
}