Skip to content
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

1주차 Assignment - 이예은 #6

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

eunxeum
Copy link

@eunxeum eunxeum commented Mar 31, 2024

Description

<!— 구현 및 작업 내용을 적어주세요 —>

  • java기초와 관련된 백준 문제 풀어보기
  • Test1 풀어보기

Important content

<!— 주의 깊게 봐줬으면 하는 부분을 적어주세요 —>

  • 없습니다.

Question

<!— 궁금한 점을 적어주세요 —>

  • 제가 작성한 코드가 알아보기 쉽게 작성 되었는지 궁금합니다.
  • 백준 2438번 문제에서 왼쪽에 공백을 넣어서 출력하는 형식으로 코드를 작성했는데 출력할 때 오른쪽으로 정렬되게 코드를 작성하는 방법이 있는지 궁금합니다.

Reference

<!— 참고한 레퍼런스가 있다면 공유해 주세요 —>

  • 없습니다.

@eunxeum eunxeum changed the title [1주차 Assignment - 이예은] 1주차 Assignment - 이예은 Mar 31, 2024
@djdongjae djdongjae added the ✨ 과제 제출 아기사자가 처음 제출한 상태를 말합니다. label Apr 1, 2024
Copy link

@Rommmu Rommmu left a comment

Choose a reason for hiding this comment

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

과제 통과
주석으로 코드에 대한 설명을 달며 코딩하신 걸 보니 전반적으로 알고리즘에 대해 차근차근 생각하며 작성하신 코드인 것 같습니다. 지금은 입력을 위해 멋사에서 배운 Scanner 클래스를 주요 사용하신 것 같은데, 추후 알고리즘 공부를 하실 때는 BufferedReader를 사용하시는 것이 더욱 효율적일 때가 많습니다! 나중에 공부하시며 기회가 되신다면 오늘 풀어본 문제들을 BufferedReader를 사용해 발전시켜 보시는 것도 좋을 것 같아요 ✨

Comment on lines +14 to +20
if(M < 0) {
H -= 1;
M += 60;
}

if(H < 0)
H = 23;
Copy link

Choose a reason for hiding this comment

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

피드백
조금 더 효율적인 알고리즘을 고민해보는게 좋을 것 같아요

Copy link
Author

Choose a reason for hiding this comment

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

피드백 확인했습니다 ! 감사합니다 :)

@Rommmu Rommmu added ✅ 과제 통과 조지미에게 확인을 받은 후의 상태입니다. and removed ✨ 과제 제출 아기사자가 처음 제출한 상태를 말합니다. labels Apr 1, 2024

for(int i = 1; i <= N; i++) {
for(int k = 1; k <= N-i; k++) {
System.out.print(" "); // 왼쪽에 공백 넣기
Copy link
Contributor

@giwoong01 giwoong01 Apr 1, 2024

Choose a reason for hiding this comment

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

왼쪽에 공백이 없으면 오른쪽으로 정렬되게 출력 안됩니다!

Copy link
Author

Choose a reason for hiding this comment

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

아하 ! 감사합니다 !!

@giwoong01 giwoong01 closed this Jul 9, 2024
@giwoong01 giwoong01 reopened this Jul 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✅ 과제 통과 조지미에게 확인을 받은 후의 상태입니다.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants