Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Swap Two Values Program

EasyPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Swap Two Values Program. Start with the requirements on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

While processing paired values in a Teksystems C/O Allegis Group embedded-system utility, you need to exchange two integer variables. Write a function that swaps the values and returns them in their new order.

The solution should use constant extra space and must preserve both original values, including when they are equal or negative. In Python, tuple assignment is an appropriate approach because the right-hand side is evaluated before either variable is updated.

Formal Specification

Implement swap_values(a, b).

  • Input: Two integers, a and b.
  • Output: A two-element tuple (b, a), containing the original second value followed by the original first value.
  • The function should not modify external state.

Constraints

  • -10^9 <= a, b <= 10^9
  • Both inputs are integers
  • Return exactly two values in a tuple
  • Use O(1) auxiliary space

Function Signature

def swap_values(a, b):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output