For a string such as '12233322155552', by removing the duplicates, I can get '1235'. But what I want to keep is '1232152', only removing the consecutive duplicates.
Thank you for your help in advance.
|
For a string such as '12233322155552', by removing the duplicates, I can get '1235'. But what I want to keep is '1232152', only removing the consecutive duplicates. Thank you for your help in advance. |
||||
|
|
|
Microsoft / Amazon job interview type of question: This is the pseudocode, the actual code is left as exercise.
As a more high level, try (not actually the implementation):
|
|||||
|
|
Hint: the itertools module is super-useful. One function in particular, itertools.groupby, might come in really handy here:
So since strings are iterable, what you could do is:
which can all be done in one clean line.. |
|||
|
|
|
+1 for groupby. Off the cuff, something like:
Cooks for me in Python 2.7.2 |
|||||
|
|
I feel answering pseudocode is not really helpful when the question is tagged python... First of all, you can't remove anything from a string in python (google "pyhton immutable string" if this is not clear). my first approach would be:
or, using the itertools hint from above:
|
|||
|
|
You can get final output as |
||||
|
|