Skip to content

[bky373] Solutions for week 1 #27

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

Merged
merged 1 commit into from
Apr 29, 2024
Merged

[bky373] Solutions for week 1 #27

merged 1 commit into from
Apr 29, 2024

Conversation

bky373
Copy link
Contributor

@bky373 bky373 commented Apr 27, 2024

Java 를 사용하여 1주차 문제 풀이를 진행하였습니다.

  • 1. Two Sum
  • 121. Best Time to Buy and Sell Stock
  • 125. Valid Palindrome
  • 242. Valid Anagram
  • 217. Contains Duplicate

@bky373 bky373 force-pushed the main branch 2 times, most recently from 67f369b to d1dbcb3 Compare April 27, 2024 01:20

public boolean isAlpNum(char c) {
return ('0' <= c && c <= '9') || ('a' <= c && c < 'z');
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'z' 에는 <= 가 아닌 이유가 있을까요?

Copy link
Contributor Author

@bky373 bky373 Apr 27, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

아고 제가 생각 정리한다고 코드를 지우고 재작성했다가 빠뜨렸군요 꼼꼼히 봐주셔서 감사합니다!
수정해서 포스 푸시했습니다!

- 0001. Two Sum
- 0121. Best Time to Buy and Sell Stock
- 0125. Valid Palindrome
- 0217. Contains Duplicate
- 0242. Valid Anagram
@DaleSeo DaleSeo assigned DaleSeo and bky373 and unassigned DaleSeo Apr 27, 2024
@DaleSeo DaleSeo added this to the week1 milestone Apr 28, 2024
@leokim0922 leokim0922 merged commit 414820a into DaleStudy:main Apr 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
No open projects
Status: Done
Development

Successfully merging this pull request may close these issues.

5 participants