| 24 | |
| 25 | } |
| 26 | int main(){ |
| 27 | cin.tie(0)->sync_with_stdio(0); |
| 28 | string s1 ="aaabbccddee"; |
| 29 | cout<< compressString(s1)<<endl; |
| 30 | string s2="abcd"; |
| 31 | cout<< compressString(s2)<<endl; |
| 32 | return 0; |
| 33 | } |
| 34 | |
| 35 |
nothing calls this directly
no test coverage detected