Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
Utkarsh4697 opened this issue Aug 4, 2020 · 1 comment
Open

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

Utkarsh4697 opened this issue Aug 4, 2020 · 1 comment
Labels
enhancement New feature or request

Comments

@Utkarsh4697
Copy link
Contributor

'''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=",")

@darkprinx
Copy link
Owner

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

@darkprinx darkprinx added the enhancement New feature or request label Sep 19, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants