We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug The getLength function is supposed to strip sequential characters after a run length of 2. e.g. fghijkl should become fg.
fghijkl
fg
However, because it first replaces the sequence asdfghjkl, it changes fghijkl to fgijk, which then becomes 'fgij, a length of 4.
asdfghjkl
fgijk
'fgij
To Reproduce
#14
Expected behavior It should change fghijkl to fg
Screenshots If applicable, add screenshots or console output that helps explain the situation
Environment (please complete the following information):
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
The getLength function is supposed to strip sequential characters after a run length of 2. e.g.
fghijkl
should becomefg
.However, because it first replaces the sequence
asdfghjkl
, it changesfghijkl
tofgijk
, which then becomes'fgij
, a length of 4.To Reproduce
#14
Expected behavior
It should change
fghijkl
tofg
Screenshots
If applicable, add screenshots or console output that helps explain the situation
Environment (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: