Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Challenges

Comments on Small integer swapping

Post

Small integer swapping

+1
−4

In this simple challenge, create a short program that takes 2 ints 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.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

How is the mentioned loophole a loophole? (6 comments)
How is the mentioned loophole a loophole?
user‭ wrote over 2 years ago

How is the mentioned loophole a loophole?

General Sebast1an‭ wrote over 2 years ago

user‭ So you don't get it? It's simple, the integers weren't swapped at all, only changed place in the output function.

user‭ wrote over 2 years ago

What's the difference?

Unrelated String‭ wrote over 2 years ago

That's what we like to call an "unobservable requirement". Doesn't help that it's one that makes the challenge beyond trivial for some languages (because there's only one approach they're allowed to use) and completely impossible for others, depending on how you interpret and enforce it...

user‭ wrote over 2 years ago

But what's the difference between swapping and changing places? I'm still confused lol

Quintec‭ wrote over 2 years ago

I'm closing this question until this is resolved. (FWIW, I don't understand this either.)