intersection of three sorted arrays

🏠
1class Solution:
2    def arraysIntersection(self, arr1: List[int], arr2: List[int], arr3: List[int]) -> List[int]:
3        return sorted(set(arr1) & set(arr2) & set(arr3))