vote up 197 vote down star
87

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

81 Answers

1 2 3 next
vote up 116 vote down check

This works for any integer or long in Python:

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)

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.


Similar solution in C# (works for any double, except in overflow situations):

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));
}
link|flag
1  
Broken for -1, because -1 * 0 is still 0 – Joel Coehoorn Apr 8 at 21:25
1  
It is broken for 1 however. f(1) = 0. f(0) = 1 – 1800 INFORMATION Apr 8 at 21:35
4  
Hmm, saving state with even and odd numbers, I should've thought of that. – Unknown Apr 8 at 22:25
7  
I think the most important thing is not the actual function (there are infinitely many solutions), but the process by which you can construct such a function. – Eduardo León Apr 13 at 2:39
1  
It works for all values but 2^(n - 1) - 1 if you use n bit integers. It works for n = 1: 1 => 2 [= 1 + 1] => -1 [= -1 * (2 - 1)]. – Daniel Brückner May 6 at 17:41
show 27 more comments
vote up 0 vote down

This is also a solution (but we are bending the rules a little bit):

def f(n):
    if isinstance(n,int):
    	return str(n)
    else:
    	return -int(n)
link|flag
vote up 0 vote down

I have another solution that works half of the time:

def f(x):
    if random.randrange(0, 2):
        return -x
    return x
link|flag
vote up 0 vote down

Python 2.6:

f = lambda n: (n % 2 * n or -n) + (n > 0) - (n < 0)

I realize this adds nothing to the discussion, but I can't resist.

link|flag
vote up 0 vote down

Similar to the functions overload solution, in python:

def f(number):
 if type(number) != type([]):
  return [].append(number)
 else:
  return -1*number[0]

ALernative: static datamembers

link|flag
vote up 0 vote down

C++

struct Value
{
  int value;
  Value(int v) : value(v) {}
  operator int () { return -value; }
};


Value f(Value input)
{
  return input;
}
link|flag
vote up 0 vote down
f(n) { return IsWholeNumber(n)? 1/n : -1/n }
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

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
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 3 vote down

Nobody ever said f(x) had to be the same type.

def f(x):
    if type(x) == list:
        return -x[0]
    return [x]


f(2) => [2]
f(f(2)) => -2
link|flag
vote up 5 vote down

This Perl solution works for integers, floats, and strings.

sub f {
    my $n = shift;
    return ref($n) ? -$$n : \$n;
}

Try some test data.

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',
;

Output:

-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
link|flag
vote up -1 vote down
int f(int n) {
    return ((n>0)? -1 : 1) * abs(n);
}
link|flag
1  
surely this just returns f(n)=-n ? then f(f(n)) = n, not -n as the question asks – Sanjay Manohar Sep 24 at 23:42
show 1 more comment
vote up -1 vote down
number f( number n)
{
  static count(0);
  if(count > 0) return -n;
  return n;
}

f(n) = n

f(f(n)) = f(n) = -n
link|flag
2  
I think you somewhere miss a count++ – sth Aug 24 at 10:14
show 1 more comment
vote up 4 vote down

How about this?

int nasty(int input)
{
    return input + INT_MAX/2;
}
link|flag
vote up 3 vote down

x86 asm (AT&T style):

; 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 checked, all possible 32bit integers passed, error with -2147483647 (underflow).

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

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 -2 vote down

JavaScript one-liner:

function f(n) { return ((f.f = !f.f) * 2 - 1) * n; }
link|flag
show 1 more comment
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

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.

link|flag
show 1 more comment
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
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 -2 vote down

Another cheating solution. We use a language that allows operator overloading. Then we have f(x) return something that has overloaded == to always return true. This seems compatible with the problem description, but obviously goes against the spirit of the puzzle.

Ruby example:

class Cheat
  def ==(n)
     true
  end
end

def f(n)
  Cheat.new
end

Which gives us:

>> f(f(1)) == -1
=> true

but also (not too surprising)

>> f(f(1)) == "hello world"
=> true
link|flag
vote up -1 vote down

Using static variables in C functions to remember previously returned (random) value:

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;

}

This ought to work for any n.

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

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 3 vote down

I would you change the 2 most significant bits.

00.... => 01.... => 10.....

01.... => 10.... => 11.....

10.... => 11.... => 00.....

11.... => 00.... => 01.....

As you can see, it's just an addition, leaving out the carried bit.

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.

link|flag
show 3 more comments
1 2 3 next

Your Answer

Get an OpenID
or

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