diff --git a/subjects/eightqueens.en.md b/subjects/eightqueens.en.md index bbb89a5d0..bad19e06a 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 97601b6be..b3e9640ee 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 5587e4feb..be2643245 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 0d74ea29c..41807a057 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 889386246..9d46fee59 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 013fd1fa1..fbb0db2ae 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 f94fd895f..91c858687 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 ce9ec85d5..38953f2b7 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 a1dcb6e65..f22edcbd2 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 c9d15ce31..a75a147dd 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 228368e17..25ce83b58 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 412309987..f6d57e818 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 897e145ec..1a35bb011 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 d6837231a..c8a081a4a 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 08a8967dc..27ff990f6 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 b47509c87..867b5bcd5 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 c9d6fea62..51ec3d34d 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 34ad7fcce..2ec2efcc7 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`.