Browse Source

more corrections

pull/489/head
lee 4 years ago committed by Xavier Petit
parent
commit
68d89f10da
  1. 1
      subjects/anagram.en.md
  2. 2
      subjects/atoiprog.en.md
  3. 2
      subjects/listpushparams.en.md
  4. 3
      subjects/point.fr.md
  5. 1
      subjects/sortll.en.md
  6. 2
      subjects/splitprog.fr.md

1
subjects/anagram.en.md

@ -34,6 +34,7 @@ Here is a possible program to test your function:
```go
package main
import (
piscine ".."
"fmt"

2
subjects/atoiprog.en.md

@ -13,7 +13,7 @@ This means that:
### Instructions
- Write a [function](TODO-LINK) that simulates the behaviour of the `Atoi` function in Go. `Atoi` transforms a number represented as a `string` in a number represented as an `int`.
- Write a function that simulates the behaviour of the `Atoi` function in Go. `Atoi` transforms a number represented as a `string` in a number represented as an `int`.
- `Atoi` returns `0` if the `string` is not considered as a valid number. For this exercise **non-valid `string` chains will be tested**. Some will contain non-digits characters.

2
subjects/listpushparams.en.md

@ -6,8 +6,6 @@ Write a program that creates a new linked list and includes each command-line ar
- The first argument should be at the end of the list
````
And its output :
```console

3
subjects/point.fr.md

@ -6,8 +6,7 @@ Créer un fichier `.go`.
- Le code ci-dessous doit être copié dans ce fichier.
- Les changements nécéssaires doivent être appliquer et the code below into that file
and do the necessary changes so that the program works.
- Les changements nécéssaires doivent être appliquer et the code below into that file and do the necessary changes so that the program works.
- Le programme doit être rendu dans un dossier nommé `boolean`.

1
subjects/sortll.en.md

@ -32,6 +32,7 @@ func Sortll(node *NodeAddL) *NodeAddL {
```
### Usage
Here is a possible program to test your function:
```go

2
subjects/splitprog.fr.md

@ -11,7 +11,6 @@ Cela signifie que:
- La fonction main déclarée doit **aussi passer** le `Restrictions Checker`(le testeur de fonctions illégales). Il est conseillé à l'étudiant de rendre une fonction main vide après ses tests finis.
- Toutes les autres régles sont les mêmes que pour un `programme`.
### Instructions
Écrire une fonction qui sépare les mots d'une `string`, qui les met dans un tableau de `string`.
@ -44,7 +43,6 @@ func main() {
}
```
Et son résultat :
```console

Loading…
Cancel
Save