Medium
Find Kth Character in Expanded String — Python
Full explanation · Time O(n) · Space O(1)
# Time: O(n)
# Space: O(1)
# string
class Solution(object):
def kthCharacter(self, s, k):
"""
:type s: str
:type k: int
:rtype: str
"""
l = 0
for i in xrange(len(s)):
if s[i] == ' ':
l = 0
k -= 1
else:
l += 1
k -= l
if k < 0:
break
return s[i]