I try to solve Pattern Recognition.
Input: Two arguments. A pattern as a list of lists and an image as a list of lists.
But when I run my solution, I get
Fail: checkio([[[1,0,0],[0,1,0],[0,0,1]],[[1,0,0,0,1,0,1,0,1],[0,1,0,0,0,1,0,1,0],[0,0,1,0,0,0,1,0,1],[1,0,0,1,0,0,0,1,0],[0,0,0,0,1,0,0,0,1],[0,1,0,0,0,1,0,0,0],[0,1,0,0,0,0,1,0,1]]])
It's look like Input: List of two arguments. Why so?
Created at: 2014/04/09 18:26; Updated at: 2014/04/09 20:36