Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Go Handshakes Math
00:00
5 left

Go Handshakes Math

EasyPython

Problem

A Capgemini Government Solutions conference has a fixed number of members. During each phase, every member shakes hands with every other member exactly once. For example, the pre-meeting and post-meeting phases represent two separate rounds, so the same pair may shake hands twice.

Given the number of members and the number of phases, return the total number of handshakes. Do not simulate individual pairs.

Formal Specification

Implement count_handshakes(member_count, phases).

  • Input: two integers, member_count, the number of conference members, and phases, the number of independent handshake phases.
  • Output: an integer representing the total number of handshakes across all phases.
  • Each unordered pair of members contributes exactly one handshake per phase.

Constraints

  • 2 <= member_count <= 10^9
  • 1 <= phases <= 10^9
  • The result fits within a signed 64-bit integer
  • Each pair shakes hands exactly once in each phase

Function Signature

def count_handshakes(member_count, phases):
Interviewer

Your question is Go Handshakes Math. 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.