10 lines
198 B
C#
10 lines
198 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 });
|
|
}
|
|
} |