lfz / DSB2017

The solution of team 'grt123' in DSB2017
MIT License
1.24k stars 418 forks source link

nzhw == None -> nzhw is None #31

Closed zakizhou closed 7 years ago

zakizhou commented 7 years ago

nzhw is a np.array , nzhw == None returns a bool type np.array which is not suitable to be the condition of if(will raise error), so change it into nzhw is None

lfz commented 7 years ago

谢谢~