예제 #1
0
 def solution(self):
     assert spiral_steps(square=personal_input) == "???"
예제 #2
0
 def far(self):
     assert spiral_steps(square=1024) == 31
예제 #3
0
 def near(self):
     assert spiral_steps(square=12) == 3
예제 #4
0
 def nearish(self):
     assert spiral_steps(square=23) == 2
예제 #5
0
 def base(self):
     assert spiral_steps(square=1) == 0