[LeetCode] 128. Longest Consecutive Sequence - Java
·
알고리즘/LeetCode
https://leetcode.com/problems/longest-consecutive-sequence/description/ Longest Consecutive Sequence - LeetCode Longest Consecutive Sequence - Given an unsorted array of integers nums, return the length of the longest consecutive elements sequence. You must write an algorithm that runs in O(n) time. Example 1: Input: nums = [100,4,200,1,3,2] Output: 4 Explanati leetcode.com 문제 Given an unsorted ..
[Leetcode] 1143. Longest Common Subsequence - Java
·
알고리즘/LeetCode
https://leetcode.com/problems/longest-common-subsequence/ Longest Common Subsequence - LeetCode Longest Common Subsequence - Given two strings text1 and text2, return the length of their longest common subsequence. If there is no common subsequence, return 0. A subsequence of a string is a new string generated from the original string with some chara leetcode.com 문제 Given two strings text1 and t..
HYOJUN
'LCS' 태그의 글 목록