This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Somewhere up there */ | |
#include <array> | |
using namespace std; | |
/* Type aliases to simplify code */ | |
using ArrayType = int; // Or something else | |
using Type = ArrayType; // To make examples more 'general', ffs | |
const constexpr size_t arraySize = 10; //Again, just for demo |