From 661eeae5bc39e1b1a8c8787f1dc9228db588fae0 Mon Sep 17 00:00:00 2001 From: lee Date: Wed, 2 Jun 2021 17:33:44 +0100 Subject: [PATCH] test and resources for quest-03 --- subjects/atoi/README.md | 6 +++++- subjects/basicatoi/README.md | 6 +++++- subjects/basicatoi2/README.md | 8 ++++++-- subjects/divmod/README.md | 10 +++++++--- subjects/pointone/README.md | 6 +++++- subjects/printstr/README.md | 4 ++++ subjects/strrev/README.md | 2 +- subjects/swap/README.md | 6 +++++- subjects/ultimatedivmod/README.md | 10 +++++++--- subjects/ultimatepointone/README.md | 6 +++++- 10 files changed, 50 insertions(+), 14 deletions(-) diff --git a/subjects/atoi/README.md b/subjects/atoi/README.md index 99e6d291..19da105d 100644 --- a/subjects/atoi/README.md +++ b/subjects/atoi/README.md @@ -8,7 +8,7 @@ - For this exercise the handling of the signs + or - **does have** to be taken into account. -- This function will **only** have to return the `int`. For this exercise the `error` result of atoi is not required. +- This function will **only** have to return the `int`. For this exercise the `error` result of `Atoi` is not required. ### Expected function @@ -56,3 +56,7 @@ $ go run . 0 $ ``` + +### Notions + +- [strconv/Atoi](https://golang.org/pkg/strconv/#Atoi) diff --git a/subjects/basicatoi/README.md b/subjects/basicatoi/README.md index 7f3c9cdd..174ded4a 100644 --- a/subjects/basicatoi/README.md +++ b/subjects/basicatoi/README.md @@ -4,7 +4,7 @@ - Write a function that simulates the behaviour of the `Atoi` function in Go. `Atoi` transforms a number defined as a `string` in a number defined as an `int`. -- Atoi returns `0` if the `string` is not considered as a valid number. For this exercise **only valid** `string` will be tested. They will only contain one or several digits as characters. +- `Atoi` returns `0` if the `string` is not considered as a valid number. For this exercise **only valid** `string` will be tested. They will only contain one or several digits as characters. - For this exercise the handling of the signs `+` or `-` does not have to be taken into account. @@ -46,3 +46,7 @@ $ go run . 0 $ ``` + +### Notions + +- [strconv/Atoi](https://golang.org/pkg/strconv/#Atoi) diff --git a/subjects/basicatoi2/README.md b/subjects/basicatoi2/README.md index ed4e88a5..615b08f2 100644 --- a/subjects/basicatoi2/README.md +++ b/subjects/basicatoi2/README.md @@ -4,11 +4,11 @@ - Write a function that simulates the behaviour of the `Atoi` function in Go. `Atoi` transforms a number defined as a `string` in a number defined 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. +- `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. - For this exercise the handling of the signs `+` or `-` does not have to be taken into account. -- This function will **only** have to return the `int`. For this exercise the `error` return of atoi is not required. +- This function will **only** have to return the `int`. For this exercise the `error` return of `Atoi` is not required. ### Expected function @@ -48,3 +48,7 @@ $ go run . 0 $ ``` + +### Notions + +- [strconv/Atoi](https://golang.org/pkg/strconv/#Atoi) diff --git a/subjects/divmod/README.md b/subjects/divmod/README.md index 70d12264..30ca56f8 100644 --- a/subjects/divmod/README.md +++ b/subjects/divmod/README.md @@ -12,9 +12,9 @@ func DivMod(a int, b int, div *int, mod *int) { } ``` -- This function will divide the int **a** and **b**. -- The result of this division will be stored in the int pointed by **div**. -- The remainder of this division will be stored in the int pointed by **mod**. +- This function will divide the `int` **a** and **b**. +- The result of this division will be stored in the `int` pointed by **div**. +- The remainder of this division will be stored in the `int` pointed by **mod**. ### Usage @@ -47,3 +47,7 @@ $ go run . 1 $ ``` + +### Notions + +- [Pointers](https://golang.org/ref/spec#Pointer_types) diff --git a/subjects/pointone/README.md b/subjects/pointone/README.md index 458caee3..8ab4b4e7 100644 --- a/subjects/pointone/README.md +++ b/subjects/pointone/README.md @@ -2,7 +2,7 @@ ### Instructions -- Write a function that takes a **pointer to an int** as argument and gives to this int the value of 1. +- Write a function that takes a **pointer to an `int`** as argument and gives to this `int` the value of 1. ### Expected function @@ -38,3 +38,7 @@ $ go run . 1 $ ``` + +### Notions + +- [Pointers](https://golang.org/ref/spec#Pointer_types) diff --git a/subjects/printstr/README.md b/subjects/printstr/README.md index 8d6f20c3..2d272318 100644 --- a/subjects/printstr/README.md +++ b/subjects/printstr/README.md @@ -33,3 +33,7 @@ $ go run . | cat -e Hello World!% $ ``` + +### Notions + +- [01-edu/z01](https://github.com/01-edu/z01) diff --git a/subjects/strrev/README.md b/subjects/strrev/README.md index 314aa244..741abdec 100644 --- a/subjects/strrev/README.md +++ b/subjects/strrev/README.md @@ -4,7 +4,7 @@ - Write a function that reverses a `string`. -- This function will **return** the s `string`. +- This function will **return** the reversed `string`. ### Expected function diff --git a/subjects/swap/README.md b/subjects/swap/README.md index 8f29bb0d..0c5b36f1 100644 --- a/subjects/swap/README.md +++ b/subjects/swap/README.md @@ -2,7 +2,7 @@ ### Instructions -- Write a function that swaps the contents of two **pointers to an int** (`*int`). +- Write a function that swaps the contents of two **pointers to an `int`** (`*int`). ### Expected function @@ -41,3 +41,7 @@ $ go run . 0 $ ``` + +### Notions + +- [Pointers](https://golang.org/ref/spec#Pointer_types) diff --git a/subjects/ultimatedivmod/README.md b/subjects/ultimatedivmod/README.md index ff89b802..ee236c6f 100644 --- a/subjects/ultimatedivmod/README.md +++ b/subjects/ultimatedivmod/README.md @@ -12,9 +12,9 @@ func UltimateDivMod(a *int, b *int) { } ``` -- This function will divide the int **a** and **b**. -- The result of this division will be stored in the int pointed by **a**. -- The remainder of this division will be stored in the int pointed by **b**. +- This function will divide the `int` **a** and **b**. +- The result of this division will be stored in the `int` pointed by **a**. +- The remainder of this division will be stored in the `int` pointed by **b**. ### Usage @@ -45,3 +45,7 @@ $ go run . 1 $ ``` + +### Notions + +- [Pointers](https://golang.org/ref/spec#Pointer_types) diff --git a/subjects/ultimatepointone/README.md b/subjects/ultimatepointone/README.md index 0fbfe182..d407179e 100644 --- a/subjects/ultimatepointone/README.md +++ b/subjects/ultimatepointone/README.md @@ -2,7 +2,7 @@ ### Instructions -- Write a function that takes a **pointer to a pointer to a pointer to an int** as argument and gives to this int the value of 1. +- Write a function that takes a **pointer to a pointer to a pointer to an `int`** as argument and gives to this `int` the value of 1. ### Expected function @@ -40,3 +40,7 @@ $ go run . 1 $ ``` + +### Notions + +- [Pointers](https://golang.org/ref/spec#Pointer_types)