Browse Source

raid3 subject

content-update
lee 5 years ago committed by Christopher Fremond
parent
commit
e2f58cd7aa
  1. 66
      subjects/raid3.en.md

66
subjects/raid3.en.md

@ -10,30 +10,58 @@ Create a program `raid3` that takes a `string` as an argument and displays the n
- All answers must end with a newline (`'\n'`).
- If there is more than one `raid1` matches, the program must display them all alphabetically ordered and separated by a `|`.
- If there is more than one `raid1` matches, the program must display them all alphabetically ordered and separated by a `||`.
### Usage
- If it's `radi1a`
```console
student@ubuntu:~/piscine-go/raid3$ ls -l
-rw-r--r-- 1 student student nov 23 14:30 raid3.go
-rwxr-xr-x 1 student student nov 23 19:18 raid3
-rwxr-xr-x 1 student student nov 23 19:50 raid1a
drwxr-xr-x 2 student student nov 23 19:02 raid1aProg
-rwxr-xr-x 1 student student nov 23 19:50 raid1b
drwxr-xr-x 2 student student nov 22 23:36 raid1bProg
-rwxr-xr-x 1 student student nov 23 19:50 raid1c
drwxr-xr-x 2 student student nov 23 19:02 raid1cProg
-rwxr-xr-x 1 student student nov 23 19:50 raid1d
drwxr-xr-x 2 student student nov 23 00:40 raid1dProg
-rwxr-xr-x 1 student student nov 23 19:50 raid1e
drwxr-xr-x 2 student student nov 23 19:02 raid1eProg
student@ubuntu:~/piscine-go/raid3$ ./raid1a 3 3 | ./raid3
[raid1a] [3] [3]
student@ubuntu:~/piscine-go/raid3$
student@ubuntu:~/piscine-go/raid3$
student@ubuntu:~/piscine-go/raid3$
student@ubuntu:~/piscine-go/raid3$
```
- If it's `raidc 1 1` :
```console
student@ubuntu:~/piscine-go/test$ go build
student@ubuntu:~/piscine-go/test$ echo HELLO | ./raid3
Not a Raid function
student@ubuntu:~/piscine-go/test$ ./raid1a 4 4
o--o
| |
| |
o--o
student@ubuntu:~/piscine-go/test$ ./raid1a 4 4 | ./raid3
[raid1a] [4] [4]
student@ubuntu:~/piscine-go/test$ ./raid1a 3 4 | ./raid3
[raid1a] [3] [4]
student@ubuntu:~/piscine-go/test$ ./raid1c 1 1
student@ubuntu:~/piscine-go/raid3$ ./raid1c 1 1
A
student@ubuntu:~/piscine-go/raid3$ ./raid1d 1 1
A
student@ubuntu:~/piscine-go/test$ ./raid1d 1 1
student@ubuntu:~/piscine-go/raid3$ ./raid1e 1 1
A
student@ubuntu:~/piscine-go/raid3$ ./raid1c 1 1 | ./raid3
[raid1c] [2] [1] || [raid1d] [2] [1] || [raid1e] [2] [1]
student@ubuntu:~/piscine-go/raid3$
```
- If it's `raidc 1 2` :
```console
student@ubuntu:~/piscine-go/raid3$ ./raid1e 1 2
A
student@ubuntu:~/piscine-go/test$ ./raid1e 1 1
C
student@ubuntu:~/piscine-go/raid3$ ./raid1c 1 2
A
student@ubuntu:~/piscine-go/test$ ./raid1c 1 1 | ./raid3
[raid1c] [1] [1] || [raid1d] [1] [1] || [raid1e] [1] [1]
student@ubuntu:~/piscine-go/test$
C
student@ubuntu:~/piscine-go/raid3$ ./raid1e 1 2 | ./raid3
[raid1c] [1] [2] || [raid1e] [1] [2]
student@ubuntu:~/piscine-go/raid3$
```

Loading…
Cancel
Save