Update two_sums.py

This commit is contained in:
bt3gl 2023-07-30 15:56:20 -07:00 committed by GitHub
parent bed6d221fd
commit 737898f55d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 = {}