Learn Interfaces by Building an Equation Solver - Step 64

Tell us what’s happening:

I don’t know what is wrong with my code please give me a hint on how to solve this

Your code so far

# User Editable Region

    details = equation.analyze()
    

    match details:
        case {'slope': slope, 'intercept': intercept}:
            details_list = [f'slope = {slope:.3f}', f'y-intercept = {intercept:.3f}']
        case {'x': x, 'y': y, 'min_max': min_max, 'concavity': concavity}:
            details_list = [f'concavity = {concavity} ', f'{min_max} = ({x:.3f},{y:.3f})']
    for detail in details_list:
        output_string += f'{detail}\n'
    
    return output_string

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36

Challenge Information:

Learn Interfaces by Building an Equation Solver - Step 64

In the quadratic equation case, a space in the min_max coordinate after the comma:
f’{min_max} = ({x:.3f},{y:.3f})’ → f’{min_max} = ({x:.3f}, {y:.3f})’

1 Like