(set1: set[Any], set2: set[Any])
| 29 | |
| 30 | |
| 31 | def intersect1(set1: set[Any], set2: set[Any]) -> Any: |
| 32 | for x in set1: |
| 33 | if x in set2: |
| 34 | return x |
| 35 | return None |
| 36 | |
| 37 | |
| 38 | def diff_point(l: gm.Line, a: gm.Point) -> gm.Point: |
no outgoing calls
no test coverage detected