Skip to content

Commit

Permalink
modify P46
Browse files Browse the repository at this point in the history
  • Loading branch information
Seasawher committed Jul 3, 2024
1 parent 22a4b4c commit 612ad00
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Src/Problem46.lean
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,16 @@


def table (p : Bool → Bool → Bool) : List (List Bool) :=
-- sorry
[
[true, true, p true true],
[true, false, p true false],
[false, true, p false true],
[false, false, p false false]
]
-- sorry

-- The following codes are for test and you should not edit these.

#guard table (fun a b => And a (Or a b)) ==
[
Expand Down

0 comments on commit 612ad00

Please sign in to comment.