Given a string you need to print the size of the longest possible substring that has exactly k unique characters. If there is no possible substring print -1.
For the string aabacbebebe
and k = 3 the substring will be cbebebe with length 7.
Specifically, there are three unique characters (c, b, and e) and they create a substring of length 7.