diff --git a/cpp/2302/230227.cpp b/cpp/2302/230227.cpp new file mode 100644 index 0000000..a9b0335 --- /dev/null +++ b/cpp/2302/230227.cpp @@ -0,0 +1,7 @@ +/** + * 427. Construct Quad Tree + * Given a n * n matrix grid of 0's and 1's only. We want to represent the grid with a Quad-Tree. + * Return the root of the Quad-Tree representing the grid. + * + * Refer: 220429-CN.cpp + */