8 lines
No EOL
286 B
Python
8 lines
No EOL
286 B
Python
if __name__ == '__main__':
|
|
# https://github.com/s-prechtl/AdventOfCode/tree/master/2022/Day10
|
|
user = "s-prechtl"
|
|
repo = "AdventOfCode"
|
|
branch = "master"
|
|
year = 2022
|
|
day = input("Day: ")
|
|
print(f"https://github.com/{user}/{repo}/tree/{branch}/{year}/Day{day}") |