LeetCodeLongest Uncommon Subsequence ILongest Uncommon Subsequence IEasyStringSolution export function findLUSlength(a: string, b: string): number { return a === b ? -1 : Math.max(a.length, b.length); }LeetCodeLongest Uncommon Subsequence Ihttps://leetcode.com/problems/longest-uncommon-subsequence-i