Browse Source

fix links

content-update
MSilva95 3 years ago committed by Christopher Fremond
parent
commit
e2e95fa446
  1. 4
      subjects/lem-in/README.md
  2. 22
      subjects/lem-in/audit/README.md
  3. 4
      subjects/push-swap/README.md
  4. 2
      subjects/push-swap/audit/README.md

4
subjects/lem-in/README.md

@ -93,12 +93,12 @@ Which corresponds to the following representation :
- The program must handle errors carefully. In no way can it quit in an unexpected manner.
- The coordinates of the rooms will always be `int`.
- Your project must be written in **Go**.
- The code must respect the [**good practices**](https://public.01-edu.org/subjects/good-practices/).
- The code must respect the [**good practices**](https://[[DOMAIN]]/root/public/src/branch/master/subjects/good-practices/README.md).
- It is recommended that the code should present a **test file**.
### Allowed packages
- Only the [standard go](https://golang.org/pkg/) packages are allowed.
- Only the [standard Go](https://golang.org/pkg/) packages are allowed.
### Usage

22
subjects/lem-in/audit/README.md

@ -24,7 +24,7 @@ Lx-y
###### Are the commands and the ants movements printed with the right format? One line per turn, `N` movements per turn, movements defined by `Lx-y` `x` being the ant and `y` being the room, as it shows above?
##### Try running the program with [example00](https://public.01-edu.org/subjects/lem-in/examples/).
##### Try running the program with [example00](https://[[DOMAIN]]/root/public/src/branch/master/subjects/lem-in/examples/README.md).
```
$ go run . example00.txt
@ -50,7 +50,7 @@ $
###### Does it present the quickest path possible with the same number of turns as the result above?
##### Try running the program with [example01](https://public.01-edu.org/subjects/lem-in/examples/).
##### Try running the program with [example01](https://[[DOMAIN]]/root/public/src/branch/master/subjects/lem-in/examples/README.md).
```
$ go run . example01.txt
@ -102,7 +102,7 @@ $
###### Does it present the quickest path possible with the same number of turns as the result above?
##### Try running the program with [example02](https://public.01-edu.org/subjects/lem-in/examples/).
##### Try running the program with [example02](https://[[DOMAIN]]/root/public/src/branch/master/subjects/lem-in/examples/README.md).
```
$ go run . example02.txt
@ -124,7 +124,7 @@ $
###### Does it present the quickest path possible with the same number of turns as the result above?
##### Try running the program with [example03](https://public.01-edu.org/subjects/lem-in/examples/).
##### Try running the program with [example03](https://[[DOMAIN]]/root/public/src/branch/master/subjects/lem-in/examples/README.md).
```
$ go run . example03.txt
@ -156,7 +156,7 @@ $
###### Does it present the quickest path possible with the same number of turns as the result above?
##### Try running the program with [example04](https://public.01-edu.org/subjects/lem-in/examples/).
##### Try running the program with [example04](https://[[DOMAIN]]/root/public/src/branch/master/subjects/lem-in/examples/README.md).
```
$ go run . example04.txt
@ -189,7 +189,7 @@ $
###### Does it present the quickest path possible with the same number of turns as the result above?
##### Try running the program with [example05](https://public.01-edu.org/subjects/lem-in/examples/).
##### Try running the program with [example05](https://[[DOMAIN]]/root/public/src/branch/master/subjects/lem-in/examples/README.md).
```
$ go run . example05.txt
@ -273,7 +273,7 @@ $
###### Does it present the quickest path possible with the same number of turns as the result above?
##### Try running the program with [badexample00](https://public.01-edu.org/subjects/lem-in/examples/).
##### Try running the program with [badexample00](https://[[DOMAIN]]/root/public/src/branch/master/subjects/lem-in/examples/README.md).
```
$ go run . badexample00.txt
@ -283,7 +283,7 @@ $
###### Does it present the right result as above?
##### Try running the program with [badexample01](https://public.01-edu.org/subjects/lem-in/examples/).
##### Try running the program with [badexample01](https://[[DOMAIN]]/root/public/src/branch/master/subjects/lem-in/examples/README.md).
```
$ go run . badexample01.txt
@ -293,11 +293,11 @@ $
###### Does it present at least the result above?
##### Try running the program with [example06](https://public.01-edu.org/subjects/lem-in/examples/) and with 100 ants.
##### Try running the program with [example06](https://[[DOMAIN]]/root/public/src/branch/master/subjects/lem-in/examples/README.md) and with 100 ants.
###### Is the real time less than 1.5 minutes?
##### Try running the program with [example07](https://public.01-edu.org/subjects/lem-in/examples/) and with 1000 ants.
##### Try running the program with [example07](https://[[DOMAIN]]/root/public/src/branch/master/subjects/lem-in/examples/README.md) and with 1000 ants.
###### Is the real time less than 2.5 minutes?
@ -337,7 +337,7 @@ $
###### +Are the tests checking each possible case?
###### +Does the code obey the [good practices](https://public.01-edu.org/subjects/good-practices/)?
###### +Does the code obey the [good practices](https://[[DOMAIN]]/root/public/src/branch/master/subjects/good-practices/README.md)?
#### Social

4
subjects/push-swap/README.md

@ -135,14 +135,14 @@ $
### Instructions
- Your project must be written in **Go**.
- The code must respect the [**good practices**](https://public.01-edu.org/subjects/good-practices/).
- The code must respect the [**good practices**](https://[[DOMAIN]]/root/public/src/branch/master/subjects/good-practices/README.md).
- It is recommended that the code should present a **test file**.
- The first executable file must be named **checker** and the second **push-swap**.
- You have to be able to handle the errors.
### Allowed packages
- Only the [standard go](https://golang.org/pkg/) packages are allowed
- Only the [standard Go](https://golang.org/pkg/) packages are allowed
### Usage

2
subjects/push-swap/audit/README.md

@ -92,7 +92,7 @@ OK
#### Basic
###### +Does the code obey the [good practices](https://public.01-edu.org/subjects/good-practices/)?
###### +Does the code obey the [good practices](https://[[DOMAIN]]/root/public/src/branch/master/subjects/good-practices/README.md)?
###### +Is there a test file for this code?

Loading…
Cancel
Save