@[email protected] to Lemmy [email protected]English • 1 year agoI wishi.imgur.commessage-square183fedilinkarrow-up1906
arrow-up1888imageI wishi.imgur.com@[email protected] to Lemmy [email protected]English • 1 year agomessage-square183fedilink
minus-square@[email protected]linkfedilinkEnglish68•edit-21 year agoWow. Amateur hour over here. There’s a much easier way to write this. A case select: select(number){ case 1: return false; case 2: return true; } And so on.
minus-squareroboticalinkfedilink13•edit-21 year agoDon’t forget that you can have fall-through cases, so you can simplify it even further: switch (number) { case 1: case 3: case 5: case 7: case 9: ...
Wow. Amateur hour over here. There’s a much easier way to write this.
A case select:
select(number){ case 1: return false; case 2: return true; }
And so on.
Don’t forget that you can have fall-through cases, so you can simplify it even further:
switch (number) { case 1: case 3: case 5: case 7: case 9: ...
Teach me