diff --git a/subjects/eightqueens.en.md b/subjects/eightqueens.en.md index bbb89a5d..bad19e06 100644 --- a/subjects/eightqueens.en.md +++ b/subjects/eightqueens.en.md @@ -1,6 +1,6 @@ ## eightqueens -### Intructions +### Instructions Write a function that prints the solutions to the [eight queens puzzle](https://en.wikipedia.org/wiki/Eight_queens_puzzle). diff --git a/subjects/eightqueens.fr.md b/subjects/eightqueens.fr.md index 97601b6b..b3e9640e 100644 --- a/subjects/eightqueens.fr.md +++ b/subjects/eightqueens.fr.md @@ -1,6 +1,6 @@ ## eightqueens -### Intructions +### Instructions Écrire une [fonction](TODO-LINK) qui affiche toutes les solutions du [problème des huit dames](https://en.wikipedia.org/wiki/Eight_queens_puzzle). diff --git a/subjects/fibonacci.en.md b/subjects/fibonacci.en.md index 5587e4fe..be264324 100644 --- a/subjects/fibonacci.en.md +++ b/subjects/fibonacci.en.md @@ -1,6 +1,6 @@ ## fibonacci -### Intructions +### Instructions Write an **recursive** function that returns the value of fibonacci sequence matching the index passed as parameter. diff --git a/subjects/fibonacci.fr.md b/subjects/fibonacci.fr.md index 0d74ea29..41807a05 100644 --- a/subjects/fibonacci.fr.md +++ b/subjects/fibonacci.fr.md @@ -1,6 +1,6 @@ ## fibonacci -### Intructions +### Instructions Écrire une fonction **récursive** qui renvoie la valeur de la suite de fibonacci correspondant à l'index passé en paramètre. diff --git a/subjects/findnextprime.en.md b/subjects/findnextprime.en.md index 88938624..9d46fee5 100644 --- a/subjects/findnextprime.en.md +++ b/subjects/findnextprime.en.md @@ -1,6 +1,6 @@ ## findnextprime -### Intructions +### Instructions Write a function that returns the first prime number that is equal or superior to the `int` passed as parameter. diff --git a/subjects/findnextprime.fr.md b/subjects/findnextprime.fr.md index 013fd1fa..fbb0db2a 100644 --- a/subjects/findnextprime.fr.md +++ b/subjects/findnextprime.fr.md @@ -1,6 +1,6 @@ ## findnextprime -### Intructions +### Instructions Écrire une fonction qui renvoie le premier nombre premier qui est égal ou supérieur à l'`int` passé en paramètre. diff --git a/subjects/isprime.en.md b/subjects/isprime.en.md index f94fd895..91c85868 100644 --- a/subjects/isprime.en.md +++ b/subjects/isprime.en.md @@ -1,6 +1,6 @@ ## isprime -### Intructions +### Instructions Write a function that returns `true` if the `int` passed as parameter is a prime number. Otherwise it returns `false`. diff --git a/subjects/isprime.fr.md b/subjects/isprime.fr.md index ce9ec85d..38953f2b 100644 --- a/subjects/isprime.fr.md +++ b/subjects/isprime.fr.md @@ -1,6 +1,6 @@ ## isprime -### Intructions +### Instructions Écrire une fonction qui renvoie `true` si l'`int` passé en paramètre est un nombre premier. Autrement elle renvoie `false`. diff --git a/subjects/iterativefactorial.en.md b/subjects/iterativefactorial.en.md index a1dcb6e6..f22edcbd 100644 --- a/subjects/iterativefactorial.en.md +++ b/subjects/iterativefactorial.en.md @@ -1,6 +1,6 @@ ## iterativefactorial -### Intructions +### Instructions Write an **iterative** function that returns the factorial of the `int` passed as parameter. diff --git a/subjects/iterativefactorial.fr.md b/subjects/iterativefactorial.fr.md index c9d15ce3..a75a147d 100644 --- a/subjects/iterativefactorial.fr.md +++ b/subjects/iterativefactorial.fr.md @@ -1,6 +1,6 @@ ## iterativefactorial -### Intructions +### Instructions Écrire une fonction **itérative** qui renvoie la factorielle d'un `int` passé en paramètre. diff --git a/subjects/iterativepower.en.md b/subjects/iterativepower.en.md index 228368e1..25ce83b5 100644 --- a/subjects/iterativepower.en.md +++ b/subjects/iterativepower.en.md @@ -1,6 +1,6 @@ ## iterativepower -### Intructions +### Instructions Write an **iterative** function that returns the power of the `int` passed as parameter. diff --git a/subjects/iterativepower.fr.md b/subjects/iterativepower.fr.md index 41230998..f6d57e81 100644 --- a/subjects/iterativepower.fr.md +++ b/subjects/iterativepower.fr.md @@ -1,6 +1,6 @@ ## iterativepower -### Intructions +### Instructions Écrire une fonction **itérative** qui renvoie la puissance de deux `int` passés en paramètre. diff --git a/subjects/recursivefactorial.en.md b/subjects/recursivefactorial.en.md index 897e145e..1a35bb01 100644 --- a/subjects/recursivefactorial.en.md +++ b/subjects/recursivefactorial.en.md @@ -1,6 +1,6 @@ ## recursivefactorial -### Intructions +### Instructions Write a **recursive** function that returns the factorial of the `int` passed as parameter. diff --git a/subjects/recursivefactorial.fr.md b/subjects/recursivefactorial.fr.md index d6837231..c8a081a4 100644 --- a/subjects/recursivefactorial.fr.md +++ b/subjects/recursivefactorial.fr.md @@ -1,6 +1,6 @@ ## recursivefactorial -### Intructions +### Instructions Écrire une fonction **récursive** qui renvoie la factorielle d'un `int` passé en paramètre. diff --git a/subjects/recursivepower.en.md b/subjects/recursivepower.en.md index 08a8967d..27ff990f 100644 --- a/subjects/recursivepower.en.md +++ b/subjects/recursivepower.en.md @@ -1,6 +1,6 @@ ## recursivepower -### Intructions +### Instructions Write an **recursive** function that returns the power of the `int` passed as parameter. diff --git a/subjects/recursivepower.fr.md b/subjects/recursivepower.fr.md index b47509c8..867b5bcd 100644 --- a/subjects/recursivepower.fr.md +++ b/subjects/recursivepower.fr.md @@ -1,6 +1,6 @@ ## recursivepower -### Intructions +### Instructions Écrire une fonction **récursive** qui renvoie la puissance de deux `int` passés en paramètre. diff --git a/subjects/sqrt.en.md b/subjects/sqrt.en.md index c9d6fea6..51ec3d34 100644 --- a/subjects/sqrt.en.md +++ b/subjects/sqrt.en.md @@ -1,6 +1,6 @@ ## sqrt -### Intructions +### Instructions Write a function that returns the square root of the `int` passed as parameter if that square root is a whole number. Otherwise it returns `0`. diff --git a/subjects/sqrt.fr.md b/subjects/sqrt.fr.md index 34ad7fcc..2ec2efcc 100644 --- a/subjects/sqrt.fr.md +++ b/subjects/sqrt.fr.md @@ -1,6 +1,6 @@ ## sqrt -### Intructions +### Instructions Écrire une fonction qui renvoie la racine carré d'un `int` passé en paramètre as parameter si cette racine carré est un nombre entier. Autrement elle renvoie `0`.