Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Detect Recurring Division
00:00
5 left

Detect Recurring Division

MediumPython

Problem

Goldman Sachs Asset & Wealth Management systems may need to display exact ratios without floating-point rounding. Given a numerator and denominator, return the fraction's canonical decimal representation, placing recurring digits inside parentheses.

Formal Specification

Implement fraction_to_decimal(numerator, denominator). Both arguments are integers, denominator is nonzero, and the result is a string. A terminating fraction must be returned normally, such as 0.5. A nonterminating recurring fraction must identify its repeating cycle, such as 0.(3) or 0.1(6). Preserve a leading minus sign for negative nonzero results, and do not use floating-point arithmetic.

The integer portion must be included. For example, 22 / 7 returns 3.(142857). The repeating portion is the first cycle produced by long division, not an arbitrary repeated substring.

Constraints

  • -10^9 <= numerator <= 10^9
  • 1 <= abs(denominator) <= 10^9
  • denominator != 0
  • The output may contain up to abs(denominator) fractional digits
  • Floating-point arithmetic is not allowed

Function Signature

def fraction_to_decimal(numerator, denominator):
Interviewer

Your question is Detect Recurring Division. 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.