-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathProgram.cs
More file actions
63 lines (57 loc) · 1.94 KB
/
Program.cs
File metadata and controls
63 lines (57 loc) · 1.94 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
using System;
namespace Coderbyte_CSharp
{
class Program
{
// ReSharper disable once UnusedParameter.Local
static void Main(string[] args)
{
Console.WriteLine("Welcome to Coderbyte C-Sharp code challenge solutions...");
Console.WriteLine();
TestChallenge tc = new TestChallenge();
// Easy
Console.WriteLine("Easy Code Challenges:");
tc.Test_TimeConvert();
tc.Test_AlphabetSoup();
tc.Test_ArithGeoSequence();
tc.Test_Palindrome();
tc.Test_NumberCheck();
tc.Test_FindIntersection();
tc.Test_FirstFactorial();
tc.Test_FirstReverse();
tc.Test_LetterChanges();
tc.Test_LetterCapitalize();
tc.Test_PowerOfTwo();
tc.Test_ProductDigits();
tc.Test_OtherProducts();
tc.Test_VowelSquare();
tc.Test_LongestWord();
tc.Test_MovingMedian();
tc.Test_QuestionsMarks();
tc.Test_RemoveBrackets();
tc.Test_FibonacciChecker();
tc.Test_SimpleAdding();
tc.Test_SimpleSymbols();
tc.Test_StringPeriods();
tc.Test_UsernameValidation();
// Medium
Console.WriteLine("Medium Code Challenges:");
tc.Test_Consecutive();
tc.Test_KUniqueCharacters();
tc.Test_NumberEncoding();
tc.Test_PrimeMover();
tc.Test_MinWindowSubstring();
tc.Test_RunLength();
tc.Test_StringReduction();
tc.Test_TreeConstructor();
tc.Test_SymmetricTree();
tc.Test_PreorderTraversal();
// Hard
Console.WriteLine("Hard Code Challenges:");
tc.Test_ChessboardTraveling();
tc.Test_KaprekarsConstant();
tc.Test_Determinant();
Console.ReadKey();
}
}
}