(lines: string[])
| 1114 | } |
| 1115 | |
| 1116 | private collectKittyImageIds(lines: string[]): Set<number> { |
| 1117 | const ids = new Set<number>(); |
| 1118 | for (const line of lines) { |
| 1119 | for (const id of extractKittyImageIds(line)) { |
| 1120 | ids.add(id); |
| 1121 | } |
| 1122 | } |
| 1123 | return ids; |
| 1124 | } |
| 1125 | |
| 1126 | private deleteKittyImages(ids: Iterable<number>): string { |
| 1127 | let buffer = ""; |
no test coverage detected