Skip to content

Commit cb77e84

Browse files
committed
Minor changes
1 parent f07f4f3 commit cb77e84

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The list of challenges were originally coded in C++. Challenge solution with
22
dates have been coded in C# and exist in this solution.
33

4-
Challenge: C# Date: Class:
5-
Kaprekars Constant 02/16/2021 Kaprekar
4+
Challenge: C# Date: Class:
5+
Kaprekars Constant 02/16/2021 Kaprekar

Coderbyte_CSharp/Program.cs

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@ static void Main(string[] args)
1616
TestChallenge tc = new TestChallenge();
1717

1818
// Easy
19-
//tc.Test_TimeConvert();
20-
//tc.Test_AlphabetSoup();
21-
//tc.Test_ArithGeoSequence();
22-
//tc.Test_Palindrome();
23-
//tc.Test_NumberCheck();
24-
//tc.Test_FindIntersection();
19+
tc.Test_TimeConvert();
20+
tc.Test_AlphabetSoup();
21+
tc.Test_ArithGeoSequence();
22+
tc.Test_Palindrome();
23+
tc.Test_NumberCheck();
24+
tc.Test_FindIntersection();
2525

2626
// Medium
27-
//tc.Test_Consecutive();
28-
//tc.Test_KUniqueCharacters();
29-
//tc.Test_NumberEncoding();
30-
//tc.Test_PrimeMover();
31-
//tc.Test_MinWindowSubstring();
32-
//tc.Test_RunLength();
33-
//tc.Test_StringReduction();
34-
//tc.Test_TreeConstructor();
27+
tc.Test_Consecutive();
28+
tc.Test_KUniqueCharacters();
29+
tc.Test_NumberEncoding();
30+
tc.Test_PrimeMover();
31+
tc.Test_MinWindowSubstring();
32+
tc.Test_RunLength();
33+
tc.Test_StringReduction();
34+
tc.Test_TreeConstructor();
3535

3636
// Hard
3737
tc.Test_KaprekarsConstant();

0 commit comments

Comments
 (0)