m_f@midwest.socialM to Fun Loops ▶️@midwest.socialEnglish · 2 days ago[R] Stupidest ways people have solved coding interviewsloops.videoexternal-linkmessage-square32fedilinkarrow-up176
arrow-up176external-link[R] Stupidest ways people have solved coding interviewsloops.videom_f@midwest.socialM to Fun Loops ▶️@midwest.socialEnglish · 2 days agomessage-square32fedilink
minus-squareKraiden@kbin.earthlinkfedilinkarrow-up2·1 day agoyou might be able to do it with a bitwise op? My track record tonight is not great so I’m not going to comment. Have a look at @ImplyingImplactions comment for a loopless solution
minus-squareUID_Zero@infosec.publinkfedilinkEnglisharrow-up2·1 day agoBitwise and with 0x1. If result is 0, it’s even. Least significant bit is always 1 for odd numbers.
you might be able to do it with a bitwise op? My track record tonight is not great so I’m not going to comment. Have a look at @ImplyingImplactions comment for a loopless solution
Bitwise and with 0x1. If result is 0, it’s even. Least significant bit is always 1 for odd numbers.