Swap Numbers Without Temporary Variable
Your task is to interchange the values of two numbers given as variables 'X' and 'Y' without using a temporary variable or any additional variable.
Explanation:
You need to swap the values of 'X' and 'Y' using specific operations that do not involve extra space allocation for a temporary variable. For instance, if 'X' is 10 and 'Y' is 20, after swapping, 'X' should be 20 and 'Y' should be 10.
Input:
The first line of input contains an integer 'T' representing the number of test cases.
Each of the following 'T' lines contains two space-separated integers 'X' and 'Y'.
Output:
For each test case, return a list or array with two integers 'X' and 'Y' showing their swapped values.
Example:
Input:
T = 2
X, Y = 10, 20
X, Y = 5, -5
Output:
[20, 10]
[-5, 5]
Constraints:
- 1 ≤ T ≤ 2 * 105
- -109 ≤ X, Y ≤ 109
Note: Focus on implementing the function logic to swap the values; you are not required to handle input/output operations.

AnswerBot
4mo
Swap two numbers without using a temporary variable.
Use bitwise XOR operation to swap the values of X and Y without using a temporary variable.
The XOR operation works by toggling the bits of the numbe...read more
Help your peers!
Add answer anonymously...
SAP Software Developer Intern interview questions & answers
A Software Developer Intern was asked 9mo agoQ. How would you convert a byte stream to a human-readable format without using ext...read more
A Software Developer Intern was asked 9mo agoQ. Given coins with denominations 1, 2, and 5, what is the minimum number of coins ...read more
A Software Developer Intern was asked 9mo agoQ. How do you find the number of nodes in a tree, and what is the time complexity o...read more
Popular interview questions of Software Developer Intern
A Software Developer Intern was asked 9mo agoQ1. How would you convert a byte stream to a human-readable format without using ext...read more
A Software Developer Intern was asked 9mo agoQ2. Given coins with denominations 1, 2, and 5, what is the minimum number of coins ...read more
A Software Developer Intern was asked 9mo agoQ3. How do you find the number of nodes in a tree, and what is the time complexity o...read more
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

