diff --git "a/0251.\345\261\225\345\274\200\344\272\214\347\273\264\345\220\221\351\207\217/0251-\345\261\225\345\274\200\344\272\214\347\273\264\345\220\221\351\207\217.py" "b/0251.\345\261\225\345\274\200\344\272\214\347\273\264\345\220\221\351\207\217/0251-\345\261\225\345\274\200\344\272\214\347\273\264\345\220\221\351\207\217.py" index 8f1de33..0284051 100644 --- "a/0251.\345\261\225\345\274\200\344\272\214\347\273\264\345\220\221\351\207\217/0251-\345\261\225\345\274\200\344\272\214\347\273\264\345\220\221\351\207\217.py" +++ "b/0251.\345\261\225\345\274\200\344\272\214\347\273\264\345\220\221\351\207\217/0251-\345\261\225\345\274\200\344\272\214\347\273\264\345\220\221\351\207\217.py" @@ -5,23 +5,25 @@ def __init__(self, v): :type v: List[List[int]] """ self.list = [] - for item in v: - for num in item: - self.list.append(num) + for nums in v: + for item in nums: + self.list.append(item) self.index = 0 - + def next(self): """ :rtype: int """ self.index += 1 - return self.list[self.index - 1] + return self.list[self.index - 1] + + def hasNext(self): """ :rtype: bool """ - return self.index < len(self.list) + return self.index != len(self.list) # Your Vector2D object will be instantiated and called as such: