leetrs 1.0.8

A command-line tool to interact with LeetCode.
Documentation
1
2
3
4
5
6
7
8
9
# id=1 slug=two-sum lang=python3

from typing import List


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