restructure zeta/** to storage/zeta/**
This commit is contained in:
15
storage/zeta/py/12100.py
Normal file
15
storage/zeta/py/12100.py
Normal file
@@ -0,0 +1,15 @@
|
||||
import sys
|
||||
|
||||
input = sys.stdin.readline
|
||||
|
||||
class Pane2048:
|
||||
def __init__(self, N: int, pane: list[list[int]]):
|
||||
self.N = N
|
||||
self.pane = pane
|
||||
|
||||
@staticmethod
|
||||
def move(direction: int, N: int, pane: list[list[int]]):
|
||||
pass
|
||||
|
||||
if __name__ == '__main__':
|
||||
pass
|
||||
Reference in New Issue
Block a user