diff --git a/Daily/Longest_k_unique_char.cpp b/Daily/Longest_k_unique_char.cpp index a79c63b..95784ef 100644 --- a/Daily/Longest_k_unique_char.cpp +++ b/Daily/Longest_k_unique_char.cpp @@ -3,7 +3,6 @@ Given a string you need to print the size of the longest possible substring that If there is no possible substring then print -1. - Example 1: Input: S = "aabacbebebe", K = 3