-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext_greater_letter.py
50 lines (36 loc) · 1.47 KB
/
next_greater_letter.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# You are given an array of characters letters that is sorted in non-decreasing order,
# and a character target. There are at least two different characters in letters.
# Return the smallest character in letters that is lexicographically greater than target.
# If such a character does not exist, return the first character in letters.
# Example 1:
# Input: letters = ["c","f","j"], target = "a"
# Output: "c"
# Explanation: The smallest character that is lexicographically greater than 'a' in letters is 'c'.
# Example 2:
# Input: letters = ["c","f","j"], target = "c"
# Output: "f"
# Explanation: The smallest character that is lexicographically greater than 'c' in letters is 'f'.
# Example 3:
# Input: letters = ["x","x","y","y"], target = "z"
# Output: "x"
# Explanation: There are no characters in letters that is lexicographically greater than 'z' so we
# return letters[0].
# Constraints:
# 2 <= letters.length <= 104
# letters[i] is a lowercase English letter.
# letters is sorted in non-decreasing order.
# letters contains at least two different characters.
# target is a lowercase English letter.
class Solution:
def nextGreatestLetter(self, letters: List[str], target: str) -> str: #type:ignore
l = 0
r = len(letters) - 1
ans = letters[0]
while l <= r:
m = (l + r) >> 1
if letters[m] > target:
ans = letters[m]
r = m - 1
else:
l = m + 1
return ans