Files
Leetcode/724. Find Pivot Index/Program.cs
Electrominch c9916dabad Initial commit
2022-10-04 13:40:57 +03:00

11 lines
229 B
C#

namespace _724._Find_Pivot_Index
{
internal class Program
{
static void Main(string[] args)
{
Solution sol = new Solution();
sol.PivotIndex(new int[] { 1,4,2});
}
}
}