show/hide this revision's text 5 deleted 5 characters in body

Depending on your platform, some languages allow you to keep state in the function. VB.Net, for example:

Function f(ByVal n As Integer) As Integer
    Static flag As Integer = -1
    flag *= -1

    Return n * flag
End Function

IIRC, C++ allowed this as well. I suspect they're looking for a different solution though.

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:

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

Add one to the magnitude of all even numbers, subtract one from the magnitude of all odd numbers- the . The result of two calls is has the same number. But magnitude, but the one call where it's even we swap the sign. However, there 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.

    Post Made Community Wiki by Community
show/hide this revision's text 4 added 5 characters in body

Depending on your platform, some languages allow you to keep state in the function. VB.Net, for example:

Function f(ByVal n As Integer) As Integer
    Static flag As Integer = -1
    flag *= -1

    Return n * flag
End Function

IIRC, C++ allowed this as well. I suspect they're looking for a different solution though.

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:

int f(int n)
{
   int sign = n>=0?1:-1;
   if (n%2 abs(n)%2 == 0)
      return ((abs(n)+1)*sign * -1;
   else
      return (abs(n)-1)*sign;
}

There

Add one to the magnitude of all even numbers, subtract one from the magnitude of all odd numbers- the result of two calls is the same number. But the one call where it's even we swap the sign. However, 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.

show/hide this revision's text 3 added 55 characters in body
show/hide this revision's text 2 added 21 characters in body
show/hide this revision's text 1