(s1: list[int], s2: list[int])
| 2 | import re |
| 3 | |
| 4 | def dist(s1: list[int], s2: list[int]) -> int: |
| 5 | return sum(abs(a-b) for a,b in zip(s1,s2)) |
| 6 | |
| 7 | def pop_constellation(stars: list[list[int]], s: list[int]): |
| 8 | if s not in stars: |
no test coverage detected