Skip to content

Commit

Permalink
small fix in P49
Browse files Browse the repository at this point in the history
  • Loading branch information
Seasawher committed Aug 8, 2024
1 parent 47b1915 commit b69863b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/Problem49.lean
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ An n-bit Gray code is a sequence of n-bit strings constructed according to certa
```
n = 1: C(1) = ['0','1'].
n = 2: C(2) = ['00','01','11','10'].
n = 3: C(3) = ['000','001','011','010',´110´,´111´,´101´,´100´].
n = 3: C(3) = ['000','001','011','010','110','111','101','100'].
```
Find out the construction rules and write a predicate with the following specification:
Expand Down

0 comments on commit b69863b

Please sign in to comment.