leetcode521】的更多相关文章

Given a group of two strings, you need to find the longest uncommon subsequence of this group of two strings. The longest uncommon subsequence is defined as the longest subsequence of one of these strings and this subsequence should not be any subseq…
public class Solution { public int FindLUSlength(string a, string b) { : Math.Max(a.Length, b.Length); } } https://leetcode.com/problems/longest-uncommon-subsequence-i/#/description…