(s)
| 159 | |
| 160 | |
| 161 | def remove_single_dollar(s): |
| 162 | if s.startswith("$") and s.endswith("$"): |
| 163 | s = s[1:-1] |
| 164 | return s |
| 165 | |
| 166 | def math_is_equiv(grt: Union[str, list[str]], prd: str): |
| 167 | prd = remove_single_dollar(prd) |
no outgoing calls
no test coverage detected