<p>Given two strings <code>a</code> and <code>b</code>, return <em>the length of the <strong>longest uncommon subsequence</strong> between </em><code>a</code><em>and</em><code>b</code>. <em>If no such uncommon subsequence exists, return</em><code>-1</code><em>.</em></p>
<p>An <strong>uncommon subsequence</strong> between two strings is a string that is a <strong><spandata-keyword="subsequence-string">subsequence</span> of exactly one of them</strong>.</p>
<strong>Input:</strong> a = "aba", b = "cdc"
<strong>Output:</strong> 3
<strong>Explanation:</strong> One longest uncommon subsequence is "aba" because "aba" is a subsequence of "aba" but not "cdc".
Note that "cdc" is also a longest uncommon subsequence.
<strong>Explanation:</strong> Every subsequence of string a is also a subsequence of string b. Similarly, every subsequence of string b is also a subsequence of string a. So the answer would be <code>-1</code>.