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.
🎈boj 2467 - 용액
🗨 해결방법 :
투포인터를 사용하여 구현하였습니다.
📝메모 :
코드를 너무 지저분하게 쓴 것 같다. 리팩토링을 하고 좀 더 최적화를 해야겠다.
✔코드 :
🎈boj 16120 - PPAP
🗨 해결방법 :
문자열을 하나씩 스택에 넣으며 PPAP를 탐색하면 해당 문자열을 스택에서 pop하고 p를 push하여 ppap 문자열을 만들었습니다.
📝메모 :
스택을 사용하지 않고 구현해보자.
✔코드 :