Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/pyfa-org/Pyfa
/ lcm
Function
lcm
eos/capSim.py:9–13 ·
view source on GitHub ↗
(a, b)
Source
from the content-addressed store, hash-verified
7
8
9
def
lcm(a, b):
10
n = a * b
11
while
b:
12
a, b = b, a % b
13
return
n / a
14
15
16
class
CapSimulator:
Callers
1
reset
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected