fork(1) download
  1. import re
  2.  
  3. input = raw_input()
  4.  
  5. items = []
  6. idx = 0
  7.  
  8. while idx < len(input):
  9. char = input[idx]
  10. pattern = re.compile(r"[^" + char + "]")
  11. match = pattern.search(input, idx)
  12. if match:
  13. items.append( (match.start() - idx, char) )
  14. idx = match.start()
  15. else:
  16. items.append( (len(input) - idx, char) )
  17. break
  18.  
  19. print items
  20.  
  21. bonus = ''
  22. for item in items:
  23. bonus += item[0] * item[1]
  24.  
  25. print bonus
Success #stdin #stdout 0.08s 10928KB
stdin
Heeeeelllllooooo nurse!
stdout
[(1, 'H'), (5, 'e'), (5, 'l'), (5, 'o'), (1, ' '), (1, 'n'), (1, 'u'), (1, 'r'), (1, 's'), (1, 'e'), (1, '!')]
Heeeeelllllooooo nurse!