Home
YUHAπŸ‘©πŸ»β€πŸ’»
Cancel

[Algorithm] Brute-force Search 2

Brute-force Search Task Previous task 2. μ†Œμˆ˜ μ°ΎκΈ° in Programmers (Level 2) πŸ“Œ Problem https://programmers.co.kr/learn/courses/30/lessons/42839 πŸ“Œ The point Use backtracking (dfs -> recursion) πŸ“Œ ...

[Algorithm] Brute-force Search

Brute-force Search enumerate all possible candidates for the solution and check whether each candidate satisfies the problem's statement. It is often used with BFS / DFS Task 1. νƒ€κ²Ÿ λ„˜λ²„ in Progra...

[Diary] Today's diary

I can say that this year, 2021 is the hardest year I’m doing my best everyday in my life. I slept only 4 hours everyday from march, 2021. But, I can’t sure I can get what I want. As time goes by, ...

[Algorithm] Stack

Stack Explain Task πŸ“Œ Previous task Queue task 1 Queue task 2 Queue task 3 1. 주식가격 in Programmers (Level 2) πŸ“Œ Problem https://programmers.co.kr/learn/courses/30/lessons/42584 πŸ“Œ The point Used...

[Algorithm] Queue3

Queue Explain Task Previous task 1 Previous task 2 πŸ“Œ 3. 닀리λ₯Ό μ§€λ‚˜λŠ” 트럭 in Programmers (Level 2) ⭐️ The point Used while loop and break πŸ“Œ Answer import java.util.Queue; import java.util.LinkedL...