3 lines
56 B
Python
3 lines
56 B
Python
|
|
def aligned(v, by):
|
||
|
|
return (v + (by - 1)) / by * by
|