(e: dict[str, float], m: float)
| 105 | |
| 106 | |
| 107 | def mult(e: dict[str, float], m: float) -> dict[str, float]: |
| 108 | return {v: m * c for v, c in e.items()} |
| 109 | |
| 110 | |
| 111 | def minus(e1: dict[str, float], e2: dict[str, float]) -> dict[str, float]: |
no outgoing calls
no test coverage detected