82d1f426e346daaae642abb2d50af8b9e14b6b4d
ctf/IERAE CTF 2024 writeup.md
| ... | ... | @@ -66,7 +66,7 @@ def is_derangement(perm, original): |
| 66 | 66 | return all(p != o for p, o in zip(perm, original)) |
| 67 | 67 | ``` |
| 68 | 68 | によって、`deranged`のi文字目と`magic_word`のi文字目と一致しない。 |
| 69 | -つまり、1度でも出現した文字は除外することができる。 |
|
| 69 | +つまり、`deranged`に1度でも出現した文字は除外することができる。 |
|
| 70 | 70 | |
| 71 | 71 | - `candidate_char_set`: ヒント文字列で出現した全ての文字の集合 |
| 72 | 72 | - `appeared_char_set_dict[i]`: ヒント文字列のi文字目に出現した全ての文字の集合 |