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...