How can I improve complexity on this function?

前端 未结 0 1406
名媛妹妹
名媛妹妹 2021-02-15 05:23
import unittest
import math


def find(f, y, a, b):
    for n in range(int(a),int(b+1)):
        if f(n) == y:
            return n
    else:
        return -1


class T         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题