반응형
https://leetcode.com/problems/longest-uncommon-subsequence-i/description/
문자열 문제였습니다.
📕 풀이방법
📔 풀이과정
1. 둘이 같다면 -1을 반환합니다.
2. 가장 긴 uncommon subsequence는 바로 a와 b가 다를 때 더 긴 문자열의 길이입니다.
📔 정답 출력 | 반환
경우에 맞게 답을 반환합니다.
📕 Code
📔 C++
class Solution {
public:
int findLUSlength(string a, string b) {
if(a == b) return -1;
return a.size() > b.size() ? a.size() : b.size();
}
};
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.
'Algorithm > String' 카테고리의 다른 글
(C++) - LeetCode (easy) 557. Reverse Words in a String III (0) | 2023.04.19 |
---|---|
(C++) - LeetCode (easy) 541. Reverse String II (0) | 2023.04.16 |
(C++) - LeetCode (easy) 482. License Key Formatting (0) | 2023.03.27 |
(C++) - LeetCode (easy) 459. Repeated Substring Pattern (0) | 2023.03.22 |
(C++) - LeetCode (easy) 434. Number of Segments in a String (0) | 2023.03.14 |