From 46534b83acc38239a512c977d189208a2a9f58e9 Mon Sep 17 00:00:00 2001 From: Augusto Date: Fri, 20 Dec 2019 14:07:28 +0000 Subject: [PATCH] Changing the format of the questions --- subjects/go-reloaded.audit.en.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/subjects/go-reloaded.audit.en.md b/subjects/go-reloaded.audit.en.md index 5b1ef9e14..bf81aae23 100644 --- a/subjects/go-reloaded.audit.en.md +++ b/subjects/go-reloaded.audit.en.md @@ -1,29 +1,29 @@ #### Atoi ##### Try with the argument: "" -###### Does the function Atoi returns 0?•1 +###### 0 is the ouput?•1 ##### Try with the argument: "-" -###### Does the function Atoi returns 0?•1 +###### `0` is the returned value of the function?•1 ##### Try with the argument: "+" -###### Does the function Atoi returns 0?•1 +###### `0` is the returned value of the function?•1 ##### Try with the argument: "0" -###### Does the function Atoi returns 0?•1 +###### `0` is the returned value of the function?•1 ##### Try with the argument: "+0" -###### Does the function Atoi returns 0?•1 +###### `0` is the returned value of the function?•1 ##### Try with the argument: "-Invalid123" -###### *Does the function Atoi returns 0?•7389 +###### *`0` is the returned value of the function?•7389 ##### Try with the argument: "--123" -###### Does the function Atoi returns 0?•1 +###### `0` is the returned value of the function?•1 ##### Try with the argument: "1" -###### Does the function Atoi returns 1?•1 +###### `1` is the returned value of the function?•1 ##### Try with the argument: "-3" -###### Does the function Atoi returns -3?•1 +###### `-3` is the returned value of the function?•1 ##### Try with the argument: "8292" -###### Does the function Atoi returns 8292?•1 +###### `8292` is the returned value of the function?•1 ##### Try with the argument: "9223372036854775807" -###### Does the function Atoi returns `9223372036854775807`?•1 +###### `9223372036854775807` is the returned value of the function?•1 ##### Try with the argument: "-9223372036854775808" -###### Does the function Atoi returns `-9223372036854775808`?•1 +###### `-9223372036854775808` is the returned value of the function?•1 #### RecursivePower