LeetCode Python List 类型

在使用 Python3 语言解答 LeetCode 题目时,预先写好的函数头中, 经常看到 List, 注意是大写的 L。例如经典的 two-sum 一题:


class Solution:
    def twoSum(self, nums: List[int], target: int) -> List[int]:

如果粘贴如上代码到 VSCode,会不识别,显示为 warning.

解决办法是导入 List 类, 是 python 内置的:

from typing import List

你可能感兴趣的:(leetcode,python,算法)