Skip to content

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

Open
@Utkarsh4697

Description

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

Activity

darkprinx

darkprinx commented on Sep 19, 2020

@darkprinx
Owner

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @darkprinx@Utkarsh4697

        Issue actions

          I Found a mistake in Question 06 (Solution by: parian5) · Issue #44 · darkprinx/break-the-ice-with-python