Skip to content

28번문제. 해시맵 디자인 #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
bjy3392 opened this issue Aug 20, 2020 · 1 comment
Closed

28번문제. 해시맵 디자인 #18

bjy3392 opened this issue Aug 20, 2020 · 1 comment

Comments

@bjy3392
Copy link

bjy3392 commented Aug 20, 2020

깃허브에 올라와 있는 28번 해시맵 디자인의 풀이코드에 ListNode정의하는 부분이 잘못 올라 온 것같습니다.
class ListNode:
def init(self, x):
self.val = x
self.next = None

책내용>>
class ListNode:
def init(self, key=None, value=None):
self.key = key
self.value = value
self.next = None

@likejazz
Copy link
Collaborator

안녕하세요.
알려주셔서 감사합니다. 말씀하신대로 깃헙에서 ListNode는 알려주신 내용이 맞습니다.
해당 코드 반영하겠습니다.

likejazz added a commit that referenced this issue Aug 20, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants