| 4 | class Solution { |
| 5 | public: |
| 6 | void addSpaces(string &str, int count) { |
| 7 | for (int i = 0; i < count; i++) |
| 8 | str.push_back(' '); |
| 9 | } |
| 10 | |
| 11 | vector<string> fullJustify(vector<string>& words, int maxWidth) { |
| 12 | vector<string> ans; |
nothing calls this directly
no outgoing calls
no test coverage detected