Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 09cf96e

Browse files
committed
fixed B task
1 parent 3146281 commit 09cf96e

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

cpp/sprint2/B/code.cpp

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
1+
// ! Remove define before submitting !
2+
#define local
3+
4+
#ifndef local
15
#include "solution.h"
6+
#endif
7+
8+
9+
#ifdef local
10+
11+
#include <string>
212

3-
/*
4-
Comment it before submitting
513
struct Node {
614
std::string value;
715
Node* next;
816
Node(const std::string &value, Node* next);
917
};
10-
*/
18+
19+
#endif
1120

1221
void solution(Node* head) {
1322
// Your code

0 commit comments

Comments
 (0)