Determinant Calculator
Calcula o determinante de qualquer matriz quadrada
Loading...
Searching...
No Matches
common.h
Go to the documentation of this file.
1
6#ifndef COMMON_H
7# define COMMON_H
8
9# include <vector>
10
11namespace det {
12
13// Um alias para o tipo matriz
14using Matrix = std::vector<std::vector<int>>;
15
16} // namespace det
17
18#endif // !COMMON_H
19#define COMMON_H