面试问题实录

  1. 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)
  1. 简单说一下各种排序(快排,冒泡,插入)

  2. 怎么解决过拟合的问题?交叉验证的方法有哪些?
    https://blog.csdn.net/bitcarmanlee/article/details/121402995

  3. 请说一下CNN并计算,96x96x3 K = 5 padding = 2 step = 1
    (96+2x2-5)/1

  4. 剩下的就是一些项目的问题了。

posted @ 2022-11-03 12:51  AAA建材王师傅  阅读(24)  评论(0)    收藏  举报