Interview question: f(f(n)) == -n - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T19:49:19Zhttp://stackoverflow.com/feeds/question/731832http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/731832/interview-question-ffn-n193Interview question: f(f(n)) == -nHrvoje Prgeša2009-04-08T21:04:18Z2009-11-26T14:25:49Z
<p>A question I got on my last interview:</p>
<blockquote>
<p>Design a function <code>f</code>, such that:</p>
<pre><code>f(f(n)) == -n
</code></pre>
<p>Where <code>n</code> is a 32 bit <strong>signed integer</strong>; you can't use complex numbers arithmetic.</p>
<p>If you can't design such a function for the whole range of numbers, design it for the largest range possible.</p>
</blockquote>
<p>Any ideas?</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/731857#73185725Answer by Daniel Brückner for Interview question: f(f(n)) == -nDaniel Brückner2009-04-08T21:08:21Z2009-11-22T17:05:39Z<p>This is true for all negative numbers.</p>
<pre>
f(n) = abs(n)
</pre>
<p>Because there is one more negative number than there are positive numbers for twos complement integers, <code>f(n) = abs(n)</code> is valid for one more case than <code>f(n) = n > 0 ? -n : n</code> solution that is the same same as <code>f(n) = -abs(n)</code>. Got you by one ... :D</p>
<p><strong>UPDATE</strong></p>
<p>No, it is not valid for one case more as I just recognized by litb's comment ... <code>abs(Int.Min)</code> will just overflow ...</p>
<p>I thought about using mod 2 information, too, but concluded, it does not work ... to early. If done right, it will work for all numbers except <code>Int.Min</code> because this will overflow.</p>
<p><strong>UPDATE</strong></p>
<p>I played with it for a while, looking for a nice bit manipulation trick, but I could not find a nice one-liner, while the mod 2 solution fits in one.</p>
<pre>
f(n) = 2n(abs(n) % 2) - n + sgn(n)
</pre>
<p>In C#, this becomes the following:</p>
<pre><code>public static Int32 f(Int32 n)
{
return 2 * n * (Math.Abs(n) % 2) - n + Math.Sign(n);
}
</code></pre>
<p>To get it working for all values, you have to replace <code>Math.Abs()</code> with <code>(n > 0) ? +n : -n</code> and include the calculation in an <code>unchecked</code> block. Then you get even <code>Int.Min</code> mapped to itself as unchecked negation does.</p>
<p><strong>UPDATE</strong></p>
<p>Inspired by another answer I am going to explain how the function works and how to construct such a function.</p>
<p>Lets start at the very beginning. The function <code>f</code> is repeatedly applied to a given value <code>n</code> yielding a sequence of values.</p>
<pre>
n => f(n) => f(f(n)) => f(f(f(n))) => f(f(f(f(n)))) => ...
</pre>
<p>The question demands <code>f(f(n)) = -n</code>, that is two successive applications of <code>f</code> negate the argument. Two further applications of <code>f</code> - four in total - negate the argument again yielding <code>n</code> again.</p>
<pre>
n => f(n) => -n => f(f(f(n))) => n => f(n) => ...
</pre>
<p>Now there is a obvious cycle of length four. Substituting <code>x = f(n)</code> and noting that the obtained equation <code>f(f(f(n))) = f(f(x)) = -x</code> holds, yields the following.</p>
<pre>
n => x => -n => -x => n => ...
</pre>
<p>So we get a cycle of length four with two numbers and the two numbers negated. If you imagine the cycle as a rectangle, negated values are located at opposite corners.</p>
<p>One of many solution to construct such a cycle is the following starting from n.</p>
<pre>
n => negate and subtract one
-n - 1 = -(n + 1) => add one
-n => negate and add one
n + 1 => subtract one
n
</pre>
<p>A concrete example is of such an cycle is <code>+1 => -2 => -1 => +2 => +1</code>. We are almost done. Noting that the constructed cycle contains an odd positive number, its even successor, and both numbers negate, we can easily partition the integers into many such cycles (<code>2^32</code> is a multiple of four) and have found a function that satisfies the conditions.</p>
<p>But we have a problem with zero. The cycle must contain <code>0 => x => 0</code> because zero is negated to itself. And because the cycle states already <code>0 => x</code> it follows <code>0 => x => 0 => x</code>. This is only a cycle of length two and <code>x</code> is turned into itself after two applications, not into <code>-x</code>. Luckily there is one case that solves the problem. If <code>X</code> equals zero we obtain a cycle of length one containing only zero and we solved that problem concluding that zero is a fixed point of <code>f</code>.</p>
<p>Done? Almost. We have <code>2^32</code> numbers, zero is a fixed point leaving <code>2^32 - 1</code> numbers, and we must partition that number into cycles of four numbers. Bad that <code>2^32 - 1</code> is not a multiple of four - there will remain three numbers not in any cycle of length four.</p>
<p>I will explain the remaining part of the solution using the smaller set of 3 bit signed itegers ranging from <code>-4</code> to <code>+3</code>. We are done with zero. We have one complete cycle <code>+1 => -2 => -1 => +2 => +1</code>. Now let us construct the cycle starting at <code>+3</code>.</p>
<pre>
+3 => -4 => -3 => +4 => +3
</pre>
<p>The problem that arises is that <code>+4</code> is not representable as 3 bit integer. We would obtain <code>+4</code> by negating <code>-3</code> to <code>+3</code> - what is still a valid 3 bit integer - but then adding one to <code>+3</code> (binary <code>011</code>) yields <code>100</code> binary. Interpreted as unsigned integer it is <code>+4</code> but we have to interpret it as signed integer <code>-4</code>. So actually <code>-4</code> for this example or <code>Int.MinValue</code> in the general case is a second fixed point of integer arithmetic negation - <code>0</code> and <code>Int.MinValue</code> are mapped to themselve. So the cycle is actually as follows.</p>
<pre>
+3 => -4 => -3 => -4 => <b>-3</b>
</pre>
<p>It is a cycle of length two and additionally <code>+3</code> enters the cycle via <code>-4</code>. In consequence <code>-4</code> is correctly mapped to itself after two function applications, <code>+3</code> is correctly mapped to <code>-3</code> after two function applications, but <code>-3</code> is erroneously mapped to itself after two function applications.</p>
<p>So we constructed a function that works for all integers but one. Can we do better? No, we cannot. Why? We have to construct cycles of length four and are able to cover the whole integer range up to four values. The remaining values are the two fixed points <code>0</code> and <code>Int.MinValue</code> that must be mapped to themselves and two arbitrary integers <code>x</code> and <code>-x</code> that must be mapped to each other by two function applications.</p>
<p>To map <code>x</code> to <code>-x</code> and vice versa they must form a four cycle and they must be located at opposite corners of that cycle. In consequence <code>0</code> and <code>Int.MinValue</code> have to be at opposite corners, too. This will correctly map <code>x</code> and <code>-x</code> but swap the two fixed points <code>0</code> and <code>Int.MinValue</code> after two function applications and leave us with two failing inputs. So it is not possible to construct a function that works for all values, but we have one that works for all values except one and this is the best we can achieve.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/731860#73186061Answer by Mark Synowiec for Interview question: f(f(n)) == -nMark Synowiec2009-04-08T21:09:02Z2009-08-27T09:32:08Z<p><strong>ORIGINAL ANSWER</strong></p>
<p>for all positive numbers,</p>
<pre><code>f(n)
{
if (n > 0)
{
return -n;
}
return n;
}
</code></pre>
<p><strong>EDIT</strong>
Based off of comments, it seems that users think this answer is absolutely wrong and flagrantly bad. While I would say that it's partial (as i stated above when i originally posted it), considering the question it's both valid and correct. But to give something that is complete here's one that will work for everything except the negative max int or 0x40000000:</p>
<pre><code>int ffx(int x)
{
uint y = 0xC0000000 & (uint)x;
const uint a = 0;
const uint b = 0x40000000;
const uint c = 0x80000000;
const uint d = 0xC0000000;
switch (y)
{
case a:
return x + (int)b;
case b:
return -(x - (int)b);
case c:
return -(x + (int)b);
case d:
return x - (int)b;
}
return 0;
}
</code></pre>
<p>hopefully this will at least satisfy those who believe this answer isn't worth the space it takes up ;)</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/731862#73186227Answer by Joel Coehoorn for Interview question: f(f(n)) == -nJoel Coehoorn2009-04-08T21:09:26Z2009-08-26T20:55:12Z<p>Depending on your platform, some languages allow you to keep state in the function. VB.Net, for example:</p>
<pre><code>Function f(ByVal n As Integer) As Integer
Static flag As Integer = -1
flag *= -1
Return n * flag
End Function
</code></pre>
<p>IIRC, C++ allowed this as well. I suspect they're looking for a different solution though.</p>
<p>Another idea is that since they didn't define the result of the first call to the function you could use odd/evenness to control whether to invert the sign:</p>
<pre><code>int f(int n)
{
int sign = n>=0?1:-1;
if (abs(n)%2 == 0)
return ((abs(n)+1)*sign * -1;
else
return (abs(n)-1)*sign;
}
</code></pre>
<p>Add one to the magnitude of all even numbers, subtract one from the magnitude of all odd numbers. The result of two calls has the same magnitude, but the one call where it's even we swap the sign. There are some cases where this won't work (-1, max or min int), but it works a lot better than anything else suggested so far.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/731867#7318675Answer by llamaoo7 for Interview question: f(f(n)) == -nllamaoo72009-04-08T21:10:17Z2009-04-08T21:10:17Z<p>I could imagine using the 31st bit as an imaginary (<em>i</em>) bit would be an approach that would support half the total range.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/731884#7318844Answer by MartinStettner for Interview question: f(f(n)) == -nMartinStettner2009-04-08T21:13:49Z2009-04-08T21:13:49Z<p>works for n= [0 .. 2^31-1]</p>
<pre><code>int f(int n) {
if (n & (1 << 31)) // highest bit set?
return -(n & ~(1 << 31)); // return negative of original n
else
return n | (1 << 31); // return n with highest bit set
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/731912#731912115Answer by rossfabricant for Interview question: f(f(n)) == -nrossfabricant2009-04-08T21:23:00Z2009-07-28T18:39:08Z<p>This works for any integer or long in Python:</p>
<pre><code>def f(n):
if n == 0: return 0
if n >= 0:
if n % 2 == 1:
return n + 1
else:
return -1 * (n - 1)
else:
if n % 2 == 1:
return n - 1
else:
return -1 * (n + 1)
</code></pre>
<p>Python automatically promotes integers to arbitrary length longs. In other languages the largest positive integer will overflow, so it will work for all integers except that one.</p>
<p><hr /></p>
<p>Similar solution in C# (works for any double, except in overflow situations):</p>
<pre><code>static double F(double n)
{
if (n == 0) return 0;
if (n < 0)
return ((long)Math.Ceiling(n) % 2 == 0) ? (n + 1) : (-1 * (n - 1));
else
return ((long)Math.Floor(n) % 2 == 0) ? (n - 1) : (-1 * (n + 1));
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/731946#73194620Answer by Daniel LeCheminant for Interview question: f(f(n)) == -nDaniel LeCheminant2009-04-08T21:32:25Z2009-04-08T21:40:50Z<p><strong>The question doesn't say anything about what the input type and return value of the function <code>f</code> have to be</strong> (at least not the way you've presented it)... </p>
<p>...just that when n is a 32-bit integer then <code>f(f(n)) = -n</code></p>
<p>So, how about something like</p>
<pre><code>Int64 f(Int64 n)
{
return(n > Int32.MaxValue ?
-(n - 4L * Int32.MaxValue):
n + 4L * Int32.MaxValue);
}
</code></pre>
<p>If n is a 32-bit integer then the statement <code>f(f(n)) == -n</code> will be true.</p>
<p>Obviously, this approach could be extended to work for an even wider range of numbers...</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/731947#7319470Answer by Ben Blank for Interview question: f(f(n)) == -nBen Blank2009-04-08T21:32:25Z2009-04-08T22:09:00Z<p>Doesn't fail on MIN_INT:</p>
<pre><code>int f(n) { return n < 0 ? -abs(n + 1) : -(abs(n) + 1); }
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/731990#731990-1Answer by d03boy for Interview question: f(f(n)) == -nd03boy2009-04-08T21:43:40Z2009-04-08T21:43:40Z<pre><code>f(n) { return -1 * abs(n) }
</code></pre>
<p>How can I handle overflow problems with this? Or am I missing the point?</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/732049#732049129Answer by viraptor for Interview question: f(f(n)) == -nviraptor2009-04-08T21:59:54Z2009-04-08T21:59:54Z<p>You didn't say what kind of language they expected... Here's a static solution (haskell). It's basically messing with the 2 most significant bits:</p>
<pre><code>f :: Int -> Int
f x | (testBit x 30 /= testBit x 31) = negate $ complementBit x 30
| otherwise = complementBit x 30
</code></pre>
<p>It's much easier in a dynamic language (python). Just check if the argument is a number X and return a lambda that returns -X:</p>
<pre><code>def f(x):
if isinstance(x,int):
return (lambda: -x)
else:
return x()
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/732056#73205615Answer by cobbal for Interview question: f(f(n)) == -ncobbal2009-04-08T22:01:15Z2009-04-08T22:19:50Z<p>for javascript (or other dynamically typed languages) you can have the function accept either an int or an object and return the other. i.e.</p>
<pre><code>function f(n) {
if (n.passed) {
return -n.val;
} else {
return {val:n, passed:1};
}
}
</code></pre>
<p>giving</p>
<pre><code>js> f(f(10))
-10
js> f(f(-10))
10
</code></pre>
<p>alternatively you could use overloading in a strongly typed language although that may break the rules ie</p>
<pre><code>int f(long n) {
return n;
}
long f(int n) {
return -n;
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/732082#73208211Answer by Eclipse for Interview question: f(f(n)) == -nEclipse2009-04-08T22:08:50Z2009-04-08T22:28:20Z<p>For all 32-bit values (with the caveat that -0 is -2147483648)</p>
<pre><code>int rotate(int x)
{
static const int split = INT_MAX / 2 + 1;
static const int negativeSplit = INT_MIN / 2 + 1;
if (x == INT_MAX)
return INT_MIN;
if (x == INT_MIN)
return x + 1;
if (x >= split)
return x + 1 - INT_MIN;
if (x >= 0)
return INT_MAX - x;
if (x >= negativeSplit)
return INT_MIN - x + 1;
return split -(negativeSplit - x);
}
</code></pre>
<p>You basically need to pair each -x => x => -x loop with a y => -y => y loop. So I paired up opposite sides of the <code>split</code>. </p>
<p>e.g. For 4 bit integers:</p>
<pre><code>0 => 7 => -8 => -7 => 0
1 => 6 => -1 => -6 => 1
2 => 5 => -2 => -5 => 2
3 => 4 => -3 => -4 => 3
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/732166#7321660Answer by Matt Rogish for Interview question: f(f(n)) == -nMatt Rogish2009-04-08T22:38:12Z2009-04-08T23:40:08Z<p>The problem as stated doesn't require that the function must ONLY accept 32 bit ints, only that n, as given, is a 32-bit int.</p>
<p>Ruby:</p>
<pre><code>def f( n )
return 0 unless n != 0
( n == n.to_i ) ? 1.0 / n : -(n**-1).to_i
end
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/732206#7322061Answer by Rui Craveiro for Interview question: f(f(n)) == -nRui Craveiro2009-04-08T22:51:14Z2009-04-08T22:51:14Z<p>This will work in a very broad range of numbers:</p>
<pre><code> static int f(int n)
{
int lastBit = int.MaxValue;
lastBit++;
int secondLastBit = lastBit >> 1;
int tuple = lastBit | secondLastBit;
if ((n & tuple) == tuple)
return n + lastBit;
if ((n & tuple) == 0)
return n + lastBit;
return -(n + lastBit);
}
</code></pre>
<p>My initial approach was to use the last bit as a check bit to know where we'd be in the first or the second call. Basically, I'd place this bit to 1 after the first call to signal the second call the first had already passed. But, this approach was defeated by negative numbers whose last bit already arrives at 1 during the first call.</p>
<p>The same theory applies to the second last bit for most negative numbers. But, what usually happens is that most of the times, the last and second last bits are the same. Either they are both 1 for negative numbers or they are both 0 for positive numbers.</p>
<p>So my final approach is to check whether they are either both 1 or both 0, meaning that for most cases this is the first call. If the last bit is different from the second last bit, then I assume we are at the second call, and simply re-invert the last bit. Obviously this doesn't work for very big numbers that use those two last bits. But, once again, it works for a very wide range of numbers.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/732224#7322246Answer by Pop Catalin for Interview question: f(f(n)) == -nPop Catalin2009-04-08T22:59:51Z2009-04-08T22:59:51Z<p>C# for a range of 2^32 - 1 numbers, all int32 numbers except (Int32.MinValue)</p>
<pre><code> Func<int, int> f = n =>
n < 0
? (n & (1 << 30)) == (1 << 30) ? (n ^ (1 << 30)) : - (n | (1 << 30))
: (n & (1 << 30)) == (1 << 30) ? -(n ^ (1 << 30)) : (n | (1 << 30));
Console.WriteLine(f(f(Int32.MinValue + 1))); // -2147483648 + 1
for (int i = -3; i <= 3 ; i++)
Console.WriteLine(f(f(i)));
Console.WriteLine(f(f(Int32.MaxValue))); // 2147483647
</code></pre>
<p>prints:</p>
<pre><code>2147483647
3
2
1
0
-1
-2
-3
-2147483647
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/732242#7322423Answer by Drew for Interview question: f(f(n)) == -nDrew2009-04-08T23:12:29Z2009-04-08T23:12:29Z<p>:D</p>
<pre><code>boolean inner = true;
int f(int input) {
if(inner) {
inner = false;
return input;
} else {
inner = true;
return -input;
}
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/732309#7323096Answer by Strilanc for Interview question: f(f(n)) == -nStrilanc2009-04-08T23:45:55Z2009-04-09T00:35:30Z<p>Essentially the function has to divide the available range into cycles of size 4, with -n at the opposite end of n's cycle. However, 0 must be part of a cycle of size 1, because otherwise 0->x->0->x != -x. Because of 0 being alone, there must be 3 other values in our range (whose size is a multiple of 4) not in a proper cycle with 4 elements.</p>
<p>I chose these extra weird values to be MIN_INT, MAX_INT, and MIN_INT+1. Furthermore, MIN_INT+1 will map to MAX_INT correctly, but get stuck there and not map back. I think this is the best compromise, because it has the nice property of only the extreme values not working correctly. Also, it means it would work for <em>all</em> BigInts.</p>
<pre><code>int f(int n):
if n == 0 or n == MIN_INT or n == MAX_INT: return n
return ((Math.abs(n) mod 2) * 2 - 1) * n + Math.sign(n)
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/732344#7323440Answer by Daniel Spiewak for Interview question: f(f(n)) == -nDaniel Spiewak2009-04-09T00:02:49Z2009-04-09T00:02:49Z<p>A bizarre and only slightly-clever solution in Scala using implicit conversions:</p>
<pre><code>sealed trait IntWrapper {
val n: Int
}
case class First(n: Int) extends IntWrapper
case class Second(n: Int) extends IntWrapper
case class Last(n: Int) extends IntWrapper
implicit def int2wrapper(n: Int) = First(n)
implicit def wrapper2int(w: IntWrapper) = w.n
def f(n: IntWrapper) = n match {
case First(x) => Second(x)
case Second(x) => Final(-x)
}
</code></pre>
<p>I don't think that's quite the right idea though.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/732526#7325262Answer by Frank Crook for Interview question: f(f(n)) == -nFrank Crook2009-04-09T02:06:03Z2009-04-09T13:24:25Z<p>In PHP</p>
<pre><code>function f($n) {
if(is_int($n)) {
return (string)$n;
}
else {
return (int)$n * (-1);
}
}</code></pre>
<p>I'm sure you can understand the spirit of this method for other languages. I explicitly casted back to int to make it more clear for people who don't use weakly typed languages. You'd have to overload the function for some languages.</p>
<p>The neat thing about this solution is it works whether you start with a string or an integer, and doesn't visibly change anything when returning f(n).</p>
<p>In my opinion, the interviewer is asking, "does this candidate know how to flag data to be operated on later," and, "does this candidate know how to flag data while least altering it?" You can do this with doubles, strings, or any other data type you feel like casting.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/733415#733415-2Answer by Kristof Neirynck for Interview question: f(f(n)) == -nKristof Neirynck2009-04-09T09:01:04Z2009-04-09T09:01:04Z<p>Seems easy enough.</p>
<pre><code><script type="text/javascript">
function f(n){
if (typeof n === "string") {
return parseInt(n, 10)
}
return (-n).toString(10);
}
alert(f(f(1)));
</script>
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/733474#73347414Answer by Skizz for Interview question: f(f(n)) == -nSkizz2009-04-09T09:21:45Z2009-04-09T09:21:45Z<p>A C++ version, probably bending the rules somewhat but works for all numeric types (floats, ints, doubles) and even class types that overload the unary minus:</p>
<pre><code>template <class T>
struct f_result
{
T value;
};
template <class T>
f_result <T> f (T n)
{
f_result <T> result = {n};
return result;
}
template <class T>
T f (f_result <T> n)
{
return -n.value;
}
void main (void)
{
int n = 45;
cout << "f(f(" << n << ")) = " << f(f(n)) << endl;
float p = 3.14f;
cout << "f(f(" << p << ")) = " << f(f(p)) << endl;
}
</code></pre>
<p>Skizz</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/733515#73351546Answer by Skizz for Interview question: f(f(n)) == -nSkizz2009-04-09T09:37:01Z2009-04-09T09:37:01Z<p>Or, you could abuse the preprocessor:</p>
<pre><code>#define f(n) (f##n)
#define ff(n) -n
void main (void)
{
int n = -42;
cout << "f(f(" << n << ")) = " << f(f(n)) << endl;
}
</code></pre>
<p>Skizz</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/734964#7349648Answer by teeks99 for Interview question: f(f(n)) == -nteeks992009-04-09T16:29:26Z2009-04-09T16:29:26Z<p>Uses globals...but so?</p>
<pre><code>bool done = false
f(int n)
{
int out = n;
if(!done)
{
out = n * -1;
done = true;
}
return out;
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/735018#735018-3Answer by Alex for Interview question: f(f(n)) == -nAlex2009-04-09T16:46:53Z2009-04-09T16:46:53Z<p>How about</p>
<pre><code>int f(int n)
{
return -abs(n);
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/735406#7354063Answer by Mike Meehan for Interview question: f(f(n)) == -nMike Meehan2009-04-09T18:33:19Z2009-04-09T18:33:19Z<pre><code>return x ^ ((x%2) ? 1 : -INT_MAX);
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/735964#73596420Answer by geschema for Interview question: f(f(n)) == -ngeschema2009-04-09T21:18:47Z2009-04-09T21:18:47Z<p>Using complex numbers, you can effectively divide the task of negating a number into two steps: </p>
<ul>
<li>multiply n by i, and you get n*i, which is n rotated 90° counter-clockwise</li>
<li>multiply again by i, and you get -n</li>
</ul>
<p>The great thing is that you don't need any special handling code. Just multiplying by i does the job.</p>
<p>But you're not allowed to use complex numbers. So you have to somehow create your own imaginary axis, using part of your data range. Since you need exactly as much imaginary (intermediate) values as initial values, you are left with only half the data range.</p>
<p>I tried to visualize this on the following figure, assuming signed 8-bit data. You would have to scale this for 32-bit integers. The allowed range for initial n is -64 to +63.
Here's what the function does for positive n:</p>
<ul>
<li>If n is in 0..63 (initial range), the function call adds 64, mapping n to the range 64..127 (intermediate range)</li>
<li>If n is in 64..127 (intermediate range), the function subtracts n from 64, mapping n to the range 0..-63</li>
</ul>
<p>For negative n, the function uses the intermediate range -65..-128.</p>
<p><img src="http://i134.photobucket.com/albums/q94/geschema/interview%5Fquestion.png" alt="alt text" /></p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/736007#736007-1Answer by Judge Maygarden for Interview question: f(f(n)) == -nJudge Maygarden2009-04-09T21:35:37Z2009-04-09T21:43:02Z<p><code>int32_t f(int32_t n) { return -2147483648 == n ? n : n < 0 ? n : -n; }</code></p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/737095#73709530Answer by Comptrol for Interview question: f(f(n)) == -nComptrol2009-04-10T08:55:22Z2009-04-10T08:55:22Z<p>Thanks to overloading in C++ :</p>
<pre><code>double f(int var)
{
return double(var);
}
int f(double var)
{
return -int(var);
}
int main(){
int n(42);
std::cout<<f(f(n));
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/737142#7371429Answer by peSHIr for Interview question: f(f(n)) == -npeSHIr2009-04-10T09:23:07Z2009-04-13T11:19:36Z<p>I'm not actually trying to give a solution to the problem itself, but do have a couple of comments, as the question states this problem was posed was part of a (job?) interview:</p>
<ul>
<li>I would first ask "Why would such a function be needed? What is the bigger problem this is part of?" instead of trying to solve the actual posed problem on the spot. This shows how I think and how I tackle problems like this. Who know? That might even be the actual reason the question is asked in an interview in the first place. If the answer is "Never you mind, assume it's needed, and show me how you would design this function." I would then continue to do so.</li>
<li>Then, I would write the C# test case code I would use (the obvious: loop from <code>int.MinValue</code> to <code>int.MaxValue</code>, and for each <code>n</code> in that range call <code>f(f(n))</code> and checking the result is <code>-n</code>), telling I would then use Test Driven Development to get to such a function.</li>
<li>Only if the interviewer continues asking for me to solve the posed problem would I actually start to try and scribble pseudocode during the interview itself to try and get to some sort of an answer. However, I don't really think I would be jumping to take the job if the interviewer would be any indication of what the company is like...</li>
</ul>
<p>Oh, this answer assumes the interview was for a C# programming related position. Would of course be a silly answer if the interview was for a math related position. ;-)</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/739428#739428-2Answer by nilamo for Interview question: f(f(n)) == -nnilamo2009-04-11T03:04:40Z2009-04-11T03:04:40Z<p>Perhaps cheating? (python)</p>
<pre><code>def f(n):
if isinstance(n, list):
return -n[0]
else:
return [n,0]
n = 4
print f(f(n))
--output--
-4
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/739486#7394861Answer by Mitch for Interview question: f(f(n)) == -nMitch2009-04-11T03:57:28Z2009-04-11T03:57:28Z<p>easy:</p>
<pre><code>function f($n) {
if ($n%2 == 0) return ($n+1)*-1;
else return ($n-1);
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/739510#739510-1Answer by Brian Carper for Interview question: f(f(n)) == -nBrian Carper2009-04-11T04:15:41Z2009-04-11T04:15:41Z<p>Clojure solution:</p>
<pre>(defmacro f [n]
(if (list? n) `(- ~n) n))</pre>
<p>Works on positive and negative integers of any size, doubles, and ratios too!</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/742050#7420503Answer by Christopher Smith for Interview question: f(f(n)) == -nChristopher Smith2009-04-12T16:51:30Z2009-04-12T16:51:30Z<p>Nobody said it had to be stateless.</p>
<pre><code>int32 f(int32 x) {
static bool idempotent = false;
if (!idempotent) {
idempotent = true;
return -x;
} else {
return x;
}
}
</code></pre>
<p>Cheating, but not as much as a lot of the examples. Even more evil would be to peak up the stack to see if your caller's address is &f, but this is going to be more portable (although not thread safe... the thread-safe version would use TLS). Even more evil:</p>
<pre><code>int32 f (int32 x) {
static int32 answer = -x;
return answer;
}
</code></pre>
<p>Of course, neither of these works too well for the case of MIN_INT32, but there is precious little you can do about that unless you are allowed to return a wider type.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/742799#7427990Answer by xcramps for Interview question: f(f(n)) == -nxcramps2009-04-13T01:30:51Z2009-04-13T01:30:51Z<p>In C,</p>
<pre><code>int
f(int n) {
static int r = 0;
if (r == 1) {r--; return -1 * n; };
r++;
return n;
}
</code></pre>
<p>It would have helped to know what language this was for.
Am I missing something? Many "solutions" seem overly complex, and quite frankly, don't
work (as I read the problem).</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/749953#749953-1Answer by paperhorse for Interview question: f(f(n)) == -npaperhorse2009-04-15T01:16:05Z2009-08-24T10:21:38Z<p>I thought the <i>largest range possible</i> was hinting at a modular arithmetic solution. In some modular bases M there is number which when squared is congruent to M-1 (which is congruent to -1). For example if M=13, 5*5=25, 25 mod 13=12 (= -1)<br>
Anyway here's some python code for M=2**32-3.</p>
<pre><code>def f(x):
m=2**32-3;
halfm=m//2;
i_mod_m=1849436465
if abs( x ) >halfm:
raise "too big"
if x<0:
x+=m
x=(i_mod_m*x) % m
if (x>halfm):
x-=m
return x;
</code></pre>
<p>Note there are 3 values it wont work for 2 ** 31-1, -(2 ** 31-1) and -(2 ** 31)</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/750593#750593-1Answer by splicer for Interview question: f(f(n)) == -nsplicer2009-04-15T07:04:06Z2009-04-15T07:04:06Z<p>Here's a C implementation of <em>rossfabricant</em>'s answer. Note that since I stick with 32-bit integers at all times, f( f( 2147483647 ) ) == 2147483647, <strong>not</strong> -2147483647.</p>
<pre><code>int32_t f( int32_t n )
{
if( n == 0 ) return 0;
switch( n & 0x80000001 ) {
case 0x00000000:
return -1 * ( n - 1 );
case 0x00000001:
return n + 1;
case 0x80000000:
return -1 * ( n + 1 );
default:
return n - 1;
}
}
</code></pre>
<p>If you define the problem to allow f() to accept and return int64_t, then 2147483647 is covered. Of course, the literals used in the switch statement would have to be changed.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/750672#7506722Answer by Xander for Interview question: f(f(n)) == -nXander2009-04-15T07:40:09Z2009-04-15T07:40:09Z<p>how about this (C language):</p>
<pre><code>int f(int n)
{
static int t = 1;
return (t = t ? 0 : 1) ? -n : n;
}
</code></pre>
<p>just tried it, and</p>
<pre><code>f(f(1000))
</code></pre>
<p>returns -1000</p>
<pre><code>f(f(-1000))
</code></pre>
<p>returns 1000</p>
<p>is that correct or am i missing the point?</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/759211#7592110Answer by mataap for Interview question: f(f(n)) == -nmataap2009-04-17T06:04:54Z2009-05-21T02:11:39Z<p>Really, these questions are more about seeing the interviewer wrestle with the spec, and the design, error handling, boundary cases and the choice of suitable environment for the solution, etc, more than they are about the actual solution. However: :)</p>
<p>The function here is written around the closed 4 cycle idea. If the function f is only permitted to land only on signed 32bit integers, then the various solutions above will all work except for three of the input range numbers as others have pointed out. minint will never satisfy the functional equation, so we'll raise an exception if that is an input. </p>
<p>Here I am permitting my Python function to operate on and return <em>either</em> tuples <em>or</em> integers. The task spec admits this, it only specifies that two applications of the function should return an object equal to the original object if it is an int32. (I would be asking for more detail about the spec.)</p>
<p>This allows my orbits to be nice and symmetrical, and to cover all of the input integers (except minint). I originally envisaged the cycle to visit half integer values, but I didn't want to get tangled up with rounding errors. Hence the tuple representation. Which is a way of sneaking complex rotations in as tuples, without using the complex arithmetic machinery. </p>
<p>Note that no state needs to be preserved between invocations, but the caller does need to allow the return value to be either a tuple or an int. </p>
<pre><code>def f(x) :
if isinstance(x, tuple) :
# return a number.
if x[0] != 0 :
raise ValueError # make sure the tuple is well formed.
else :
return ( -x[1] )
elif isinstance(x, int ) :
if x == int(-2**31 ):
# This value won't satisfy the functional relation in
# signed 2s complement 32 bit integers.
raise ValueError
else :
# send this integer to a tuple (representing ix)
return( (0,x) )
else :
# not an int or a tuple
raise TypeError
</code></pre>
<p>So applying f to 37 twice gives -37, and vice versa:</p>
<pre><code>>>> x = 37
>>> x = f(x)
>>> x
(0, 37)
>>> x = f(x)
>>> x
-37
>>> x = f(x)
>>> x
(0, -37)
>>> x = f(x)
>>> x
37
</code></pre>
<p>Applying f twice to zero gives zero: </p>
<pre><code>>>> x=0
>>> x = f(x)
>>> x
(0, 0)
>>> x = f(x)
>>> x
0
</code></pre>
<p>And we handle the one case for which the problem has no solution (in int32): </p>
<pre><code>>>> x = int( -2**31 )
>>> x = f(x)
Traceback (most recent call last):
File "<pyshell#110>", line 1, in <module>
x = f(x)
File "<pyshell#33>", line 13, in f
raise ValueError
ValueError
</code></pre>
<p>If you think the function breaks the "no complex arithmetic" rule by mimicking the 90 degree rotations of multiplying by i, we can change that by distorting the rotations. Here the tuples represent half integers, not complex numbers. If you trace the orbits on a number line, you will get nonintersecting loops that satisfy the given functional relation.</p>
<pre><code>f2: n -> (2 abs(n) +1, 2 sign( n) ) if n is int32, and not minint.
f2: (x, y) -> sign(y) * (x-1) /2 (provided y is \pm 2 and x is not more than 2maxint+1
</code></pre>
<p>Exercise: implement this f2 by modifying f. And there are other solutions, e.g. have the intermediate landing points be rational numbers other than half integers. There's a fraction module that might prove useful. You'll need a sign function.</p>
<p>This exercise has really nailed for me the delights of a dynamically typed language. I can't see a solution like this in C.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/768381#7683813Answer by RamyenHead for Interview question: f(f(n)) == -nRamyenHead2009-04-20T14:02:09Z2009-04-20T14:10:58Z<p>I'd like to share my point of view on this interesting problem as a mathematician. I think I have the most efficient solution.</p>
<p>If I remember correctly, you negate a signed 32-bit integer by just flipping the first bit. For example, if n = 1001 1101 1110 1011 1110 0000 1110 1010, then -n = 0001 1101 1110 1011 1110 0000 1110 1010.</p>
<p>So how do we define a function f that takes a signed 32-bit integer and returns another signed 32-bit integer with the property that taking f twice is the same as flipping the first bit?</p>
<p>Let me rephrase the question without mentioning arithmetic concepts like integers.</p>
<p>How do we define a function f that takes a sequence of zeros and ones of length 32 and returns a sequence of zeros and ones of the same length, with the property that taking f twice is the same as flipping the first bit?</p>
<p>Observation: If you can answer the above question for 32 bit case, then you can also answer for 64 bit case, 100 bit case, etc. You just apply f to the first 32 bit.</p>
<p>Now if you can answer the question for 2 bit case, Voila!</p>
<p>And yes it turns out that changing the first 2 bits is enough.</p>
<p>Here's the pseudo-code</p>
<pre><code>1. take n, which is a signed 32-bit integer.
2. swap the first bit and the second bit.
3. flip the first bit.
4. return the result.
</code></pre>
<p>Remark: The step 2 and the step 3 together can be summerised as (a,b) --> (-b, a). Looks familiar? That should remind you of the 90 degree rotation of the plane and the multiplication by the squar root of -1.</p>
<p>If I just presented the pseudo-code alone without the long prelude, it would seem like a rabbit out of the hat, I wanted to explain how I got the solution.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/780475#780475-1Answer by Alex for Interview question: f(f(n)) == -nAlex2009-04-23T06:15:08Z2009-04-23T06:15:08Z<pre><code>int f(int x){
if (x < 0)
return x;
return ~x+1; //two's complement
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/824691#824691-1Answer by pi for Interview question: f(f(n)) == -npi2009-05-05T12:41:27Z2009-05-05T12:41:27Z<p>This one's in Python. Works for all negative values of n:</p>
<pre><code>f = abs
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/824770#8247700Answer by etlerant for Interview question: f(f(n)) == -netlerant2009-05-05T13:07:05Z2009-05-05T13:07:05Z<p>Here's a variant I haven't seen people use. Since this is ruby, the 32-bit integer stuff sort of goes out the window (checks for that can of course be added).</p>
<pre><code>def f(n)
case n
when Integer
proc { n * -1 }
when Proc
n.call
else
raise "Invalid input #{n.class} #{n.inspect}"
end
end
(-10..10).each { |num|
puts "#{num}: #{f(f(num))}"
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/824878#82487821Answer by SurDin for Interview question: f(f(n)) == -nSurDin2009-05-05T13:33:58Z2009-05-05T13:33:58Z<p>Here's a proof of why such a function can't exist, for all numbers, if it doesn't use extra information(except 32bits of int):
f(0)=0, otherwise f(0)=x. f(x)=0 (0=-) => f(f(x))=x</p>
<p>suppose f(y)=x. we want f(x)=-y then. and f(f(x))=-x -> f(-y)=-x. So, we need to divide all integers except 0 into sets of 4, but we have an odd number of such integers, not only that, if we remove the integer that doesn't have a positive counterpart we still have 2(mod4) numbers.
If we remove the 2 maximal numbers left(by abs value), we can get the function:</p>
<pre><code>int sign(int n)
{
if(n>0)
return 1;
else
return -1;
}
int f(int n)
{
if(n==0) return 0;
switch(abs(n)%2)
{
case 1:
return sign(n)*(abs(n)+1);
case 0:
return -sign(n)*(abs(n)-1);
}
}
</code></pre>
<p>Of course another option, is to not comply for 0, and get the 2 numbers we removed as a bonus.(But that's just a silly if)</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/848727#8487271Answer by Ivan for Interview question: f(f(n)) == -nIvan2009-05-11T15:45:28Z2009-05-11T22:21:44Z<p>One way to create many solutions is to notice that if we have a partition of the integers into two sets S and R s.t -S=S, -R=R, and a function g s.t g(R) = S </p>
<p>then we can create f as follows:</p>
<p>if x is in R then f(x) = g(x) </p>
<p>if x is in S then f(x) = -invg(x)</p>
<p>where invg(g(x))=x so invg is the inverse function for g.</p>
<p>The first solution mentioned above is the partition R=even numbers, R= odd numbers, g(x)=x+1.</p>
<p>We could take any two infinite sets T,P s.t T+U= the set of integers and take S=T+(-T), R=U+(-U).</p>
<p>Then -S=S and -R=R by their definitions and we can take g to be any 1-1 correspondence from S to R, which must exist since both sets are infinite and countable, will work. </p>
<p>So this will give us many solutions however not all of course could be programmed as they would not be finitely defined. </p>
<p>An example of one that can be is:</p>
<p>R= numbers divisible by 3 and S= numbers not divisible by 3.</p>
<p>Then we take g(6r) = 3r+1, g(6r+3) = 3r+2.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/848902#8489020Answer by Earwicker for Interview question: f(f(n)) == -nEarwicker2009-05-11T16:25:51Z2009-05-11T16:25:51Z<p>Easy, just make <code>f</code> return something that appears to equal <em>any</em> integer, and is convertable from an integer.</p>
<pre><code>public class Agreeable
{
public static bool operator==(Agreeable c, int n)
{ return true; }
public static bool operator!=(Agreeable c, int n)
{ return false; }
public static implicit operator Agreeable(int n)
{ return new Agreeable(); }
}
class Program
{
public static Agreeable f(Agreeable c)
{ return c; }
static void Main(string[] args)
{
Debug.Assert(f(f(0)) == 0);
Debug.Assert(f(f(5)) == -5);
Debug.Assert(f(f(-5)) == 5);
Debug.Assert(f(f(int.MaxValue)) == -int.MaxValue);
}
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/849062#849062-1Answer by finnw for Interview question: f(f(n)) == -nfinnw2009-05-11T17:08:26Z2009-08-25T22:00:32Z<p>The problem states "32-bit signed integers" but doesn't specify whether they are <a href="http://en.wikipedia.org/wiki/Two%27s%5Fcomplement" rel="nofollow">twos-complement</a> or <a href="http://en.wikipedia.org/wiki/Ones%27%5Fcomplement#Ones.27%5Fcomplement" rel="nofollow">ones-complement</a>.</p>
<p>If you use ones-complement then all 2^32 values occur in cycles of length four - you don't need a special case for zero, and you also don't need conditionals.</p>
<p>In C:</p>
<pre><code>int32_t f(int32_t x)
{
return (((x & 0xFFFFU) << 16) | ((x & 0xFFFF0000U) >> 16)) ^ 0xFFFFU;
}
</code></pre>
<p>This works by</p>
<ol>
<li>Exchanging the high and low 16-bit blocks</li>
<li>Inverting one of the blocks</li>
</ol>
<p>After two passes we have the bitwise inverse of the original value. Which in ones-complement representation is equivalent to negation.</p>
<p>Examples:</p>
<pre><code>Pass | x
-----+-------------------
0 | 00000001 (+1)
1 | 0001FFFF (+131071)
2 | FFFFFFFE (-1)
3 | FFFE0000 (-131071)
4 | 00000001 (+1)
Pass | x
-----+-------------------
0 | 00000000 (+0)
1 | 0000FFFF (+65535)
2 | FFFFFFFF (-0)
3 | FFFF0000 (-65535)
4 | 00000000 (+0)
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/906482#9064820Answer by DraculaW for Interview question: f(f(n)) == -nDraculaW2009-05-25T12:05:12Z2009-05-25T12:05:12Z<pre><code>const unsigned long Magic = 0x8000000;
unsigned long f(unsigned long n)
{
if(n > Magic )
{
return Magic - n;
}
return n + Magic;
}
</code></pre>
<p>0~2^31</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/906685#9066850Answer by Omu for Interview question: f(f(n)) == -nOmu2009-05-25T13:07:28Z2009-08-25T19:55:00Z<pre><code>int j = 0;
void int f(int n)
{
j++;
if(j==2)
{
j = 0;
return -n;
}
return n;
}
</code></pre>
<p>:D</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/906792#9067920Answer by boko for Interview question: f(f(n)) == -nboko2009-05-25T13:43:23Z2009-05-25T13:43:23Z<p>What about following:</p>
<pre><code>int f (int n)
{
static bool pass = false;
pass = !pass;
return pass? n : -n;
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/929867#9298673Answer by mateusza for Interview question: f(f(n)) == -nmateusza2009-05-30T14:56:55Z2009-05-31T14:44:44Z<pre><code>int f( int n ){
return n==0?0:(n&1?n:-n)+(n<0?-1:1);
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/929937#9299371Answer by dlo for Interview question: f(f(n)) == -ndlo2009-05-30T15:27:23Z2009-05-30T15:27:23Z<p>Mine gives the right answer...50% of the time, <em>all the time</em>.</p>
<pre><code>int f(int num) {
if (rand()/(double)RAND_MAX > 0.5)
return ~num + 1;
return num;
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/929940#9299400Answer by joshcomley for Interview question: f(f(n)) == -njoshcomley2009-05-30T15:29:33Z2009-05-30T15:29:33Z<p>This will work for the range -1073741823 to 1073741822:</p>
<pre><code>int F(int n)
{
if(n < 0)
{
if(n > -1073741824)
n = -1073741824 + n;
else n = -(n + 1073741824);
}
else
{
if(n < 1073741823)
n = 1073741823 + n;
else n = -(n - 1073741823);
}
return n;
}
</code></pre>
<p>It works by taking the available range of a 32 bit signed int and dividing it in two. The first iteration of the function places <b>n</b> outside of that range by itself. The second iteration checks if it is outside this range - if so then it puts it back within the range but makes it negative.</p>
<p>It is effectively a way of keeping an extra "bit" of info about the value n.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/931320#9313203Answer by eipipuz for Interview question: f(f(n)) == -neipipuz2009-05-31T04:58:45Z2009-05-31T04:58:45Z<p>I would you change the 2 most significant bits.</p>
<p>00.... => 01.... => 10.....</p>
<p>01.... => 10.... => 11.....</p>
<p>10.... => 11.... => 00.....</p>
<p>11.... => 00.... => 01.....</p>
<p>As you can see, it's just an addition, leaving out the carried bit.</p>
<p>How did I got to the answer? My first thought was just a need for symmetry. 4 turns to get back where I started. At first I thought, that's 2bits Gray code. Then I thought actually standard binary is enough.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/932189#9321890Answer by Henrik Paul for Interview question: f(f(n)) == -nHenrik Paul2009-05-31T15:06:53Z2009-05-31T15:06:53Z<p>PHP, without using a global variable:</p>
<pre><code>function f($num) {
static $mem;
$answer = $num-$mem;
if ($mem == 0) {
$mem = $num*2;
} else {
$mem = 0;
}
return $answer;
}
</code></pre>
<p>Works with integers, floats AND numeric strings!</p>
<p><em>just realized this does some unnecessary work, but, whatever</em></p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/932231#9322310Answer by sebastian for Interview question: f(f(n)) == -nsebastian2009-05-31T15:26:38Z2009-05-31T15:26:38Z<pre><code>void f(int x)
{
Console.WriteLine(string.Format("f(f({0})) == -{0}",x));
}
</code></pre>
<p>Sorry guys... it was too tempting ;)</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/933971#9339710Answer by Viktor Sehr for Interview question: f(f(n)) == -nViktor Sehr2009-06-01T08:29:37Z2009-06-01T08:29:37Z<p>C++ solution;</p>
<pre><code>long long f(int n){return static_cast <long long> (n);}
int f(long long n){return -static_cast <int> (n);}
int n = 777;
assert(f(f(n)) == -n);
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/946969#946969-1Answer by lsc for Interview question: f(f(n)) == -nlsc2009-06-03T20:17:16Z2009-06-03T20:17:16Z<p>Using static variables in C functions to remember previously returned (random) value:</p>
<pre><code>int f(int n) {
int not_n;
static int ori_n;
static int prev_ret;
static int first_call = 1;
if (n == prev_ret && ! first_call) return -ori_n;
ori_n = n;
not_n = rand();
while (not_n == n) not_n = rand();
first_call = 0;
prev_ret = not_n;
return not_n;
}
</code></pre>
<p>This ought to work for any n.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/947208#947208-2Answer by waxwing for Interview question: f(f(n)) == -nwaxwing2009-06-03T20:57:47Z2009-06-03T20:57:47Z<p>Another cheating solution. We use a language that allows operator overloading. Then we have f(x) return something that has overloaded <code>==</code> to always return true. This seems compatible with the problem description, but obviously goes against the spirit of the puzzle.</p>
<p>Ruby example:</p>
<pre><code>class Cheat
def ==(n)
true
end
end
def f(n)
Cheat.new
end
</code></pre>
<p>Which gives us:</p>
<pre><code>>> f(f(1)) == -1
=> true
</code></pre>
<p>but also (not too surprising)</p>
<pre><code>>> f(f(1)) == "hello world"
=> true
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/947360#9473600Answer by Alex for Interview question: f(f(n)) == -nAlex2009-06-03T21:27:29Z2009-08-24T10:18:19Z<pre><code>int f(const int n) {
static int last_n;
if (n == 0)
return 0;
else if (n == last_n)
return -n;
else
{
last_n = n;
return n;
}
}
</code></pre>
<p>Hackish, but correct. </p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/978991#9789910Answer by Hooked for Interview question: f(f(n)) == -nHooked2009-06-11T02:11:12Z2009-06-11T15:59:03Z<p>Isn't remembering your last state a good enough answer?</p>
<pre><code>int f (int n)
{
//if count
static int count = 0;
if (count == 0)
{
count = 1;
return n;
}
if (n == 0)
return 0;
else if (n > 0)
{
count = 0;
return abs(n)*(-1);
}
else
{
count = 0;
return abs(n);
}
}
int main()
{
int n = 42;
std::cout << f(f(n))
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/982304#982304-1Answer by Sam for Interview question: f(f(n)) == -nSam2009-06-11T16:54:36Z2009-06-11T16:54:36Z<p>Assuming f must take and return a 32-bit signed integer and that function state cannot be stored, I'm pretty sure one can prove that it is impossible to cover all values and as a corollary, the maximum coverage is all possible integers in range except for one of them.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1128349#11283491Answer by Graphics Noob for Interview question: f(f(n)) == -nGraphics Noob2009-07-14T22:10:59Z2009-07-14T22:10:59Z<p>Some were similar but just thought I would write down my first idea (in C++)</p>
<pre><code>#include <vector>
vector<int>* f(int n)
{
returnVector = new vector<int>();
returnVector->push_back(n);
return returnVector;
}
int f(vector<int>* n) { return -(n->at(0)); }
</code></pre>
<p>Just using overloading to cause f(f(n)) to actually call two different functions</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1149129#1149129-2Answer by Ates Goral for Interview question: f(f(n)) == -nAtes Goral2009-07-19T02:54:21Z2009-07-19T02:54:21Z<p>JavaScript one-liner:</p>
<pre><code>function f(n) { return ((f.f = !f.f) * 2 - 1) * n; }
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1201092#12010920Answer by Marsh Ray for Interview question: f(f(n)) == -nMarsh Ray2009-07-29T15:25:42Z2009-07-29T15:36:55Z<p>I haven't looked at the other answers yet, I assume the bitwise techniques have been thoroughly discussed.</p>
<p>I thought I'd come up with something evil in C++ that is hopefully not a dupe:</p>
<pre><code>struct ImplicitlyConvertibleToInt
{
operator int () const { return 0; }
};
int f(const ImplicitlyConvertibleToInt &) { return 0; }
ImplicitlyConvertibleToInt f(int & n)
{
n = 0; // The problem specification didn't say n was const
return ImplicitlyConvertibleToInt();
}
</code></pre>
<p>The whole <code>ImplicitlyConvertibleToInt</code> type and overload is necessary because temporaries can't be bound to a non-const reference.</p>
<p>Of course, looking at it now it's undefined whether <code>f(n)</code> is executed before <code>-n</code>.</p>
<p>Perhaps a better solution with this degree of evil is simply:</p>
<pre><code>struct ComparesTrueToInt
{
ComparesTrueToInt(int) { } // implicit construction from int
};
bool operator == (ComparesTrueToInt, int) const { return true; }
ComparesTrueToInt f(ComparesTrueToInt ct) { return ComparesTrueToInt(); }
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1205431#12054310Answer by calvin for Interview question: f(f(n)) == -ncalvin2009-07-30T09:19:20Z2009-08-25T20:43:11Z<pre><code>int f(int n)
{
static long counter=0;
counter++;
if(counter%2==0)
return -n;
else
return n;
}
</code></pre>
<p>Thanks & Regards,
calvin</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1263403#12634030Answer by Alin for Interview question: f(f(n)) == -nAlin2009-08-11T22:46:37Z2009-08-11T22:46:37Z<p>Another way is to keep the state in one bit and flip it with care about binary representation in case of negative numbers...
Limit is 2^29</p>
<p>int ffn(int n)
{</p>
<pre><code> n = n ^ (1 << 30); //flip the bit
if (n>0)// if negative then there's a two's complement
{
if (n & (1<<30))
{
return n;
}
else
{
return -n;
}
}
else
{
if (n & (1<<30))
{
return -n;
}
else
{
return n;
}
}
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1263698#12636983Answer by LiraNuna for Interview question: f(f(n)) == -nLiraNuna2009-08-12T00:38:08Z2009-08-12T00:38:08Z<p>x86 asm (AT&T style): </p>
<pre><code>; input %edi
; output %eax
; clobbered regs: %ecx, %edx
f:
testl %edi, %edi
je .zero
movl %edi, %eax
movl $1, %ecx
movl %edi, %edx
andl $1, %eax
addl %eax, %eax
subl %eax, %ecx
xorl %eax, %eax
testl %edi, %edi
setg %al
shrl $31, %edx
subl %edx, %eax
imull %ecx, %eax
subl %eax, %edi
movl %edi, %eax
imull %ecx, %eax
.zero:
xorl %eax, %eax
ret
</code></pre>
<p>Code checked, all possible 32bit integers passed, error with -2147483647 (underflow).</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1314855#13148554Answer by BillyONeal for Interview question: f(f(n)) == -nBillyONeal2009-08-22T01:21:44Z2009-08-22T01:21:44Z<p>How about this?</p>
<pre><code>int nasty(int input)
{
return input + INT_MAX/2;
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1321483#1321483-1Answer by Sam for Interview question: f(f(n)) == -nSam2009-08-24T10:03:32Z2009-08-24T10:13:00Z<pre><code>number f( number n)
{
static count(0);
if(count > 0) return -n;
return n;
}
f(n) = n
f(f(n)) = f(n) = -n
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1330328#1330328-1Answer by Steven for Interview question: f(f(n)) == -nSteven2009-08-25T19:05:18Z2009-08-25T19:05:18Z<pre><code>int f(int n) {
return ((n>0)? -1 : 1) * abs(n);
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1334572#13345725Answer by FM for Interview question: f(f(n)) == -nFM2009-08-26T13:10:13Z2009-08-26T15:27:07Z<p>This Perl solution works for integers, floats, and strings.</p>
<pre><code>sub f {
my $n = shift;
return ref($n) ? -$$n : \$n;
}
</code></pre>
<p>Try some test data.</p>
<pre><code>print $_, ' ', f(f($_)), "\n" for
-2, 0, 1,
1.1, -3.3,
qw(foo -bar),
'There is more than one way to do it!',
'-Perl',
'+Rules',
;
</code></pre>
<p>Output:</p>
<pre><code>-2 2
0 0
1 -1
1.1 -1.1
-3.3 3.3
foo -foo
-bar +bar
There is more than one way to do it! -There is more than one way to do it!
-Perl +Perl
+Rules -Rules
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1337450#13374503Answer by Dial Z for Interview question: f(f(n)) == -nDial Z2009-08-26T20:58:02Z2009-08-26T20:58:02Z<p>Nobody ever said f(x) had to be the same type.</p>
<pre><code>def f(x):
if type(x) == list:
return -x[0]
return [x]
f(2) => [2]
f(f(2)) => -2
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1337649#13376491Answer by Bill K for Interview question: f(f(n)) == -nBill K2009-08-26T21:39:52Z2009-08-26T21:47:17Z<p>Although the question said n had to be a 32 bit int, it did not say the parameter or return type had to be a 32 bit int. This should compile in java--in c you could get rid of the != 0</p>
<pre><code>private final long MAGIC_BIT=1<<38;
long f(long n) {
return n & MAGIC_BIT != 0 ? -(n & !MAGIC_BIT) : n | MAGIC_BIT;
}
</code></pre>
<p>edit:</p>
<p>This actually makes for a really good interview question. The best ones are ones difficult or impossible to answer because it forces people to think it through and you can watch and look for:</p>
<ul>
<li>Do they just give up?</li>
<li>Do they say it's stupid?</li>
<li>Do they try unique approaches?</li>
<li>Do they communicate with you while they are working on the problem?</li>
<li>Do they ask for further refinements of the requirements?</li>
</ul>
<p>etc.</p>
<p>Never just answer behavioral questions unless you have a VERY GOOD answer. Always be pleasant and try to involve the questioner. Don't get frustrated and don't give up early! If you really aren't getting anywhere, try something totally illegal that could work, you'll get nearly full credit.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1480218#14802180Answer by RCIX for Interview question: f(f(n)) == -nRCIX2009-09-26T01:52:09Z2009-09-26T01:52:09Z<p>How about this:</p>
<pre><code>do
local function makeFunc()
local var
return function(x)
if x == true then
return -var
else
var = x
return true
end
end
end
f = makeFunc()
end
print(f(f(20000)))
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1481613#14816131Answer by Accipitridae for Interview question: f(f(n)) == -nAccipitridae2009-09-26T16:45:59Z2009-09-26T16:45:59Z<p>Here is a solution that is inspired by the requirement or claim that complex numbers can not be used to solve this problem. </p>
<p>Multiplying by the square root of -1 is an idea, that only seems to fail because -1 does not have a square root over the integers. But playing around with a program like mathematica gives for example the equation</p>
<blockquote>
<p>(1849436465<sup>2</sup>+1) mod (2<sup>32</sup>-3) = 0.</p>
</blockquote>
<p>and this is almost as good as having a square root of -1. The result of the function needs to be a signed integer. Hence I'm going to use a modified modulo operation mods(x,n) that returns the integer y congruent to x modulo n that is closest to 0. Only very few programming languages have suc a modulo operation, but it can easily be defined. E.g. in python it is:</p>
<pre><code>def mods(x, n):
y = x % n
if y > n/2: y-= n
return y
</code></pre>
<p>Using the equation above, the problem can now be solved as </p>
<pre><code>def f(x):
return mods(x*1849436465, 2**32-3)
</code></pre>
<p>This satisfies f(f(x)) = -x for all integers in the range [-2<sup>31</sup>-2, 2<sup>31</sup>-2]. The results of f(x) are also in this range, but of course the computation would need 64-bit integers.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1577528#15775280Answer by Peter for Interview question: f(f(n)) == -nPeter2009-10-16T11:30:44Z2009-10-16T11:30:44Z<pre><code>f(n) { return IsWholeNumber(n)? 1/n : -1/n }
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1691650#16916500Answer by Scott Langham for Interview question: f(f(n)) == -nScott Langham2009-11-07T01:49:52Z2009-11-07T01:49:52Z<p>C++</p>
<pre><code>struct Value
{
int value;
Value(int v) : value(v) {}
operator int () { return -value; }
};
Value f(Value input)
{
return input;
}
</code></pre>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1784193#17841930Answer by Markus for Interview question: f(f(n)) == -nMarkus2009-11-23T16:15:39Z2009-11-23T16:15:39Z<p>Similar to the functions overload solution, in python:</p>
<pre><code>def f(number):
if type(number) != type([]):
return [].append(number)
else:
return -1*number[0]
</code></pre>
<p>ALernative: static datamembers</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1784368#17843680Answer by recursive for Interview question: f(f(n)) == -nrecursive2009-11-23T16:41:25Z2009-11-23T16:41:25Z<p>Python 2.6:</p>
<pre><code>f = lambda n: (n % 2 * n or -n) + (n > 0) - (n < 0)
</code></pre>
<p>I realize this adds nothing to the discussion, but I can't resist.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1803970#18039700Answer by Alexandru for Interview question: f(f(n)) == -nAlexandru2009-11-26T14:25:49Z2009-11-26T14:25:49Z<p>I have another solution that works half of the time:</p>
<pre><code>def f(x):
if random.randrange(0, 2):
return -x
return x
</code></pre>