(e1: dict[str, float], e2: dict[str, float])
| 109 | |
| 110 | |
| 111 | def minus(e1: dict[str, float], e2: dict[str, float]) -> dict[str, float]: |
| 112 | return plus(e1, mult(e2, -1)) |
| 113 | |
| 114 | |
| 115 | def div(e1: dict[str, float], e2: dict[str, float]) -> float: |
no test coverage detected