Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Swap Without Temp Variable
00:00
5 left

Swap Without Temp Variable

EasyPython

Problem

In an Aditi Consulting coding exercise, implement a small utility that swaps two integer values without declaring or using a temporary variable. Return the swapped values in their new order.

Formal Specification

Write a function swap_numbers(a, b) that accepts two integers and returns a two-element tuple (b, a). The function must not use an explicitly declared temporary variable such as temp. Do not modify external state.

Python's multiple assignment syntax is allowed. The goal is to demonstrate a clear, idiomatic solution rather than manually simulating storage with a third named variable.

Constraints

  • a and b are integers.
  • -10^9 <= a, b <= 10^9.
  • No explicit temporary variable may be declared.
  • The solution must use O(1) auxiliary space.

Function Signature

def swap_numbers(a, b):
Interviewer

Your question is Swap Without Temp Variable. Start with the requirements in the Question tab.

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.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.