From 2cc35c392a5623c362d7a4e3a248154d9f6a6664 Mon Sep 17 00:00:00 2001 From: Eatswap Date: Tue, 28 Feb 2023 20:41:42 +0800 Subject: [PATCH] add: 230227 --- cpp/2302/230227.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 cpp/2302/230227.cpp 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 + */