Bit Manipulation Math Recursion Simulation 3304. Find the K-th Character in String Game I¶ Time: $O(\log k)$ Space: $O(1)$ C++JavaPython 1 2 3 4 5 6class Solution { public: char kthCharacter(unsigned k) { return 'a' + popcount(k - 1); } }; 1 2 3 4 5class Solution { public char kthCharacter(int k) { return (char) ('a' + Integer.bitCount(k - 1)); } } 1 2 3class Solution: def kthCharacter(self, k: int) -> str: return string.ascii_lowercase[(k - 1).bit_count()]