feat: re-format

This commit is contained in:
Lam Haoyin 2022-01-15 11:30:42 +08:00
parent 2b7010b25f
commit f69183149e
No known key found for this signature in database
GPG Key ID: 8C089CB1A2B7544F
1 changed files with 5 additions and 1 deletions

View File

@ -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;
}