From f69183149e81c388103223987c26a61bac4c66c0 Mon Sep 17 00:00:00 2001 From: Lam Haoyin Date: Sat, 15 Jan 2022 11:30:42 +0800 Subject: [PATCH] feat: re-format --- 2201/220103.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/2201/220103.cpp b/2201/220103.cpp index b28e875..b87827d 100644 --- a/2201/220103.cpp +++ b/2201/220103.cpp @@ -28,6 +28,10 @@ public: }; int main() { - std::printf("%d\n", Solution::findJudge(4, {{1, 3}, {1, 4}, {2, 3}, {2, 4}, {4, 3}})); + std::printf("%d\n", Solution::findJudge(4, {{1, 3}, + {1, 4}, + {2, 3}, + {2, 4}, + {4, 3}})); return 0; }