You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As rightly pointed out by @rici in this SO post, the expression 4 + 3 not in (7, 8) groups as 4 + (3 not in (7,8)), which produces a nonsense answer 4 + true == 5. This will be fixed in v3.
As rightly pointed out by @rici in this SO post, the expression
4 + 3 not in (7, 8)groups as4 + (3 not in (7,8)), which produces a nonsense answer4 + true == 5. This will be fixed in v3.