The function I saw has a "->int" sign after the declaration statement.
class Solution:
def numUniqueEmails(self, emails: List[str]) -> int:
What does it mean? And how can it be used or the best practices to follow? Thanks in advance.
The function I saw has a "->int" sign after the declaration statement.
class Solution:
def numUniqueEmails(self, emails: List[str]) -> int:
What does it mean? And how can it be used or the best practices to follow? Thanks in advance.