-
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
[jaejeong1] Week 04 Solutions #415
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.
질문이 하나 있지만 승인하는데는 무리가 없어 보입니다. 수고하셨습니다!
while(!Character.isLetterOrDigit(charLt) && idxLt < s.length() - 1) { | ||
idxLt++; | ||
charLt = s.charAt(idxLt); | ||
} | ||
|
||
// 영문 또는 숫자일때까지 rt-- | ||
while(!Character.isLetterOrDigit(charRt) && idxRt > 0) { | ||
idxRt--; | ||
charRt = s.charAt(idxRt); | ||
} |
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.
고생하셨습니다!
답안 제출 문제
체크 리스트
In Review
로 설정해주세요.