What is the discrete (finite difference) Laplacian operator $\Delta_h$ in $\mathbb{R}^N$? What is the corresponding matrix $A_h$ such that $\Delta_h f = A_h \cdot f$?
On Wikipedia and on most textbooks only one or two-dimensional case is considered: $$\Delta_h f(x,y)\approx {\frac {f(x-h,y)+f(x+h,y)+f(x,y-h)+f(x,y+h)-4f(x,y)}{h^{2}}}.$$
In one dimension we have the approximation for the second derivative:
$$f^{(2)}(x)\approx \frac{f(x+h) + f(x-h) -2 f(x)}{h^2}$$
This then gives you the approximation for the second partial derivative in some particular direction, the Laplacian is the sum of the second derivatives w.r.t. all the coordinates.