Files
Leetcode/977. Squares of a Sorted Array/Program.cs
Electrominch cb2f99c3a8 Day4
2022-10-06 00:46:00 +03:00

11 lines
278 B
C#

namespace _977._Squares_of_a_Sorted_Array
{
internal class Program
{
static void Main(string[] args)
{
var res = new Solution().SortedSquares(new int[] { -7, -2,-1 });
Console.WriteLine(String.Join(" ", res));
}
}
}