Skip to content

Commit 0f6a6bb

Browse files
committed
Updated the expected output for C concatenate challenge (MonashDeepNeuron/HPC-Training#34).
1 parent cabf00b commit 0f6a6bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

challenges/intro-to-c/concat/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Expected Output
44

55
```sh
6-
{ 0, 1, 2, 3, 4 }
7-
{ 5, 6, 7, 8, 9 }
8-
{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }
6+
a = { 0, 1, 2, 3, 4 }
7+
b = { 5, 6, 7, 8, 9 }
8+
concat(a, b) = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }
99
```

0 commit comments

Comments
 (0)