I was asked in an interview : how to convert 0 to 1 and 1 to 0. I answered :
- Simple
ifandswitch - Bit flipping.
Are there any other approach?
|
I was asked in an interview : how to convert 0 to 1 and 1 to 0. I answered :
Are there any other approach?
| |||||||||||||||
feedback
|
|
A few obvious possibilities:
| |||||||||||||||||||||
feedback
|
|
Simple arithmetic:
Actually, there are an infinite number of polynomials that will map 1 to 0 and vice versa. For example:
| ||||
|
feedback
|
|
Lookup table:
And later:
| |||||||||
feedback
|
|
This one isn't the best, but it works:
| |||||||||||||
feedback
|
|
Take a paper clip. Straighten it out. It's a 1. Bend it to meet its ends. It's a 0. To make it a 1, straighten it. | |||||||||
feedback
|
|
Some Trig: COS(PI * N)^2 In python
I can't believe people forgot modulus:
| |||||
|
feedback
|
|
I guess you could do ABS(VAR - 1) but i think your approaches are more elegant | |||
|
feedback
|
|
This should work for any two numbers... (EDIT: looking at the other answers I may have misread the question... but I still like my answer :-)
| |||
|
feedback
|