hwayne/learntla-v2

Error in definition of IsComposite

Closed this issue · 2 comments

The definition of IsComposite in the Quantifiers section of Writing an Invariant is:

IsComposite(num) ==
\E m, n \in 2..Len(num):
m * n = num

I believe it should be:

IsComposite(num) ==
\E m, n \in 2..num:
m * n = num

It should

Pushing fix now