Return min turns to print string s with a strange printer (overwrites any contiguous range).
Input: Quoted string.
Output: Integer.
Input: "aaabbb"
Output: 2
Explanation: Print aaa then bbb.Input: "aba"
Output: 2
Explanation: Print aaa then overwrite b.Input: "a"
Output: 1
Explanation: One char.1<=len<=100