Nest all content into snippets
This commit is contained in:
25
snippets/python/s/lcm.md
Normal file
25
snippets/python/s/lcm.md
Normal file
@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Least common multiple
|
||||
type: snippet
|
||||
language: python
|
||||
tags: [math,list]
|
||||
cover: fruit-feast
|
||||
dateModified: 2020-11-02T19:31:15+02:00
|
||||
---
|
||||
|
||||
Returns the least common multiple of a list of numbers.
|
||||
|
||||
- Use `functools.reduce()`, `math.gcd()` and `lcm(x, y) = x * y / gcd(x, y)` over the given list.
|
||||
|
||||
```py
|
||||
from functools import reduce
|
||||
from math import gcd
|
||||
|
||||
def lcm(numbers):
|
||||
return reduce((lambda x, y: int(x * y / gcd(x, y))), numbers)
|
||||
```
|
||||
|
||||
```py
|
||||
lcm([12, 7]) # 84
|
||||
lcm([1, 3, 4, 5]) # 60
|
||||
```
|
||||
Reference in New Issue
Block a user