Open
Description
'''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=",")
Metadata
Metadata
Assignees
Labels
Projects
Milestone
Relationships
Development
No branches or pull requests
Activity
darkprinx commentedon Sep 19, 2020
please help us out by fixing the solution and pulling a request for the new changes. thank you.