-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
31 lines (26 loc) · 768 Bytes
/
Program.cs
File metadata and controls
31 lines (26 loc) · 768 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
using System;
using System.Collections.Generic;
using System.IO.Pipes;
using System.Linq;
using System.Reflection.Metadata.Ecma335;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace Algorithm
{
internal class Program
{
public static void Main(string[] args)
{
//int[] arr = A_1_29_greatestDivisor_LeastMultiple.solution(12,8);
//foreach (int i in arr) { Console.Write(i); }
//Console.WriteLine(A_1_30_ternary_scale.solution(45));
Test();
}
public static void Test()
{
P_2_명예의_전당 a = new P_2_명예의_전당();
a.solution(3, new int[] { 10,100,20,150,1,100,200 });
}
}
}