大家好,最近開始預備在leetcode練習,
先挑了一個非常簡單的題目,也很快就做出要求
但發現正式提交後卻出現了Runtime error的情況,
難道說leetcode的程式編輯區格式要完整的保留嗎 ?
以下是原格式
class Solution(object):
def twoSum(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: List[int]
"""
我想說這程式才幾行而已幹嘛用Class 就只寫Function和輸出輸入而已
。