Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Build Full Adder from Halves
00:00
5 left

Build Full Adder from Halves

MediumPython

Problem

Explain how to design a full adder using half adders.

Implement full_adder(a, b, carry_in) using two half-adder operations. Each input is a bit, represented by integer 0 or 1; return [sum_bit, carry_out], with both values also represented as 0 or 1.

Constraints

  • a, b, and carry_in are each either 0 or 1
  • Return exactly two values in the order [sum_bit, carry_out]
  • The implementation must compose two half-adder operations

Function Signature

def full_adder(a, b, carry_in):
Interviewer

Your question is Build Full Adder from Halves. 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.