You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.8 KiB

## quadchecker
### Instructions
This raid is based on the `quad` functions.
Create a program `quadchecker` that takes a `string` as an argument and displays the name of the matching `quad` and its dimensions.
- If the argument is not a `raid` the program should print `Not a Raid function`.
- All answers must end with a newline (`'\n'`).
- If there is more than one `quad` matches, the program must display them all alphabetically ordered and separated by a `||`.
### Usage
- If it's `quadA`
```console
student@ubuntu:~/[[ROOT]]/quadchecker$ ls -l
-rw-r--r-- 1 student student nov 23 14:30 main.go
-rwxr-xr-x 1 student student nov 23 19:18 quadchecker
-rwxr-xr-x 1 student student nov 23 19:50 quadA
-rwxr-xr-x 1 student student nov 23 19:50 quadB
-rwxr-xr-x 1 student student nov 23 19:50 quadC
-rwxr-xr-x 1 student student nov 23 19:50 quadD
-rwxr-xr-x 1 student student nov 23 19:50 quadE
student@ubuntu:~/[[ROOT]]/quadchecker$ ./quadA 3 3 | ./quadchecker
[quadA] [3] [3]
student@ubuntu:~/[[ROOT]]/quadchecker$
student@ubuntu:~/[[ROOT]]/quadchecker$
student@ubuntu:~/[[ROOT]]/quadchecker$
student@ubuntu:~/[[ROOT]]/quadchecker$
```
- If it's `quadC 1 1` :
```console
student@ubuntu:~/[[ROOT]]/quadchecker$ ./quadC 1 1
A
student@ubuntu:~/[[ROOT]]/quadchecker$ ./quadD 1 1
A
student@ubuntu:~/[[ROOT]]/quadchecker$ ./quadE 1 1
A
student@ubuntu:~/[[ROOT]]/quadchecker$ ./quadC 1 1 | ./quadchecker
[quadC] [1] [1] || [quadD] [1] [1] || [quadE] [1] [1]
student@ubuntu:~/[[ROOT]]/quadchecker$
```
- If it's `quadC 1 2` :
```console
student@ubuntu:~/[[ROOT]]/quadchecker$ ./quadE 1 2
A
C
student@ubuntu:~/[[ROOT]]/quadchecker$ ./quadC 1 2
A
C
student@ubuntu:~/[[ROOT]]/quadchecker$ ./quadE 1 2 | ./quadchecker
[quadC] [1] [2] || [quadE] [1] [2]
student@ubuntu:~/[[ROOT]]/quadchecker$
```