Skip to content

Instantly share code, notes, and snippets.

View YuriiSmolii's full-sized avatar
😄
Have fun

Yurii Smolii YuriiSmolii

😄
Have fun
  • Lviv
View GitHub Profile
using System;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
namespace Gaussian_Elimination
{
public class Solve_equation
{
readonly int dimension;
#include<iostream>
using namespace std;
class Vector
{
private:
unsigned size;
double* Arr;
public:
Vector();