diff options
author | Oskar <[email protected]> | 2024-10-06 23:05:52 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-10-06 23:05:52 +0200 |
commit | ee020f14877e5ed1708147a22133e9a413a948f1 (patch) | |
tree | e066b98e81ccab2bc02dc508919447beb17674b0 /8p14.cpp | |
parent | 0921163e1f88c8e80991f0c94e0fc70c6dcba72d (diff) |
more
Diffstat (limited to '8p14.cpp')
-rw-r--r-- | 8p14.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/8p14.cpp b/8p14.cpp new file mode 100644 index 0000000..1fc3c1e --- /dev/null +++ b/8p14.cpp @@ -0,0 +1,21 @@ + +/* + * + * 8.14 + * + * + */ + +int main () { + + /* + + They are references because the vectors could be very + large and passing a reference means it does not have to + be copied. + + Const is because the data only needs to be read. + + */ + return 0; +} |