(args)
| 150 | |
| 151 | # 12. least common multiple |
| 152 | def lcm_(args): |
| 153 | res = args[0] |
| 154 | for arg in args[1:]: |
| 155 | res = res * arg // math.gcd(res, arg) |
| 156 | return normalize(res) |
| 157 | |
| 158 | # 13. remainder |
| 159 | def remainder_(args): |
nothing calls this directly
no test coverage detected