Skip to content

[Invidam] Week 08 Solutions #158

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 2 commits into from
Jul 1, 2024
Merged

[Invidam] Week 08 Solutions #158

merged 2 commits into from
Jul 1, 2024

Conversation

Invidam
Copy link
Contributor

@Invidam Invidam commented Jun 30, 2024

저번에 못했던 8주차 문제도 풀어올립니다!

@Invidam Invidam self-assigned this Jun 30, 2024
Copy link
Contributor

@bky373 bky373 left a comment

Choose a reason for hiding this comment

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

고생하셨습니다!


func (this *Trie) Insert(word string) {
if len(word) == 0 {
Copy link
Contributor

Choose a reason for hiding this comment

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

(사소) 요거 잘못 넣어진 것 같습니다

Copy link
Contributor Author

Choose a reason for hiding this comment

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

!! 수정했습니다

: 15f990b

return false
}
visited[i][j] = true
defer func() { visited[i][j] = false }()
Copy link
Contributor

Choose a reason for hiding this comment

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

오.. 방문 정보를 되돌리기 위해 이런 방법을 사용할 수도 있군요 go lang 이나 일부 언어에서만 지원할 것 같은데 java 에서는 없어 새롭게 느껴졌습니다!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

저것 때문에 되려 헷갈리는 경우도 많아 주의하며 사용하는 편이에요~ 리뷰 감사합니다!

@Invidam Invidam merged commit 2d0fcdf into DaleStudy:main Jul 1, 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.

2 participants