Take K of Each Character From Left and Right — LeetCode 2516 Python Solution
- Problem
- #2516
- Pattern
- Sliding Window
- Reading time
- 3 min
- Source
- leetcode.com
The problem
You are given a string s consisting of the characters 'a', 'b', and 'c' and a non-negative integer k. Each minute, you may take either the leftmost character of s, or the rightmost character of s.
Example
- Input
- s = "aabaaaacaabc", k = 2
- Output
- 8
- Explanation
- Take three characters from the left of s. You now have two 'a' characters, and one 'b' character.
Python solution
class Solution:
def takeCharacters(self, s: str, k: int) -> int:
cnt = Counter(s)
if any(cnt[c] < k for c in "abc"):
return -1
mx = j = 0
for i, c in enumerate(s):
cnt[c] -= 1
while cnt[c] < k:
cnt[s[j]] += 1
j += 1
mx = max(mx, i - j + 1)
return len(s) - mxComplexity
| Measure | Complexity |
|---|---|
| Time | O(n), where n is the length of string s |
| Space | O(1) auxiliary |
Pattern: Sliding Window
Collapse a nested loop over every subarray into a single pass with two indices. LeetCode 2516. Take K of Each Character From Left and Right is filed here because LeetCode tags it Sliding Window, which is the vocabulary this hub collects.
The sliding window guide has the Python template for the pattern and the 116 LeetCode problems that use it.
Related problems
Frequently asked questions
- How hard is LeetCode 2516. Take K of Each Character From Left and Right?
- LeetCode 2516. Take K of Each Character From Left and Right is rated Medium on LeetCode.
- What is the time complexity of LeetCode 2516. Take K of Each Character From Left and Right?
- The Python solution on this page runs in O(n), where n is the length of string s.
- What is the space complexity of LeetCode 2516. Take K of Each Character From Left and Right?
- The Python solution on this page uses O(1) auxiliary space.
- What topics does LeetCode 2516. Take K of Each Character From Left and Right cover?
- LeetCode 2516. Take K of Each Character From Left and Right is tagged Hash Table, String and Sliding Window on LeetCode.