-
Notifications
You must be signed in to change notification settings - Fork 126
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
[Jay-Mo-99] Week 2 #733
[Jay-Mo-99] Week 2 #733
Conversation
a,b = 1,2 #F(0) = 1, F(1) =2 | ||
for i in range(1,n): | ||
a,b = b, a+b #Update a and b each iteration | ||
#Fn = Fn-1 + Fn-2 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
파이썬의 강점이 잘 활용된것 같아요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
튜플할당 방식을 쓰니까 가독성이 좋네요! 처음 알게돼서 신기하네요 :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2주차 문제풀이 고생 많으셨습니다!
vaild anagram 문제는 혹시 파일 올리는걸 깜빡 하신건지 궁금합니다 :)
3주차도 파이팅입니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
안녕하세요 :) 문제 푸느라 고생하셨습니다! 다른 문제도 어떻게 푸셨을지 궁금하네요
a,b = 1,2 #F(0) = 1, F(1) =2 | ||
for i in range(1,n): | ||
a,b = b, a+b #Update a and b each iteration | ||
#Fn = Fn-1 + Fn-2 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
튜플할당 방식을 쓰니까 가독성이 좋네요! 처음 알게돼서 신기하네요 :)
답안 제출 문제
체크 리스트
In Review
로 설정해주세요.