Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
93 changes: 0 additions & 93 deletions Lab6/Blue.cs
Original file line number Diff line number Diff line change
@@ -1,94 +1 @@
namespace Lab6
{
public class Blue
{
public void Task1(ref int[,] matrix)
{

// code here

// end

}
public int Task2(int[,] A, int[,] B, int[,] C)
{
int answer = 0; // 1 - increasing 0 - no sequence -1 - decreasing

// code here

// end

return answer;
}
public void Task3(ref int[,] matrix, Func<int[,], int> method)
{

// code here

// end

}
public void Task4(ref int[,] matrix)
{

// code here

// end

}
public void Task5(ref int[,] matrix, Finder find)
{

// code here

// end

}
public void Task6(int[,] matrix, SortRowsStyle sort)
{

// code here

// end

}
public void Task7(int[,] matrix, ReplaceMaxElements transform)
{

// code here

// end

}
public double[,] Task8(double a, double b, double h, Func<double, double> getSum, Func<double, double> getY)
{
double[,] answer = null;

// code here

// end

return answer;
}
public int Task9(int[,] matrix, GetTriangle triangle)
{
int answer = 0;

// code here

// end

return answer;
}
public bool Task10(int[][] array, Predicate<int[][]> func)
{
bool res = false;

// code here

// end

return res;
}
}
}
96 changes: 0 additions & 96 deletions Lab6/Green.cs
Original file line number Diff line number Diff line change
@@ -1,97 +1 @@
using System.Linq;
using System.Runtime.InteropServices;

namespace Lab6
{
public class Green
{
public void Task1(ref int[] A, ref int[] B)
{

// code here

// end

}
public void Task2(int[,] matrix, int[] array)
{

// code here

// end

}
public void Task3(int[,] matrix)
{

// code here

// end

}
public void Task4(ref int[,] matrix)
{

// code here

// end

}
public int[] Task5(int[,] matrix)
{
int[] answer = null;

// code here

// end

return answer;
}
public int[] Task6(int[,] A, int[,] B)
{
int[] answer = null;

// code here

// end

return answer;
}
public void Task7(int[,] matrix, Sorting sort)
{

// code here

// end

}
public int Task8(double[] A, double[] B)
{
int answer = 0;

// code here

// end

return answer;
}
public void Task9(int[,] matrix, Action<int[]> sorter)
{

// code here

// end

}
public double Task10(int[][] array, Func<int[][], double> func)
{
double res = 0;

// code here

// end

return res;
}
}
}
95 changes: 0 additions & 95 deletions Lab6/Purple.cs
Original file line number Diff line number Diff line change
@@ -1,96 +1 @@
using System;
using System.Security.Cryptography;
using static System.Runtime.InteropServices.JavaScript.JSType;

namespace Lab6
{
public class Purple
{
public void Task1(int[,] A, int[,] B)
{

// code here

// end

}
public void Task2(ref int[,] A, int[,] B)
{

// code here

// end

}
public void Task3(int[,] matrix)
{

// code here

// end

}
public void Task4(int[,] A, int[,] B)
{

// code here

// end

}
public void Task5(int[] matrix, Sorting sort)
{

// code here

// end

}
public void Task6(int[,] matrix, SortRowsByMax sort)
{

// code here

// end

}
public int[] Task7(int[,] matrix, FindNegatives find)
{
int[] negatives = null;

// code here

// end

return negatives;
}
public int[,] Task8(int[,] matrix, MathInfo info)
{
int[,] answer = null;

// code here

// end

return answer;
}
public int Task9(double a, double b, double h, Func<double, double> func)
{
int answer = 0;

// code here

// end

return answer;
}
public void Task10(int[][] array, Action<int[][]> func)
{

// code here

// end

}
}
}
Loading
Loading