fix: adjust hint text

This commit is contained in:
Jon Eugster
2025-09-23 22:44:17 +02:00
parent 3558f5bfb6
commit 65829e27da
2 changed files with 591 additions and 104 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -33,7 +33,7 @@ Get the simplifier to solve it for you.
$(d + f) + (h + (a + c)) + (g + e + b) = a + b + c + d + e + f + g + h$. -/
Statement (a b c d e f g h : ) :
(d + f) + (h + (a + c)) + (g + e + b) = a + b + c + d + e + f + g + h := by
Hint "Solve this level in one line with `simp only [add_assoc, add_left_comm, add_comm]`"
Hint "Solve this level in one line with `simp only [add_left_comm, add_comm]`"
simp only [add_left_comm, add_comm]
Conclusion