mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-07-24 15:25:23 -04:00
Update intersection_two_arrays.py
This commit is contained in:
parent
1d556cfd04
commit
7a44401e4c
1 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# author: bt3gl
|
||||||
|
|
||||||
|
|
||||||
def intersect(nums1: list[int], nums2: list[int]) -> list[int]:
|
def intersect(nums1: list[int], nums2: list[int]) -> list[int]:
|
||||||
|
|
||||||
result = []
|
result = []
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue