From 737898f55ddfed9e3994bcf8aa3bf0711223b74c Mon Sep 17 00:00:00 2001 From: bt3gl <138340846+bt3gl-google@users.noreply.github.com> Date: Sun, 30 Jul 2023 15:56:20 -0700 Subject: [PATCH] Update two_sums.py --- arrays_and_strings/two_sums.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/arrays_and_strings/two_sums.py b/arrays_and_strings/two_sums.py index 9f8b32f..ac133e5 100644 --- a/arrays_and_strings/two_sums.py +++ b/arrays_and_strings/two_sums.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# author: bt3gl + + def two_sum(nums: list[int], target: int) -> list[int]: aux_dict = {}