vote up 194 vote down star
85

A question I got on my last interview:

Design a function f, such that:

f(f(n)) == -n

Where n is a 32 bit signed integer; you can't use complex numbers arithmetic.

If you can't design such a function for the whole range of numbers, design it for the largest range possible.

Any ideas?

flag
19  
+1: Nothing wrong with this question, not sure why it was downvoted or has close votes. – Juliet Apr 8 at 21:13
4  
Apparently there are people who think that maths is not programming related. – DrJokepu Apr 8 at 21:14
13  
Or offensive? Does that button mean "I can't figure it out" now? – 1800 INFORMATION Apr 8 at 21:14
39  
public int f(int n) { throw new NotImplementException("You get the rest of the code when you give me a job."); } – Juliet Apr 8 at 21:21
41  
What a terrible interview question. – Daniel Daranas Apr 9 at 9:40
show 21 more comments

80 Answers

vote up 2 vote down

how about this (C language):

int f(int n)
{
    static int t = 1;
    return (t = t ? 0 : 1) ? -n : n;
}

just tried it, and

f(f(1000))

returns -1000

f(f(-1000))

returns 1000

is that correct or am i missing the point?

link|flag
show 1 more comment
vote up 1 vote down

Doesn't fail on MIN_INT:

int f(n) { return n < 0 ? -abs(n + 1) : -(abs(n) + 1); }
link|flag
show 2 more comments
vote up 1 vote down

This will work in a very broad range of numbers:

    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);
    }

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.

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.

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.

link|flag
vote up 1 vote down

easy:

function f($n) {
   if ($n%2 == 0) return ($n+1)*-1;
   else return ($n-1);
}
link|flag
vote up 1 vote down

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

then we can create f as follows:

if x is in R then f(x) = g(x)

if x is in S then f(x) = -invg(x)

where invg(g(x))=x so invg is the inverse function for g.

The first solution mentioned above is the partition R=even numbers, R= odd numbers, g(x)=x+1.

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).

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.

So this will give us many solutions however not all of course could be programmed as they would not be finitely defined.

An example of one that can be is:

R= numbers divisible by 3 and S= numbers not divisible by 3.

Then we take g(6r) = 3r+1, g(6r+3) = 3r+2.

link|flag
vote up 1 vote down

Mine gives the right answer...50% of the time, all the time.

int f(int num) {
	if (rand()/(double)RAND_MAX > 0.5)
		 return ~num + 1;
	return num;
}
link|flag
vote up 1 vote down

Some were similar but just thought I would write down my first idea (in C++)

#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)); }

Just using overloading to cause f(f(n)) to actually call two different functions

link|flag
vote up 1 vote down

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

private final long MAGIC_BIT=1<<38;
long f(long n) {
    return n & MAGIC_BIT != 0 ? -(n & !MAGIC_BIT) : n | MAGIC_BIT;
}

edit:

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:

  • Do they just give up?
  • Do they say it's stupid?
  • Do they try unique approaches?
  • Do they communicate with you while they are working on the problem?
  • Do they ask for further refinements of the requirements?

etc.

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.

link|flag
vote up 1 vote down

Here is a solution that is inspired by the requirement or claim that complex numbers can not be used to solve this problem.

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

(18494364652+1) mod (232-3) = 0.

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:

def mods(x, n):
    y = x % n
    if y > n/2: y-= n
    return y

Using the equation above, the problem can now be solved as

def f(x):
    return mods(x*1849436465, 2**32-3)

This satisfies f(f(x)) = -x for all integers in the range [-231-2, 231-2]. The results of f(x) are also in this range, but of course the computation would need 64-bit integers.

link|flag
vote up 0 vote down
f(n) { return -1 * abs(n) }

How can I handle overflow problems with this? Or am I missing the point?

link|flag
1  
Given the requirements of the question, that's probably an adequate response. It doesn't say that f(n) has to return a different value. The question is a puzzle, so you look for the exploits (loopholes) that would make a feasible solution. – JasonTrue Apr 8 at 22:14
show 5 more comments
vote up 0 vote down

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.

Ruby:

def f( n )
  return 0 unless n != 0 
  ( n == n.to_i ) ? 1.0 / n : -(n**-1).to_i
end
link|flag
vote up 0 vote down

A bizarre and only slightly-clever solution in Scala using implicit conversions:

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)
}

I don't think that's quite the right idea though.

link|flag
vote up 0 vote down

In C,

int 
f(int n) {
     static int r = 0;
     if (r == 1) {r--; return -1 * n; };
     r++;
     return n;
}

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).

link|flag
show 1 more comment
vote up 0 vote down

This one's in Python. Works for all negative values of n:

f = abs
link|flag
vote up 0 vote down

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).

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))}"
}
link|flag
vote up 0 vote down

Easy, just make f return something that appears to equal any integer, and is convertable from an integer.

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);
    }
}
link|flag
vote up 0 vote down

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: :)

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.

Here I am permitting my Python function to operate on and return either tuples or 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.)

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.

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.

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

So applying f to 37 twice gives -37, and vice versa:

>>> x = 37
>>> x = f(x)
>>> x
(0, 37)
>>> x = f(x)
>>> x
-37
>>> x = f(x)
>>> x
(0, -37)
>>> x = f(x)
>>> x
37

Applying f twice to zero gives zero:

>>> x=0
>>> x = f(x)
>>> x
(0, 0)
>>> x = f(x)
>>> x
0

And we handle the one case for which the problem has no solution (in int32):

>>> 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

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.

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

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.

This exercise has really nailed for me the delights of a dynamically typed language. I can't see a solution like this in C.

link|flag
vote up 0 vote down
const unsigned long Magic = 0x8000000;

unsigned long f(unsigned long n)
{    
    if(n > Magic )
    {
        return Magic - n;
    }

    return n + Magic;
}

0~2^31

link|flag
vote up 0 vote down

What about following:

int f (int n)
{
    static bool pass = false;
    pass = !pass;
    return pass? n : -n;
}
link|flag
show 2 more comments
vote up 0 vote down

This will work for the range -1073741823 to 1073741822:

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;
}

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 n 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.

It is effectively a way of keeping an extra "bit" of info about the value n.

link|flag
show 1 more comment
vote up 0 vote down

PHP, without using a global variable:

function f($num) {
  static $mem;

  $answer = $num-$mem;

  if ($mem == 0) {
    $mem = $num*2;
  } else {
    $mem = 0;
  }

  return $answer;
}

Works with integers, floats AND numeric strings!

just realized this does some unnecessary work, but, whatever

link|flag
vote up 0 vote down
void f(int x)
{
     Console.WriteLine(string.Format("f(f({0})) == -{0}",x));
}

Sorry guys... it was too tempting ;)

link|flag
vote up 0 vote down

C++ solution;

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);
link|flag
vote up 0 vote down

Isn't remembering your last state a good enough answer?

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))
}
link|flag
show 1 more comment
vote up 0 vote down

I haven't looked at the other answers yet, I assume the bitwise techniques have been thoroughly discussed.

I thought I'd come up with something evil in C++ that is hopefully not a dupe:

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();
}

The whole ImplicitlyConvertibleToInt type and overload is necessary because temporaries can't be bound to a non-const reference.

Of course, looking at it now it's undefined whether f(n) is executed before -n.

Perhaps a better solution with this degree of evil is simply:

struct ComparesTrueToInt
{
    ComparesTrueToInt(int) { } // implicit construction from int
};
bool operator == (ComparesTrueToInt, int) const { return true; }

ComparesTrueToInt f(ComparesTrueToInt ct) { return ComparesTrueToInt(); }
link|flag
vote up 0 vote down

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

int ffn(int n) {

    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;
    	}
    }


}
link|flag
vote up 0 vote down
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;
    }
}

Hackish, but correct.

link|flag
vote up 0 vote down
int j = 0;

void int f(int n)
{    
    j++;

    if(j==2)
    {
       j = 0;
       return -n;
    }

    return n;
}

:D

link|flag
vote up 0 vote down
int f(int n)
{
  static long counter=0;
  counter++;
  if(counter%2==0)
    return -n;
  else
    return n;
}

Thanks & Regards, calvin

link|flag
vote up 0 vote down

How about this:

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)))
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.