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