Given two strings, find the number of common characters between them.
- For
s1 = "aabcc"
ands2 = "adcaa"
, the output should becommonCharacterCount(s1, s2) = 3
.
-
[execution time limit] 5 seconds (ts)
-
[input] string
s1
- A string consisting of lowercase English letters.
- Guaranteed constraints:
$1 \le s1.length \le 15$
-
[input] string
s2
- A string consisting of lowercase English letters.
- Guaranteed constraints:
$1 \le s2.length \le 15$
-
[output] integer