-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm251.py
51 lines (35 loc) · 1.19 KB
/
m251.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
class Vector2D:
currentPos = 0
currentVec = 0
vec = [[]]
def __init__(self, vec: List[List[int]]):
self.vec = vec
for i in range(0, len(vec)):
if (len(self.vec[i]) > 0):
self.currentVec = i
return
self.currentPos = -1
self.currentVec = -1
def next(self) -> int:
pos = self.currentPos
vec = self.currentVec
self.findNext()
return self.vec[vec][pos]
def hasNext(self) -> bool:
return not (self.currentPos == -1 and self.currentVec == -1)
def findNext(self):
if (self.currentPos < len(self.vec[self.currentVec]) - 1) :
self.currentPos += 1
return
self.currentVec += 1
self.currentPos = 0
# find new vector position
while (self.currentVec < len(self.vec) and len(self.vec[self.currentVec]) == 0) :
self.currentVec += 1
if (not self.currentVec < len(self.vec)) :
self.currentPos = -1
self.currentVec = -1
# Your Vector2D object will be instantiated and called as such:
# obj = Vector2D(vec)
# param_1 = obj.next()
# param_2 = obj.hasNext()