Spaces:
Sleeping
Sleeping
File size: 181 Bytes
d8c02ee |
1 2 3 4 5 6 |
def round_up_to_multiple(x: int, multiple: int) -> int:
return ((x + multiple - 1) // multiple) * multiple
if __name__ == '__main__':
print('__main__ not supported in modules.')
|