Fraction to Recurring Decimal || 3Sum Closest
Fraction to Recurring DecimalQuestionGiven two integers representing the numerator and denominator of a fraction, return the fraction in string format.
If the fractional part is repeating, enclose the repeating part in parentheses.
For example,
Given numerator = 1, denominator = 2, return “0.5”.Give
...