-
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
[thispath98] Week 3 #778
[thispath98] Week 3 #778
Conversation
""" | ||
answer = 0 | ||
for i, bit in enumerate(bin(n)[2:][::-1]): | ||
answer += int(bit) * 2 ** (31 - i) |
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.
본 피드백을 반영하지 않으셔도 PR 승인에는 영향이 없다라는 말씀입니다. "자율"적인 스터디 문화 장려를 위해서 @thispath98 님께 선택 권한을 드리려는 것 같습니다. (참고: 스터디 원칙)
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
로 설정해주세요.