(arr, lone_char_count, total_empty_slots)
| 39 | |
| 40 | |
| 41 | def resize(arr, lone_char_count, total_empty_slots): |
| 42 | if total_empty_slots < lone_char_count: |
| 43 | arr += [''] * (lone_char_count - total_empty_slots) |
| 44 | return arr |
| 45 | |
| 46 | |
| 47 | def right_shift_empty_slots(arr): |
no outgoing calls
no test coverage detected