MCPcopy Create free account
hub / github.com/geekcomputers/Python / Multiply.py

File Multiply.py

Multiply.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1def product(a, b):
2 # Handle negative values
3 if b < 0:
4 return -product(a, -b)

Callers

nothing calls this directly

Calls 1

productFunction · 0.85

Tested by

no test coverage detected