面试问题实录
- list a =[1,1,2,3] ; list b = [1,2,4,4]
result: c = [2,4,4]
# solution
c=[]
same = list(set(a) & set(b))
for i in a:
if i not in same:
c.append(i)
for i in b:
if i not in same:
c.append(i)
-
简单说一下各种排序(快排,冒泡,插入)
-
怎么解决过拟合的问题?交叉验证的方法有哪些?
https://blog.csdn.net/bitcarmanlee/article/details/121402995 -
请说一下CNN并计算,96x96x3 K = 5 padding = 2 step = 1
(96+2x2-5)/1 -
剩下的就是一些项目的问题了。