diff --git a/arrays_and_strings/intersection_two_arrays.py b/arrays_and_strings/intersection_two_arrays.py index 1a3a81d..984d2fd 100644 --- a/arrays_and_strings/intersection_two_arrays.py +++ b/arrays_and_strings/intersection_two_arrays.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# author: bt3gl + + def intersect(nums1: list[int], nums2: list[int]) -> list[int]: result = []