vote up 195 vote down star
84

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

prev 1 2 3
vote up 0 vote down
f(n) { return IsWholeNumber(n)? 1/n : -1/n }
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

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

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

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

int32_t f(int32_t n) { return -2147483648 == n ? n : n < 0 ? n : -n; }

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

Clojure solution:

(defmacro f [n]
  (if (list? n) `(- ~n) n))

Works on positive and negative integers of any size, doubles, and ratios too!

link|flag
vote up -1 vote down

Here's a C implementation of rossfabricant's answer. Note that since I stick with 32-bit integers at all times, f( f( 2147483647 ) ) == 2147483647, not -2147483647.

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

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.

link|flag
show 1 more comment
vote up -1 vote down
int f(int x){
    if (x < 0)
        return x;
    return ~x+1; //two's complement
}
link|flag
show 1 more comment
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 -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 -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 -1 vote down

I thought the largest range possible 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)
Anyway here's some python code for M=2**32-3.

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;

Note there are 3 values it wont work for 2 ** 31-1, -(2 ** 31-1) and -(2 ** 31)

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

The problem states "32-bit signed integers" but doesn't specify whether they are twos-complement or ones-complement.

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.

In C:

int32_t f(int32_t x)
{
  return (((x & 0xFFFFU) << 16) | ((x & 0xFFFF0000U) >> 16)) ^ 0xFFFFU;
}

This works by

  1. Exchanging the high and low 16-bit blocks
  2. Inverting one of the blocks

After two passes we have the bitwise inverse of the original value. Which in ones-complement representation is equivalent to negation.

Examples:

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)
link|flag
show 2 more comments
vote up -2 vote down

Seems easy enough.

<script type="text/javascript">
function f(n){
    if (typeof n === "string") {
        return parseInt(n, 10)
    }
    return (-n).toString(10);
}

alert(f(f(1)));
</script>
link|flag
1  
It specifically states "where n is a signed 32 bit int", not a string – joshcomley May 30 at 15:32
show 1 more comment
vote up -2 vote down

Perhaps cheating? (python)

def f(n):    
    if isinstance(n, list):
        return -n[0]
    else:
        return [n,0]    
n = 4
print f(f(n))

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

How about

int f(int n)
{
    return -abs(n);
}
link|flag
show 2 more comments
prev 1 2 3

Your Answer

Get an OpenID
or

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