-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Strings Compression #34
Comments
I would like to work on this issue. |
PROCESS OF CONTRIBUTION IN THIS REPOSITORY FORK THIS REPOSITORY HAPPY CODING AND CONTRIBUTING!!!! |
Please check my PRs for other issues. |
I would like to Work on this |
I would like to work on this issue during the Hacktoberfest. |
ok i am assigning it to u |
Thank you! |
I would like to solve this! |
Hey, could you assign me this? I would like to work on this |
Strings Compression Solution (fixed Issue #34)
I would like to contribute to this project.Please assign me this project.I will complete this project in just one day by using comments,appropriate variable names and in most efficient way.Greatly looking ahead to work with you. |
Take as input S, a string. Write a function that does basic string compression. Print the value returned. E.g. for input “aaabbccds” print out a3b2c2d1s1.
Input Format
A single String S
Constraints
1 < = length of String < = 1000
Output Format
The compressed String.
Sample Input
aaabbccds
Sample Output
a3b2c2d1s1
Explanation
In the given sample test case 'a' is repeated 3 times consecutively, 'b' is repeated twice, 'c' is repeated twice and 'd and 's' occurred only once.
The text was updated successfully, but these errors were encountered: