minus-squareEuphoma@lemmy.mllinkfedilinkEnglisharrow-up83·2 months agoreturn true is correct around half of the time
minus-squareImplyingImplications@lemmy.calinkfedilinkarrow-up42·2 months agoassert IsEven(2) == True assert IsEven(4) == True assert IsEven(6) == True All checks pass. LGTM
minus-squarealiser@lemmy.worldlinkfedilinkarrow-up19·2 months agoreturn Math.random() > 0.5 would also be correct about half the time
minus-squaredeo@lemmy.dbzer0.comlinkfedilinkarrow-up2·2 months agoWouldn’t that only be correct about 25% of the time?
minus-squareRain World: Slugcat Game@lemmy.worldlinkfedilinkEnglisharrow-up0·2 months agofor even, 50% chance of correctness, same for odd.
return true
is correct around half of the time
assert IsEven(2) == True assert IsEven(4) == True assert IsEven(6) == True
All checks pass. LGTM
would also be correct about half the time
Wouldn’t that only be correct about 25% of the time?
for even, 50% chance of correctness, same for odd.