Question
Given a string, write a function to compress it by shortening every sequence of the same character to that character followed by the number of repetitions. If the compressed string is longer than the original, you should return the original string.
eg.
1 2 3 4 |
compress(“a”) = "a" compress(“aaa”) = "a3" compress(“aaabbb”) = "a3b3" compress(“aaabccc”) = "a3b1c3" |
Once you think that you’ve solved the problem, click below to see the solution.
As always, remember that practicing coding interview questions is as much about how you practice as the question itself. Make sure that you give the question a solid go before skipping to the solution. Ideally if you have time, write out the solution first by hand and then only type it into your computer to verify your work once you've verified it manually. To learn more about how to practice, check out this blog post.
Solution
How was that problem? You can check out the solution in the video below.
Here is the source code for the solution shown in the video:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
public String compress(String s) { String out = “”; int sum = 1; for (int i = 0; i < s.length() - 1; i++) { if (s.charAt(i) == s.charAt(i+1)) { sum++; } else { out = out + s.charAt(i) + sum; sum = 1; } } out = out + s.charAt(s.length() - 1) + sum; return out.length() < s.length() ? out : s; } |
Did you get the right answer to this coding interview question? Please share your thoughts in the comments below.