Sakshi Singh
1 min readJun 28, 2019

HackerRank Solution: Restaurant

In Python3

import os
import sys
import math
#
# Complete the restaurant function below.
#
def restaurant(l, b):
x = math.gcd(l,b)
return int(l/x*b/x)

#Rest of the part is same as given in the editor

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Sakshi Singh
Sakshi Singh

No responses yet

Write a response