python compare arrays code example
Example 1: python section of array compare
def binary_isArrayInArray(main_array, compare_array):
for i in range(len(main_array)-len(compare_array)):
temp_array = []
for j in range(len(compare_array)):
temp_array.append(main_array[i + j])
print(f'{temp_array} xor {compare_array} = {np.any(np.logical_xor(temp_array, compare_array))}')
if np.any(np.logical_xor(temp_array, compare_array)) == False: return True
return False
Example 2: python compare two arrays
a = [1, 2, 3, 4]
b = [5, 6, 7]
c = [1, 2, 3, 4]
a == b
a == c