summaryrefslogtreecommitdiff
path: root/8p14.cpp
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-10-06 23:05:52 +0200
committerOskar <[email protected]>2024-10-06 23:05:52 +0200
commitee020f14877e5ed1708147a22133e9a413a948f1 (patch)
treee066b98e81ccab2bc02dc508919447beb17674b0 /8p14.cpp
parent0921163e1f88c8e80991f0c94e0fc70c6dcba72d (diff)
more
Diffstat (limited to '8p14.cpp')
-rw-r--r--8p14.cpp21
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;
+}