| 49 | } |
| 50 | |
| 51 | void swap(Words& words, size_t first, size_t second) |
| 52 | { |
| 53 | auto temp{words[first]}; |
| 54 | words[first] = words[second]; |
| 55 | words[second] = temp; |
| 56 | } |
| 57 | |
| 58 | // Sort strings in ascending sequence |
| 59 | void sort(Words& words) |
no outgoing calls
no test coverage detected