Initial commit

This commit is contained in:
Electrominch
2022-10-04 13:40:57 +03:00
commit c9916dabad
34 changed files with 1289 additions and 0 deletions

View File

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