Day6. Namespace style
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
namespace _977._Squares_of_a_Sorted_Array
|
||||
namespace _977._Squares_of_a_Sorted_Array;
|
||||
|
||||
internal class Program
|
||||
{
|
||||
internal class Program
|
||||
static void Main(string[] args)
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var res = new Solution().SortedSquares(new int[] { -7, -2, -1 });
|
||||
Console.WriteLine(String.Join(" ", res));
|
||||
}
|
||||
var res = new Solution().SortedSquares(new int[] { -7, -2, -1 });
|
||||
Console.WriteLine(String.Join(" ", res));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user