是否可以比较2个div的内容,如果有任何内容匹配,请从第2个实例中删除它?
在下面的示例中,我们会看到“2018春季会议”已经出现在h2中,因此我们将目标从下面的列表项目中删除。
理想情况下,我们会留下“会员注册”,“非会员注册”和“访客注册”。
values
答案 0 :(得分:3)
在这里,您可以使用jQuery(fiddle)
import numpy as np
from numpy import linalg as la
def CramersRule(A,b):
for c in range (n):
detA1 = la.det(A)
A[:,c] = b.transpose()
print A
x = la.det(A)/detA1
print ("X%d: ")%(c+1),x
n = input ("Enter size of matrix nxn: ")
coeff_matrix = input ("\nEnter coefficient matrix A: ")
vec_constants = input ("Enter vector of constants b: ")
A = np.array(coeff_matrix)
b = np.array(vec_constants)
print A
CramersRule(A, b)