Skip to content

Commit

Permalink
Merge pull request #109 from donghoony/patch-3
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
jminkkk authored Aug 5, 2024
2 parents f9fcdeb + a4b48b2 commit d7ff416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion week14/A_28422/donghoony/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## 💡 풀이 방법 요약

`f(x)`: `x` 번째부터 카드를 2, 3장 뽑았을 때 얻을 수 있는 최대 점수
base: `x > N`이거나 전체 카드가 한 장뿐일 때 -> `1`
base: `x > N`이거나 전체 카드가 한 장뿐일 때 -> `0`
step: 만약 `f(x+2), f(x+3)`이 잘 구해준다면, 현재 `위쪽 두 장 XOR + f(x+2)` 혹은 `위쪽 세 장 XOR + f(x+3)` 중 큰 것이 답.

## 👀 실패 이유
Expand Down

0 comments on commit d7ff416

Please sign in to comment.