1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-20 01:56:57 +02:00
LeetCode/cpp/find-smallest-letter-greater-than-target.cpp

22 lines
593 B
C++
Raw Normal View History

#include <algorithm>
#include <cassert>
#include <vector>
class Solution {
public:
char nextGreatestLetter(const std::vector<char> &letters, char target) {
auto it = std::lower_bound(letters.begin(), letters.end(), target + 1);
return it == letters.end() ? letters.front() : *it;
}
};
int main() {
Solution s;
assert((s.nextGreatestLetter(std::vector{'c', 'f', 'j'}, 'a') == 'c'));
assert((s.nextGreatestLetter(std::vector{'c', 'f', 'j'}, 'c') == 'f'));
assert((s.nextGreatestLetter(std::vector{'x', 'x', 'y', 'y'}, 'z') == 'x'));
return 0;
}