Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
1
def
product(a, b):
2
# Handle negative values
3
if
b < 0:
4
return
-product(a, -b)
Callers
nothing calls this directly
Calls
1
product
Function · 0.85
Tested by
no test coverage detected