Backtracking greedy처럼 일련의 집합을 만들어 하나씩 답에 만족시키는 것을 만든다. greedy와 다르게, 조건에 맞지 않는다면 번복할 수 있다. 되돌아갈 수 있다. - used to solve problems in which a sequence of objects is chosen from a specified set so that the sequence satisfies some criterion. - after each choice has been made and added to a partial solution, it can be retracted from the solution set later by backtracking 5.1 The Backtracking Technique N..