mirror of
https://github.com/Xevion/exercism.git
synced 2025-12-07 13:15:05 -06:00
3 lines
96 B
Python
3 lines
96 B
Python
from datetime import timedelta
|
|
def add(moment):
|
|
return moment + timedelta(seconds=(10 ** 9)) |