“Python Common Elements in zwei Arrays” Code-Antworten

Finden Sie die Anzahl der gemeinsamen Elemente in zwei Python -Array

len([x for x in list1 if x in list2])
Stranger danger

Gleiche Elemente von zwei Sätzen in Python

x = {2, 3, 5, 6}
y = {1, 2, 3, 4}

z = x.intersection(y)
Bst Barracuda

Python Common Elements in zwei Arrays

# using numpy
import numpy as np
a = np.array([1,2,3,2,3,4,3,4,5,6])
b = np.array([7,2,10,2,7,4,9,4,9,8])
# using intersect1d
print(np.intersect1d(a,b))
# output
# [2 4]
Precious Panda

Ähnliche Antworten wie “Python Common Elements in zwei Arrays”

Fragen ähnlich wie “Python Common Elements in zwei Arrays”

Weitere verwandte Antworten zu “Python Common Elements in zwei Arrays” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen