(self)
| 10 | self.graph[u - 1].append(v - 1) |
| 11 | |
| 12 | def show(self): |
| 13 | for i in range(self.vertex): |
| 14 | print('%d: '% (i + 1), end=' ') |
| 15 | for j in self.graph[i]: |
| 16 | print('%d-> '% (j + 1), end=' ') |
| 17 | print(' ') |
| 18 | |
| 19 | |
| 20 |
no outgoing calls
no test coverage detected