Skip to content

Commit 13c8247

Browse files
author
BorisTestov
committed
Change templates for c#
1 parent 01ce063 commit 13c8247

File tree

15 files changed

+48
-51
lines changed

15 files changed

+48
-51
lines changed

csharp/sprint2/B/Solution.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/*
2-
// закомментируйте перед отправкой
3-
1+
#if REMOTE_JUDGE
2+
#else
43
public class Node<TValue>
54
{
65
public TValue Value { get; private set; }
@@ -12,7 +11,7 @@ public Node(TValue value, Node<TValue> next)
1211
Next = next;
1312
}
1413
}
15-
*/
14+
#endif
1615

1716
public class Solution<TValue>
1817
{

csharp/sprint2/C/Solution.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/*
2-
// закомментируйте перед отправкой
3-
1+
#if REMOTE_JUDGE
2+
#else
43
public class Node<TValue>
54
{
65
public TValue Value { get; private set; }
@@ -12,7 +11,7 @@ public Node(TValue value, Node<TValue> next)
1211
Next = next;
1312
}
1413
}
15-
*/
14+
#endif
1615

1716
public class Solution<TValue>
1817
{

csharp/sprint2/D/Solution.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/*
2-
// закомментируйте перед отправкой
3-
1+
#if REMOTE_JUDGE
2+
#else
43
public class Node<TValue>
54
{
65
public TValue Value { get; private set; }
@@ -12,7 +11,7 @@ public Node(TValue value, Node<TValue> next)
1211
Next = next;
1312
}
1413
}
15-
*/
14+
#endif
1615

1716
public class Solution
1817
{

csharp/sprint2/E/Solution.cs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*
2-
3-
// закомментируйте перед отправкой
4-
1+
#if REMOTE_JUDGE
2+
#else
53
public class Node<TValue>
64
{
75
public TValue Value { get; private set; }
@@ -15,8 +13,7 @@ public Node(TValue value, Node<TValue> next, Node<TValue> prev)
1513
Prev = prev;
1614
}
1715
}
18-
19-
*/
16+
#endif
2017

2118
public class Solution
2219
{

csharp/sprint5/A/Solution.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22

3-
/*
4-
// закомментируйте перед отправкой
3+
#if REMOTE_JUDGE
4+
#else
55
public class Node
66
{
77
public int Value { get; set; }
@@ -15,7 +15,7 @@ public Node(int value)
1515
Right = null;
1616
}
1717
}
18-
*/
18+
#endif
1919

2020
public class Solution
2121
{

csharp/sprint5/B/Solution.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22

3-
/*
4-
// закомментируйте перед отправкой
3+
#if REMOTE_JUDGE
4+
#else
55
public class Node
66
{
77
public int Value { get; set; }
@@ -15,7 +15,7 @@ public Node(int value)
1515
Right = null;
1616
}
1717
}
18-
*/
18+
#endif
1919

2020
public class Solution
2121
{

csharp/sprint5/C/Solution.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/*
2-
// закомментируйте перед отправкой
1+
#if REMOTE_JUDGE
2+
#else
33
public class Node
44
{
55
public int Value { get; set;}
@@ -13,7 +13,7 @@ public Node(int value)
1313
Right = null;
1414
}
1515
}
16-
*/
16+
#endif
1717

1818
public class Solution
1919
{

csharp/sprint5/D/Solution.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/*
2-
// закомментируйте перед отправкой
1+
#if REMOTE_JUDGE
2+
#else
33
public class Node
44
{
55
public int Value { get; set; }
@@ -13,7 +13,7 @@ public Node(int value)
1313
Right = null;
1414
}
1515
}
16-
*/
16+
#endif
1717

1818
public class Solution
1919
{

csharp/sprint5/E/Solution.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/*
2-
// закомментируйте перед отправкой
1+
#if REMOTE_JUDGE
2+
#else
33
public class Node
44
{
55
public int Value;
@@ -13,7 +13,7 @@ public Node(int value)
1313
Right = null;
1414
}
1515
}
16-
*/
16+
#endif
1717

1818
public class Solution
1919
{

csharp/sprint5/F/Solution.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/*
2-
// закомментируйте перед отправкой
1+
#if REMOTE_JUDGE
2+
#else
33
public class Node
44
{
55
public int Value { get; set; }
@@ -13,7 +13,7 @@ public Node(int value)
1313
Right = null;
1414
}
1515
}
16-
*/
16+
#endif
1717

1818
public class Solution
1919
{

0 commit comments

Comments
 (0)