20 lines
302 B
Python
20 lines
302 B
Python
|
import shared
|
||
|
import matrix
|
||
|
from collections import Counter
|
||
|
import numpy as np
|
||
|
|
||
|
|
||
|
def pt1(inp):
|
||
|
pass
|
||
|
def pt1(inp):
|
||
|
pass
|
||
|
|
||
|
def main():
|
||
|
with open(shared.get_fname(7), "r") as f:
|
||
|
inp = [x.rstrip() for x in f.readlines()]
|
||
|
pt1(inp)
|
||
|
#pt2(inp)
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|