break-the-ice-with-python icon indicating copy to clipboard operation
break-the-ice-with-python copied to clipboard

I Found a mistake in Question 06 (Solution by: parian5)

Open Utkarsh4697 opened this issue 5 years ago • 1 comments

'''Solution by: parian5 ''' from math import sqrt C, H = 50, 30 mylist = input().split(',') print((round(sqrt(2C*int(D)/H)) for D in mylist), sep=",")

'''Solution by: Utkarsh4697 ''' from math import sqrt C, H = 50, 30 mylist = input().split(',') print((round(sqrt(2C*float(D)/H)) for D in mylist), sep=",")

Utkarsh4697 avatar Aug 04 '20 09:08 Utkarsh4697

please help us out by fixing the solution and pulling a request for the new changes. thank you.

darkprinx avatar Sep 19 '20 18:09 darkprinx