mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-05-22 08:21:12 -04:00
Update two_sums.py
This commit is contained in:
parent
bed6d221fd
commit
737898f55d
1 changed files with 5 additions and 0 deletions
|
@ -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 = {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue