From 7a44401e4c064931644727d7ce6393cdd0378789 Mon Sep 17 00:00:00 2001 From: bt3gl <138340846+bt3gl-google@users.noreply.github.com> Date: Sun, 30 Jul 2023 15:55:34 -0700 Subject: [PATCH] Update intersection_two_arrays.py --- arrays_and_strings/intersection_two_arrays.py | 5 +++++ 1 file changed, 5 insertions(+) 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 = []