From bed2fe14d3b5f8bf95ec69dd25c92b2dad9ba4c2 Mon Sep 17 00:00:00 2001 From: Augusto Date: Fri, 20 Dec 2019 18:42:22 +0000 Subject: [PATCH] Trying different ways of presenting the questions --- subjects/go-reloaded.audit.en.md | 36 +++++++++++++++++++++----------- 1 file changed, 24 insertions(+), 12 deletions(-) diff --git a/subjects/go-reloaded.audit.en.md b/subjects/go-reloaded.audit.en.md index bcb285add..ac2324149 100644 --- a/subjects/go-reloaded.audit.en.md +++ b/subjects/go-reloaded.audit.en.md @@ -1,29 +1,41 @@ #### Atoi ##### Try with the argument: "" -###### `0` Is the ouput?•1 +`0` +###### Is it this the value returned by the function?•1 ##### Try with the argument: "-" -###### `0` Is the returned value of the function?•1 +`0` +###### Is it this the value returned by the function?•1 ##### Try with the argument: "+" -###### `0` Is the returned value of the function?•1 +`0` +###### Is it this the value returned by the function?•1 ##### Try with the argument: "0" -###### `0` Is the returned value of the function?•1 +`0` +###### Is it this the value returned by the function?•1 ##### Try with the argument: "+0" -###### `0` Is the returned value of the function?•1 +`0` +###### Does the function returns the value above?•1 ##### Try with the argument: "-Invalid123" -###### *`0` Is the returned value of the function?•7389 +`0` +###### *Is the returned value of the function?•7389 ##### Try with the argument: "--123" -###### `0` Is the returned value of the function?•1 +`0` +###### Is it this the value returned by the function?•1 ##### Try with the argument: "1" -###### `1` Is the returned value of the function?•1 +###### Does the function returns the following value?•1 +`1` ##### Try with the argument: "-3" -###### `-3` Is the returned value of the function?•1 +###### Does the function returns the following value?•1 +`-3` ##### Try with the argument: "8292" -###### `8292` Is the returned value of the function?•1 +###### Does the function returns the following value?•1 +`8292` ##### Try with the argument: "9223372036854775807" -###### `9223372036854775807` Is the returned value of the function?•1 +###### Does the function returns the following value?•1 +`9223372036854775807` ##### Try with the argument: "-9223372036854775808" -###### `-9223372036854775808` Is the returned value of the function?•1 +###### Does the function returns the following value?•1 +`-9223372036854775808` #### RecursivePower