def searchandfind (nums,target) :
t1=nums.find(target)
t2=nums.rfind(target)
return [t1,t2]
这段代码,在我自己的pycharm能运行,没问题,但是在leetcode网站上写就一直报错
NameError: global name 'Solution' is not defined
AttributeError: Solution instance has no attribute 'searchRange'
尝试在开头加上class Solution () : 后报第二个错,不加就报第一个错