mirror of
https://github.com/Xevion/exercism.git
synced 2025-12-06 09:14:59 -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)) |