Comments on Small integer swapping
Parent
Small integer swapping
In this simple challenge, create a short program that takes 2 int
s as input, output them, swap their places, then output them again. Those 2 integers can't be the same number. The program with the shortest solution wins! Loopholes are banned in this challenge.
An example C program for the challenge (mostly ungolfed):
#include <stdio.h>
int main() {
int x, y;
scanf("%i %i", &x, &y);
printf("%i %i", x, y);
int z = x;
x = y;
y = z;
printf("%i %i", x, y);
}
You can make 2 answers in one post: 1 with output swapping, and 1 with variable swapping.
J, 3 bytes ```J ,|. ``` …
2y ago
Ruby, 24 bytes ```ruby get …
3y ago
[C (clang)], 63 bytes …
3y ago
[Python 3.8 (pre-release)], 39 …
3y ago
Japt, 3 bytes I/O as an arr …
3y ago
[APL (Dyalog Extended)], 3 byt …
3y ago
Vyxal `o`, 5 bytes ``` $", …
3y ago
1 comment thread