leetcode 1470. 配列pythonの行を並べ替えてsum()関数時報エラーunsupported operand type(s)for+:‘int’and‘tuple’の問題を解決する
class Solution:
def shuffle(self, nums: List[int], n: int) -> List[int]:
return sum(zip(nums[:n],nums[n:]),())
zip() , sum() 。
sum() ,
sum(zip(nums[:n],nums[n:])) # ()
:TypeError: unsupported operand type(s) for +: 'int' and 'tuple'
sum()
sum(iterable[, start])
:
iterable -- , : 、 、 。
start -- , , 0。
0, int tuple 。
() , , 。