What are some known results for finding an exact n-dimensional subarray inside a n-dimensional array?
In 1D, it is just a string matching problem, KMP does it in linear time.
In 2D, this paper shown it can be done in linear time with little extra space.
Can this problem be solved in linear time worst case for any fixed dimension?