-
Notifications
You must be signed in to change notification settings - Fork 1
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
[Week10] String - 채연 #70
base: main
Are you sure you want to change the base?
Conversation
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.
회문 빼고는 저랑 풀이가 거의 똑같더라구요! 채연님도 이코테 보고 공부하셨나 싶었어요 ㅎㅎ 10주차까지 고생하셨습니다 ✨
left += 1 | ||
right -= 1 | ||
else: | ||
check_left = is_pseudo(words, left + 1, right) |
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.
오 이 코드 되게 깔끔해보여요!
|
||
while True: | ||
st = input().rstrip() | ||
if not st: # 입력받은게 없다면 |
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.
이런 식으로 종료할 수도 있군요!
|
||
words_list = [input().rstrip() for _ in range(5)] | ||
result = [] | ||
for i in range(15): |
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.
애초에 15개로 반복문 돌리는 것도 이해하기 좋은 것 같아요! 수고하셨습니다~
No description provided.