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
.
-
5\$\begingroup\$ Why do we need a copy of the same question? \$\endgroup\$Christian– Christian2019年09月18日 07:30:59 +00:00Commented 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\$Adám– Adám2019年09月18日 07:32:12 +00:00Commented Sep 18, 2019 at 7:32
-
6\$\begingroup\$ A yes, now I see the difference. One needs to read VERY carefully \$\endgroup\$Christian– Christian2019年09月18日 07:34:31 +00:00Commented Sep 18, 2019 at 7:34
-
\$\begingroup\$ If using a structured language like C#, are you just reversing lines? \$\endgroup\$Taco– Taco2019年09月19日 02:31:03 +00:00Commented Sep 19, 2019 at 2:31
-
\$\begingroup\$ @PerpetualJ No, look at the source like list of characters, some of which are line breaks. \$\endgroup\$Adám– Adám2019年09月19日 05:42:56 +00:00Commented Sep 19, 2019 at 5:42
69 Answers 69
-
3\$\begingroup\$ this is really quite nice :) \$\endgroup\$Conor O'Brien– Conor O'Brien2019年09月18日 02:59:19 +00:00Commented Sep 18, 2019 at 2:59
-
3\$\begingroup\$ Clever, I didn't think of that one, but rather
][-
etc. \$\endgroup\$Adám– Adám2019年09月18日 05:35:24 +00:00Commented Sep 18, 2019 at 5:35
-
5\$\begingroup\$ Oh, God. Not this again. \$\endgroup\$S.S. Anne– S.S. Anne2019年09月17日 19:57:31 +00:00Commented Sep 17, 2019 at 19:57
-
4\$\begingroup\$ "First of the trivial comment-abuse answers" Redeemed by the TIO links! \$\endgroup\$Jonah– Jonah2019年09月18日 22:06:42 +00:00Commented Sep 18, 2019 at 22:06
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
Jelly, 2 bytes
oN
Try it online! and its reverse.
oN - (input) OR ((input) negated)
No - ((input) negated) OR (input)
-
\$\begingroup\$ Heh, you can also do
ḷN
, no need for the OR logic. :D \$\endgroup\$Erik the Outgolfer– Erik the Outgolfer2019年09月17日 21:54:46 +00:00Commented Sep 17, 2019 at 21:54 -
12\$\begingroup\$
Na
, words giveaN
aesthetic effect :) \$\endgroup\$Jonathan Allan– Jonathan Allan2019年09月17日 22:05:16 +00:00Commented Sep 17, 2019 at 22:05
Haskell, 8 bytes
Anonymous identity function, turning into subtraction from 0
when reversed.
id--)-0(
Reversed:
(0-)--di
-
3\$\begingroup\$ You’ve managed to break the code highlighting with your reversed version! \$\endgroup\$Tim– Tim2019年09月19日 09:57:50 +00:00Commented Sep 19, 2019 at 9:57
-
\$\begingroup\$ @Tim Curious. Testing suggests it fails when a comment starts right after a right parenthesis. \$\endgroup\$Ørjan Johansen– Ørjan Johansen2019年09月20日 02:07:15 +00:00Commented Sep 20, 2019 at 2:07
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
orT
: Positive/negative respectively- Some
S
/T
followed by a trailingN
: number in binary, whereS=0
andT=1
I.e. SSTTSTSN
pushes -10
. For the 0
we don't need an explicit S=0
, so simply SSSN
or SSTN
is enough.
R, 23 bytes
I decided to give it a go without the comment trick.
Forward
`+`=scan;""+-0;nacs=`+`
Reverse
`+`=scan;0-+"";nacs=`+`
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.
-
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\$Robin Ryder– Robin Ryder2019年09月19日 15:45:53 +00:00Commented Sep 19, 2019 at 15:45
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
Perl 6 / Raku, 3 bytes
*-0
Creates a Whatever code block. Read in normally its standard block equivalent is -> \x {x - 0}
, but in reverse it becomes -> \x {0 - x}
.
Python 3, 22 bytes
lambda x:x#x-:x adbmal
A lambda which implements the identity function (or negation)
Python 3, (削除) 22 (削除ここまで) 14 bytes
int#__bus__. 0
Uses the int
class's constructor and a built-in pseudo-private method.
-
\$\begingroup\$ Huh. Why is the space before the attribute mandatory? \$\endgroup\$Jo King– Jo King2019年09月19日 01:25:38 +00:00Commented Sep 19, 2019 at 1:25
-
2\$\begingroup\$ @JoKing
0.
would be interpreted as a number, which is followed by a symbol \$\endgroup\$att– att2019年09月19日 08:22:33 +00:00Commented Sep 19, 2019 at 8:22
MarioLANG, 22 bytes
;:
=#
:)!
--
<(
"
[>
;
He just inputs and outputs the number before he falls to EOF
reversed:
;
>[
"
(<
--
!):
#=
:;
He loops until the input value is 0 and the output value is -input, the he says the number.
Haskell, 12 bytes
f=id;x-0=x f
Try it online! Reverse:
f x=0-x;di=f
Not as short as Ørjan Johansen's answer, but without comments.
Perl 5 (-p
), (削除) 7 (削除ここまで) 6 bytes
-1 thanks to @primo
$_*=$#
A comment doesn't change input
#1-=*_$
Negate the input
$_*=-1#
-
-
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\$Nahuel Fouilleul– Nahuel Fouilleul2019年09月18日 18:08:44 +00:00Commented 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\$primo– primo2019年09月19日 11:26:40 +00:00Commented 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\$Dada– Dada2019年09月20日 15:31:20 +00:00Commented Sep 20, 2019 at 15:31 -
\$\begingroup\$ that's the explanation could be seen with
perl -MO=Deparse -p <(echo -n '$_*=$#')
, because it seemsperl -MO=Deparse -pe '$_*=$#'
adds a newline \$\endgroup\$Nahuel Fouilleul– Nahuel Fouilleul2019年09月21日 06:18:10 +00:00Commented Sep 21, 2019 at 6:18
Gaia, 2 bytes
_@
_ | 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
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
Brain-Flak, 7 bytes
#)]}{[(
Reversed:
([{}])#
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:
({}[{}])
-
\$\begingroup\$ Is this undefined behaviour abuse? I don't think Brain-Flak specification allows such parenthesis. \$\endgroup\$TwilightSparkle– TwilightSparkle2019年09月18日 14:06:07 +00:00Commented Sep 18, 2019 at 14:06
-
\$\begingroup\$ @TwilightSparkle The
#
starts a comment, so the parenthesis in the original version are ignored. \$\endgroup\$Riley– Riley2019年09月18日 14:08:20 +00:00Commented 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\$TwilightSparkle– TwilightSparkle2019年09月18日 14:12:49 +00:00Commented Sep 18, 2019 at 14:12
-
\$\begingroup\$ @TwilightSparkle added a note for clarification. Thanks. \$\endgroup\$Riley– Riley2019年09月18日 14:21:40 +00:00Commented 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\$DJMcMayhem– DJMcMayhem2019年09月18日 21:42:57 +00:00Commented Sep 18, 2019 at 21:42
R, 14 bytes
scan()#)(nacs-
A full program that reads a number, or reads and negates a number. The reverse functionality is protected by an inline comment
-
\$\begingroup\$ Your brackets are the wrong way around in the commented part. \$\endgroup\$Aaron Hayman– Aaron Hayman2019年09月18日 22:17:18 +00:00Commented Sep 18, 2019 at 22:17
-
\$\begingroup\$ @AaronHayman thanks! \$\endgroup\$Nick Kennedy– Nick Kennedy2019年09月18日 22:29:12 +00:00Commented Sep 18, 2019 at 22:29
APL (Dyalog Unicode), (削除) 13 (削除ここまで) 3 bytes
-∘0
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.
-
\$\begingroup\$ Whoa, this can be done trivially in three bytes! \$\endgroup\$Adám– Adám2019年09月17日 20:31:54 +00:00Commented Sep 17, 2019 at 20:31
-
\$\begingroup\$ Interestingly, you already have a 3-byte answer embedded as a substring of this. \$\endgroup\$Adám– Adám2019年09月18日 09:01:58 +00:00Commented Sep 18, 2019 at 9:01
-
\$\begingroup\$ @Adám yeah, I knew there was a simple answer in there somewhere. Thanks. \$\endgroup\$J. Sallé– J. Sallé2019年09月18日 12:54:06 +00:00Commented Sep 18, 2019 at 12:54
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...
).
-
\$\begingroup\$ This looks interesting. Care to explain? \$\endgroup\$Adám– Adám2019年09月25日 05:34:38 +00:00Commented Sep 25, 2019 at 5:34
-
\$\begingroup\$ @Adám Added an explanation, and also realised that I had the programs around backwards. \$\endgroup\$Οurous– Οurous2019年09月25日 06:34:28 +00:00Commented Sep 25, 2019 at 6:34
Excel VBA, 12
?[A1]']1A[-?
Reversed:
?-[A1]']1A[?
Input is cell A1 of the ActiveSheet. Comments still work in the Immediate Window :)
-
1\$\begingroup\$ I get what you are going for here, but I am pretty sure that you meant to answer
?[A1]']1A[-?
\$\endgroup\$Taylor Raine– Taylor Raine2020年01月03日 12:53:16 +00:00Commented Jan 3, 2020 at 12:53 -
\$\begingroup\$ @TaylorScott A good catch, oops \$\endgroup\$Chronocidal– Chronocidal2020年01月03日 15:52:53 +00:00Commented Jan 3, 2020 at 15:52
Wolfram Language (Mathematica), (削除) 9 (削除ここまで) 8 bytes
suniM@@D
Sometimes the world is a boring place.
Forward: suniM@@D
=D
Backward: D@@Minus
=Minus
-
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\$Adám– Adám2019年09月17日 19:49:28 +00:00Commented Sep 17, 2019 at 19:49
-
\$\begingroup\$ My bad, I misunderstood \$\endgroup\$jasanborn– jasanborn2019年09月17日 19:52:12 +00:00Commented 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 withI
means the output is the input instead. Your other problem is that both links you put link toI(
. \$\endgroup\$Makonede– Makonede2021年04月01日 23:19:10 +00:00Commented Apr 1, 2021 at 23:19
-
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\$ceased to turn counterclockwis– ceased to turn counterclockwis2019年09月18日 09:39:00 +00:00Commented Sep 18, 2019 at 9:39
-
\$\begingroup\$ Ah, I hadn't seen that: codegolf.stackexchange.com/a/192983/2183 \$\endgroup\$ceased to turn counterclockwis– ceased to turn counterclockwis2019年09月18日 11:11:04 +00:00Commented Sep 18, 2019 at 11:11
Turing Machine Language, 39 bytes
1 r - _ 0
0 l * * 0
0 - _ l 0
0 _ _ r 0
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.
><>, (削除) 5 (削除ここまで) 4 bytes
n-r0
uses stack initialisation with the -v
option, put your input variable there.
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.
Stack Cats -mn
, 2 bytes
-X
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:
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.
Explore related questions
See similar questions with these tags.