akshitagit / akshitagit/JavaScript

Strings Compression

Open
#17 1 comment 0 reactions 0 assignees View on GitHub
good first issue Hacktoberfest hacktoberfest2020 Javascript Strings
Dominant language
JavaScript
Stars
90
Forks
106
PR merge metrics
No merged PRs in 30d

Description

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.

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.