Day6. Namespace style

This commit is contained in:
Electrominch
2022-10-07 16:36:27 +03:00
parent 62104da8f1
commit 5cae083979
51 changed files with 589 additions and 202 deletions

View File

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