Initial Course
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
#include "multidimensional.hpp"
|
||||
|
||||
namespace arrays {
|
||||
|
||||
auto create_matrix(int rows, int cols, int fill) -> Matrix { (void)rows; (void)cols; (void)fill; return {}; }
|
||||
auto transpose(const Matrix& matrix) -> Matrix { (void)matrix; return {}; }
|
||||
auto row_sums(const Matrix& matrix) -> std::vector<int> { (void)matrix; return {}; }
|
||||
|
||||
} // namespace arrays
|
||||
Reference in New Issue
Block a user