close
    def kidsWithCandies(candies, extraCandies):
        list=[]
        for item in candies:
            if int(item)+extraCandies>=int(max(candies)):
                list.append("true")
            else:
                list.append("false")
        return list

上面的不知道為什麼一直報錯,list裡面的元素都是true.. 但是在自己的電腦上跑看起來沒問題啊

I don’t know why the above code has been reported error,all the elements in the list are true .. But running on my own computer looks fine

class Solution:
    def kidsWithCandies(self, candies: List[int], extraCandies: int) -> List[bool]:
        lista=[]
        for item in candies:
            lista.append(item+extraCandies>=max(candies))
        return lista

Write it in another way

換了一種方式寫就過了


arrow
arrow
    文章標籤
    leetcode python3 1431
    全站熱搜
    創作者介紹
    創作者 低階ㄇㄋ 的頭像
    低階ㄇㄋ

    蟲匯聚之所

    低階ㄇㄋ 發表在 痞客邦 留言(0) 人氣()