Open
Conversation
yewonniii
approved these changes
Oct 6, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📕 Problem
leetcode_3Sum
📗 Idea & Algorithm
투 포인터를 사용해 합을 계산하며 풀었습니다.
📘 Comment
List<List<>> 타입은 처음이라 변환하는데 힘들었어요 🥲
DFS로 처음에 풀었는데 시간초과나서 구글링 후에 투 포인터를 사용했습니당.
투 포인터가 더 비효울적이라 생각했는데 아닌가봐요 !
—
📕 Problem
프로그래머스_후보키
📗 Idea & Algorithm
비트마스킹과 SET자료형을 사용해 풀었습니다.
📘 Comment
빡코딩으로 구현하다가 중복 유무를 비트마스킹으로 했던게 기억나서 도전했습니다.
비트마스킹을 사용하려고 끙끙거리느라 예상 풀이시간 + 1시간은 된것같지만 세상 뿌듯하네용 ㅎㅎ