From e517d2075f87bcf2debe34127e064aa375f10867 Mon Sep 17 00:00:00 2001 From: Celia_Wu <530081999@qq.com> Date: Tue, 27 Aug 2019 21:34:53 -0400 Subject: [PATCH] 2019-08-27 --- ...272\214\347\273\264\345\220\221\351\207\217.py" | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) 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: