break-the-ice-with-python
break-the-ice-with-python copied to clipboard
I Found a mistake in Question 06 (Solution by: parian5)
'''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=",")
please help us out by fixing the solution and pulling a request for the new changes. thank you.