Hi, i m beginner on LC, i solved Easy tasks on Hackerrank, but now decided to solve tasks here.
I just started to learn Algorythms and DataStructures.
Could anyone explain what does this mean:
nums: List[int], target: int) -> List[int]
in string:
def twoSum(self, nums: List[int], target: int) -> List[int]:
For example, in "Two Sum" exercise. I didnt find such info. I understand it is a list, but what does it mean exactly? i didn't meet something like this on Hackerrank. I use Python.