generated from b1ackviking/cpp-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.cpp
More file actions
36 lines (27 loc) · 685 Bytes
/
template.cpp
File metadata and controls
36 lines (27 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
* File : __FILE_NAME__
* Project : leetcode-cpp
* Author : Wei Tan <tanwei.winterreise@gmail.com>
* Date : __CREATE_DATE__
* Last Modified Date: __LAST_MODIFIED_DATE__
* Last Modified By : Wei Tan <tanwei.winterreise@gmail.com>
*/
/**
* [__PROBLEM_ID__] __PROBLEM_TITLE__
*
* __PROBLEM_DESC__
*/
// problem: __PROBLEM_LINK__
// discuss: __DISCUSS_LINK__
__STL_INCLUDES__
using namespace std;
__EXTRA_USE__
// submission codes start here
__PROBLEM_DEFAULT_CODE__
// submission codes end
#if defined(ENABLE_GTEST)
#include <gtest/gtest.h>
TEST(Problem__PROBLEM_ID__, Example1) {
// add assertions here
}
#endif