44
\$\begingroup\$

Blatant rip-off of a rip-off. Go upvote those!

Your task, if you wish to accept it, is to write a program/function that outputs/returns its integer input/argument. The tricky part is that if I reverse your source code, the output must be the original integer negated.

Examples

Let's say your source code is ABC and its input is 4. If I write CBA instead and run it, the output must be -4.

Let's say your source code is ABC and its input is -2. If I write CBA instead and run it, the output must be 2.

An input of 0 may give 0 or -0, however, if you do support signed zero, -0 should give 0.

asked Sep 17, 2019 at 19:32
\$\endgroup\$
5
  • 5
    \$\begingroup\$ Why do we need a copy of the same question? \$\endgroup\$ Commented Sep 18, 2019 at 7:30
  • 5
    \$\begingroup\$ @Christian That one outputs a constant number (and its negation) whereas this one has to take input and return/negate it. A very different job in a lot of languages. \$\endgroup\$ Commented Sep 18, 2019 at 7:32
  • 6
    \$\begingroup\$ A yes, now I see the difference. One needs to read VERY carefully \$\endgroup\$ Commented Sep 18, 2019 at 7:34
  • \$\begingroup\$ If using a structured language like C#, are you just reversing lines? \$\endgroup\$ Commented Sep 19, 2019 at 2:31
  • \$\begingroup\$ @PerpetualJ No, look at the source like list of characters, some of which are line breaks. \$\endgroup\$ Commented Sep 19, 2019 at 5:42

69 Answers 69

1
2 3
25
\$\begingroup\$

J, 3 bytes

-&0

Try it online!

-&0 is "argument minus 0"

0&- is "0 minus argument"

answered Sep 18, 2019 at 1:48
\$\endgroup\$
2
  • 3
    \$\begingroup\$ this is really quite nice :) \$\endgroup\$ Commented Sep 18, 2019 at 2:59
  • 3
    \$\begingroup\$ Clever, I didn't think of that one, but rather ][- etc. \$\endgroup\$ Commented Sep 18, 2019 at 5:35
20
\$\begingroup\$

PowerShell, (削除) 18 (削除ここまで) 14 bytes

$args#"sgra$"-

Try it online! !enilno ti yrT

First of the trivial comment-abuse answers

answered Sep 17, 2019 at 19:44
\$\endgroup\$
2
  • 5
    \$\begingroup\$ Oh, God. Not this again. \$\endgroup\$ Commented Sep 17, 2019 at 19:57
  • 4
    \$\begingroup\$ "First of the trivial comment-abuse answers" Redeemed by the TIO links! \$\endgroup\$ Commented Sep 18, 2019 at 22:06
17
\$\begingroup\$

x86 machine code, 3 bytes

C3 D8 F7

The above bytes of code define a function that is a no-op: it simply returns control to the caller. That function is followed by two garbage bytes that will not be executed, since they come after a return—they are in "no man's land". In assembler mnemonics:

ret ; C3 
fdiv st(0), st(7) ; D8 F7

Okay, so now some troll comes by and reverses the order of the bytes:

F7 D8 C3

These bytes now define a function that takes an integer argument in the EAX register, negates it, and returns control to the caller. In assembler mnemonics:

neg eax ; F7 D8
ret ; C3

So…that was simple. :-)

Note that we can make the "negation" instruction be anything we want, since it is never executed in the "forward" orientation and only executed in the "reversed" orientation. Therefore, we can follow the same pattern to do arbitrarily more complicated stuff. For example, here we take an integer argument in a different register (say, EDI, to follow the System V calling convention commonly used on *nix systems), negate it, and return it in the conventional EAX register:

C3 ret
D8 F7 fdiv st(0), st(7) ; \ garbage bytes that
F8 clc ; | never get executed,
89 .byte 0x89 ; / so nobody cares

↓ ↓

89 F8 mov eax, edi
F7 D8 neg eax
C3 ret
answered Sep 18, 2019 at 18:29
\$\endgroup\$
15
\$\begingroup\$

JavaScript, 11 bytes

n=>n//n->=n

Try it Online! | Reversed

answered Sep 17, 2019 at 20:42
\$\endgroup\$
12
\$\begingroup\$

Jelly, 2 bytes

oN

Try it online! and its reverse.

oN - (input) OR ((input) negated)
No - ((input) negated) OR (input)
answered Sep 17, 2019 at 20:40
\$\endgroup\$
2
  • \$\begingroup\$ Heh, you can also do ḷN, no need for the OR logic. :D \$\endgroup\$ Commented Sep 17, 2019 at 21:54
  • 12
    \$\begingroup\$ Na, words give aN aesthetic effect :) \$\endgroup\$ Commented Sep 17, 2019 at 22:05
9
\$\begingroup\$

Haskell, 8 bytes

Anonymous identity function, turning into subtraction from 0 when reversed.

id--)-0(

Try it online!

Reversed:

(0-)--di

Try it online!

answered Sep 18, 2019 at 0:35
\$\endgroup\$
2
  • 3
    \$\begingroup\$ You’ve managed to break the code highlighting with your reversed version! \$\endgroup\$ Commented Sep 19, 2019 at 9:57
  • \$\begingroup\$ @Tim Curious. Testing suggests it fails when a comment starts right after a right parenthesis. \$\endgroup\$ Commented Sep 20, 2019 at 2:07
8
\$\begingroup\$

Whitespace, 48 bytes

S S S N
S N
S T N
T T T T T T N
S T N
N
N
T S N
T N
S S T N
T T S S T T T T T N
T S N
S N
S S S 

Letters S (space), T (tab), and N (new-line) added as highlighting only.

Minor modification of my Whitespace answer for the I reverse the source code, you negate the output! challenge.

Try it online or try it online reversed (with raw spaces, tabs and new-lines only).

Explanation:

Utilizing the Exit Program builtin being a short palindrome NNN.
The regular program will:

SSSN # Push 0 to the stack
SNS # Duplicate it
TNTT # Read STDIN as integer, and store it at heap address 0
TTT # Retrieve the input from heap address 0, and push it to the stack
TNST # Pop and print the top of the stack as number
NNN # Exit the program, making everything after it no-ops

The reverse program will:

SSSN # Push 0 to the stack
SNS # Duplicate it
TNTT # Read STDIN as integer, and store it at heap address 0
TTT # Retrieve the input from heap address 0, and push it to the stack
SSTTN # Push -1 to the stack
TSSN # Multiply the top two values on the stack together
TNST # Pop and print the top of the stack as number
NNN # Exit the program, making everything after it no-ops

Small additional explanation of pushing a number:

  • First S: Enable Stack Manipulation
  • Second S: Push a number to the stack
  • S or T: Positive/negative respectively
  • Some S/T followed by a trailing N: number in binary, where S=0 and T=1

I.e. SSTTSTSN pushes -10. For the 0 we don't need an explicit S=0, so simply SSSN or SSTN is enough.

answered Sep 18, 2019 at 8:32
\$\endgroup\$
8
\$\begingroup\$

R, 23 bytes

I decided to give it a go without the comment trick.

Forward

`+`=scan;""+-0;nacs=`+`

Try it online!

Reverse

`+`=scan;0-+"";nacs=`+`

Try it online!

In the forward version + is acting a binary operator, and - is a unary operator.

In the reverse the + becomes unary and the - is binary. So scan function takes the arguments: file="" which means stdin and what=0, which are also defaults. So when the + is unary the first argument is on the right, when it is binary the first argument is on the left.

The

;nacs=`+`

part of the code does nothing really useful, so in a sense my code is not really very much more valid than using the comment trick.

answered Sep 18, 2019 at 13:04
\$\endgroup\$
1
  • 2
    \$\begingroup\$ This is very smart (+1). We often redefine the R operators to golf bytes, but I think this is the first time I have seen + redefined to be used as both unary and binary. It took me a minute to understand how this was parsed... No other operator name would have done the job. \$\endgroup\$ Commented Sep 19, 2019 at 15:45
6
\$\begingroup\$

Labyrinth / Hexagony, 6 bytes

Labyrinth:

?!@!`?

Try it online! and its reverse.

Hexagony:

?!@!~?

Try it online! and its reverse.

How?

? - take a signed integer
(` / ~) - negate
! - output top-of-stack / current-memory-edge
@ - exit
answered Sep 17, 2019 at 20:49
\$\endgroup\$
6
\$\begingroup\$

C (clang), 23 bytes

f(*x){}//};x*-=x*{)x*(g

Try it online!

answered Sep 18, 2019 at 11:52
\$\endgroup\$
5
\$\begingroup\$

Perl 6 / Raku, 3 bytes

*-0

Try it online!

Creates a Whatever code block. Read in normally its standard block equivalent is -> \x {x - 0}, but in reverse it becomes -> \x {0 - x}.

answered Sep 17, 2019 at 22:42
\$\endgroup\$
5
\$\begingroup\$

Python 3, 22 bytes

lambda x:x#x-:x adbmal

Try it online!

A lambda which implements the identity function (or negation)

answered Sep 18, 2019 at 5:13
\$\endgroup\$
5
\$\begingroup\$

Python 3, (削除) 22 (削除ここまで) 14 bytes

int#__bus__. 0

Try it online!

Uses the int class's constructor and a built-in pseudo-private method.

answered Sep 18, 2019 at 22:31
\$\endgroup\$
2
  • \$\begingroup\$ Huh. Why is the space before the attribute mandatory? \$\endgroup\$ Commented Sep 19, 2019 at 1:25
  • 2
    \$\begingroup\$ @JoKing 0. would be interpreted as a number, which is followed by a symbol \$\endgroup\$ Commented Sep 19, 2019 at 8:22
4
\$\begingroup\$

MarioLANG, 22 bytes

;:
=#
:)!
--
<(
"
[>
;

Try it online!

He just inputs and outputs the number before he falls to EOF

reversed:

;
>[
"
(<
--
!):
#=
:;

Try it online!

He loops until the input value is 0 and the output value is -input, the he says the number.

answered Sep 18, 2019 at 9:34
\$\endgroup\$
4
\$\begingroup\$

Haskell, 12 bytes

f=id;x-0=x f

Try it online! Reverse:

f x=0-x;di=f

Try it online!

Not as short as Ørjan Johansen's answer, but without comments.

answered Sep 18, 2019 at 16:17
\$\endgroup\$
4
\$\begingroup\$

Perl 5 (-p), (削除) 7 (削除ここまで) 6 bytes

-1 thanks to @primo

$_*=$#

TIO

A comment doesn't change input

#1-=*_$

Negate the input

$_*=-1#

TIO

answered Sep 18, 2019 at 5:07
\$\endgroup\$
5
  • \$\begingroup\$ -1: $_*=$# TIO. Note that the # must be the very last byte of the program, otherwise it will be interpreted as the variable $#, rather than the last index of the array with name <empty>. \$\endgroup\$ Commented Sep 18, 2019 at 16:32
  • 1
    \$\begingroup\$ however i don't understand how it works because trying to print $# gives either an error (if # is not the last character) or nothing \$\endgroup\$ Commented Sep 18, 2019 at 18:08
  • \$\begingroup\$ Seems to only work with -p or -n. I suspect the boilerplate has something to do with it... \$\endgroup\$ Commented Sep 19, 2019 at 11:26
  • 2
    \$\begingroup\$ @primo It works because -p/-n adds a ; after the code. Which means that $# is actually $#;: the size of the array @;. If the size of @; changes, the result isn't correct anymore (TIO). Anyway, this is super clever, well done! :) \$\endgroup\$ Commented Sep 20, 2019 at 15:31
  • \$\begingroup\$ that's the explanation could be seen with perl -MO=Deparse -p <(echo -n '$_*=$#'), because it seems perl -MO=Deparse -pe '$_*=$#' adds a newline \$\endgroup\$ Commented Sep 21, 2019 at 6:18
4
\$\begingroup\$

Gaia, 2 bytes

_@

Try it online!

_	| implicit push input and negate
 @	| push next input OR push last input (when all inputs have been pushed)
	| implicit print TOS

Reversed:

@	| push input
 _	| negate
	| implicit print TOS
answered Sep 17, 2019 at 19:39
\$\endgroup\$
4
\$\begingroup\$

Backhand, (削除) 6 (削除ここまで) 5 bytes

I@-Ov

Try it online! Try it doubled!

Made a little complex due to the nature of the pointer in Backhand. (削除) I don't think it's possible to get any shorter (削除ここまで) haha, turns out I was wrong. This duplicates no instruction and reuses both the input, output and terminate commands between the two programs. Now I think it is optimal, since you need all of the IO-@ commands to work, and in a 4 byte program you can only execute two of those commands.

Explanation:

The pointer in Backhand moves at three cells a tick and bounces off the boundaries of the cell, which means the general logic is overlapping. However you can manipulate this speed with the v and ^ commands.

The original program executes the instructions IO-@, which is input as number, output as number, subtract, terminate. Obviously the subtract is superfluous. In the code these are:

I@-Ov
^ ^ Reflect
 ^ Reflect again
 ^

The reversed program executes v-I-vO-@. The v reduces the pointer steps between ticks, and the - subtracts from the bottom of the stack, which is implicitly zero. The extra - commands do nothing. The program executes like

vO-@I
v Reduce pointer speed to 2
 - Subtract zero from zero
 I Get input as number and reflect off boundary
 - Subtract input from zero
v Reduce pointer speed to 1
 O Output as number
 - Subtract zero from zero
 @ Terminate
answered Sep 18, 2019 at 7:03
\$\endgroup\$
4
\$\begingroup\$

Brain-Flak, 7 bytes

#)]}{[(

Try it online!

Reversed:

([{}])#

Try it online!

Note: Only works in interpreters that support comments (e.g. works in Rain-Flak, but not in BrainHack)


If we also swap opening/closing brackets instead of just reversing the bytes we can do this in 8 bytes without using comments:

({}[{}])

Try it online!
Try it reversed!

answered Sep 17, 2019 at 22:18
\$\endgroup\$
8
  • \$\begingroup\$ Is this undefined behaviour abuse? I don't think Brain-Flak specification allows such parenthesis. \$\endgroup\$ Commented Sep 18, 2019 at 14:06
  • \$\begingroup\$ @TwilightSparkle The # starts a comment, so the parenthesis in the original version are ignored. \$\endgroup\$ Commented Sep 18, 2019 at 14:08
  • \$\begingroup\$ Oh yeah, I forgot! But it only works in Rain-Flak then(It's the official intepreter though). You will probably need to mention it? \$\endgroup\$ Commented Sep 18, 2019 at 14:12
  • \$\begingroup\$ @TwilightSparkle added a note for clarification. Thanks. \$\endgroup\$ Commented Sep 18, 2019 at 14:21
  • \$\begingroup\$ Fun little challenge: Can you do this without comments if you also swap opening/closing brackets instead of just reversing? \$\endgroup\$ Commented Sep 18, 2019 at 21:42
4
\$\begingroup\$

R, 14 bytes

scan()#)(nacs-

Try it online!

A full program that reads a number, or reads and negates a number. The reverse functionality is protected by an inline comment

answered Sep 18, 2019 at 5:10
\$\endgroup\$
2
  • \$\begingroup\$ Your brackets are the wrong way around in the commented part. \$\endgroup\$ Commented Sep 18, 2019 at 22:17
  • \$\begingroup\$ @AaronHayman thanks! \$\endgroup\$ Commented Sep 18, 2019 at 22:29
3
\$\begingroup\$

APL (Dyalog Unicode), (削除) 13 (削除ここまで) 3 bytes

-∘0

Try it online!

Trivial answer. Returns arg or ̄arg.

Saved 10 bytes by not being dumb (thanks Adám).

Altered the resulting 3-byter to a more fitting function.

answered Sep 17, 2019 at 20:22
\$\endgroup\$
3
  • \$\begingroup\$ Whoa, this can be done trivially in three bytes! \$\endgroup\$ Commented Sep 17, 2019 at 20:31
  • \$\begingroup\$ Interestingly, you already have a 3-byte answer embedded as a substring of this. \$\endgroup\$ Commented Sep 18, 2019 at 9:01
  • \$\begingroup\$ @Adám yeah, I knew there was a simple answer in there somewhere. Thanks. \$\endgroup\$ Commented Sep 18, 2019 at 12:54
3
\$\begingroup\$

Batch, 34 bytes

@ECHO.%1 2>MER@
@REM>2 1%=-aa/TES@

Echoes (ECHO.) the input (%1). The rest of the first line technically redirects STDERR to a file called MER@, but this isn't impactful.
Second line is commented out (REM...).

Reversed

@SET/aa-=%1 2>MER@
@REM>2 1%.OHCE@

Uses the arithmetic mode of the set command (SET /a) to subtract (-=) the input (%1) from an undefined variable (a) which is equivalent to 0 - input. Again, the rest of the first line technically redirects STDERR to a file called MER@, but this isn't impactful.
Second line is commented out (REM...).

answered Sep 25, 2019 at 3:10
\$\endgroup\$
2
  • \$\begingroup\$ This looks interesting. Care to explain? \$\endgroup\$ Commented Sep 25, 2019 at 5:34
  • \$\begingroup\$ @Adám Added an explanation, and also realised that I had the programs around backwards. \$\endgroup\$ Commented Sep 25, 2019 at 6:34
3
\$\begingroup\$

Excel VBA, 12

?[A1]']1A[-?

Reversed:

?-[A1]']1A[?

Input is cell A1 of the ActiveSheet. Comments still work in the Immediate Window :)

answered Sep 18, 2019 at 12:52
\$\endgroup\$
2
  • 1
    \$\begingroup\$ I get what you are going for here, but I am pretty sure that you meant to answer ?[A1]']1A[-? \$\endgroup\$ Commented Jan 3, 2020 at 12:53
  • \$\begingroup\$ @TaylorScott A good catch, oops \$\endgroup\$ Commented Jan 3, 2020 at 15:52
3
\$\begingroup\$

Wolfram Language (Mathematica), (削除) 9 (削除ここまで) 8 bytes

suniM@@D

Try it online!

Sometimes the world is a boring place.

Forward: suniM@@D=D

Backward: D@@Minus=Minus

answered Sep 18, 2019 at 0:20
\$\endgroup\$
2
\$\begingroup\$

05AB1E, 2 bytes

(I

Try it online!

Reversed

( negates nothing
 I pushes input
I pushes input
 ( negates input
answered Sep 17, 2019 at 19:48
\$\endgroup\$
3
  • 1
    \$\begingroup\$ It is supposed to only negate the input in one direction, leaving it as-is in the other. Clearly, 1-character solution cannot be valid. \$\endgroup\$ Commented Sep 17, 2019 at 19:49
  • \$\begingroup\$ My bad, I misunderstood \$\endgroup\$ Commented Sep 17, 2019 at 19:52
  • 1
    \$\begingroup\$ Your answer has a couple mistakes. First of all, the explanation for (I is slightly flawed: it doesn't negate nothing, it negates the (implicit) input. But pushing the input with I means the output is the input instead. Your other problem is that both links you put link to I(. \$\endgroup\$ Commented Apr 1, 2021 at 23:19
2
\$\begingroup\$
answered Sep 17, 2019 at 21:15
\$\endgroup\$
2
\$\begingroup\$

Klein, 2 bytes

Works in all 12 topologies!

@-

Try it online!

Reverse

-@

Try it online!

- negates the input and @ ends the program

answered Sep 17, 2019 at 21:22
\$\endgroup\$
2
  • 3
    \$\begingroup\$ Oh come on. This question seems to be made for some clever flipping on the Möbius strip or so, and you submit an answer that doesn't depend on the topology? Meh. \$\endgroup\$ Commented Sep 18, 2019 at 9:39
  • \$\begingroup\$ Ah, I hadn't seen that: codegolf.stackexchange.com/a/192983/2183 \$\endgroup\$ Commented Sep 18, 2019 at 11:11
2
\$\begingroup\$

Turing Machine Language, 39 bytes

The Positive

1 r - _ 0
0 l * * 0
0 - _ l 0
0 _ _ r 0

The Negative

0 r _ _ 0
0 l _ - 0
0 * * l 0
0 _ - r 1

This one was a bit trickier than I thought, mostly because I had to get past my prejudices of having code that runs with 'compile' errors.

answered Sep 18, 2019 at 11:59
\$\endgroup\$
2
\$\begingroup\$

><>, (削除) 5 (削除ここまで) 4 bytes

n-r0

uses stack initialisation with the -v option, put your input variable there.

Try it online!

Or try the reversal

Explanation

n Prints whatever is on the stack as a number
 - Subtract the top 2 elements on the stack.
 There aren't 2 elements, so it crashes.
 r0 Never gets executed
or reversed:
0 Push a 0 onto the stack
 r reverse the stack (now 0, -v)
 - Subtract top 2 elements and push result (0-v, ie negated)
 n Print as number
 The code wraps around and executes again. 
 It crashes on the - as there is only one
 item on the stack: 0.
answered Sep 18, 2019 at 15:20
\$\endgroup\$
2
\$\begingroup\$

Stack Cats -mn, 2 bytes

-X

Try it online!

Try the reverse!

Explanation

Turns out this is actually a lot easier than the previous challenge in Stack Cats. The full program (after applying -m) here is -X-. X is used to swap the stacks left and right of the tape head, i.e. it doesn't affect the initial stack at all, so we can ignore it. But then the program is effectively just -- (negate the top of the stack twice), which does nothing.

For the inverse program, applying -m gives X-X. Again, X does nothing, so the program is effectively just -, which negates the top of the stack.

The only other 2-byte solution is -=, but it's virtually the same. The only difference is that = swaps only the tops of the adjacent stacks, not the entire stacks.

But again, using -m feels a bit like cheating, so below is a solution that uses a fully mirrored program.


Stack Cats -n, 7 bytes

:I<->I:

Try it online!

Try the reverse!

Explanation

The considerations from the previous answer still apply: any valid solution needs to use the paired characters and I. The six possible solutions (included in the TIO link) are all virtually the same. - and _ are equivalent in this program, and : can be replaced by | or T (which do the same for non-zero inputs and coincidentally also work for zero inputs). I've just picked this one to explain because it's easiest.

So remember that the initial stack holds the input on top of a -1 (on top of infinitely many zeros) whereas all the other stacks along the tape only hold zeros. Stack Cats also has the property that any even-length program does nothing (provided it terminates, but we can't use loops for this challenge anyway). The same is then obviously true for any odd-length program whose centre character does nothing... let's see:

: Swap the input with the -1 below.
I Move the -1 one stack to the left and turn it into +1.
< Move another stack left (without taking the value).
- Negate the zero on top of that stack (i.e. do nothing).

Therefore, the second half of the program exactly undoes the first half and we end up with the input on top of a -1 again.

The inverse program is :I>-<I:. Let's see how that changes things:

: Swap the input with the -1 below.
I Move the -1 one stack to the left and turn it into +1.
> Move one stack right, i.e. back onto the initial stack which still holds the input.
- Negate the input.
< Move back to the left where we've parked the 1.
I Move that 1 back onto the initial stack and turn it back into a -1.
: Swap the -1 below the negated input to act as an EOF marker.
answered Sep 21, 2019 at 10:51
\$\endgroup\$
1
2 3

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.