leetcode/main.cpp
2025-05-21 14:26:13 +03:00

6 lines
131 B
C++

#include <gtest/gtest.h>
int main(int argc, char** argv) {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}