13 lines
174 B
Python
Executable File
13 lines
174 B
Python
Executable File
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""Advent of Code 2025
|
|
Day 9
|
|
"""
|
|
|
|
def main():
|
|
print('Advent of Code 2025 - Day 9')
|
|
|
|
if __name__ == '__main__':
|
|
main()
|