mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.1 KiB
52 lines
1.1 KiB
6 years ago
|
## basicatoi2
|
||
6 years ago
|
|
||
6 years ago
|
### Instructions
|
||
6 years ago
|
|
||
5 years ago
|
- 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`.
|
||
6 years ago
|
|
||
5 years ago
|
- 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.
|
||
6 years ago
|
|
||
5 years ago
|
- For this exercise the handling of the signs `+` or `-` does not have to be taken into account.
|
||
6 years ago
|
|
||
5 years ago
|
- This function will **only** have to return the `int`. For this exercise the `error` return of atoi is not required.
|
||
6 years ago
|
|
||
5 years ago
|
### Expected function
|
||
6 years ago
|
|
||
|
```go
|
||
|
func BasicAtoi2(s string) int {
|
||
|
|
||
|
}
|
||
|
```
|
||
|
|
||
6 years ago
|
### Usage
|
||
6 years ago
|
|
||
5 years ago
|
Here is a possible program to test your function :
|
||
6 years ago
|
|
||
|
```go
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
piscine ".."
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
5 years ago
|
fmt.Println(piscine.BasicAtoi2("12345"))
|
||
|
fmt.Println(piscine.BasicAtoi2("0000000012345"))
|
||
|
fmt.Println(piscine.BasicAtoi2("012 345"))
|
||
|
fmt.Println(piscine.BasicAtoi2("Hello World!"))
|
||
6 years ago
|
}
|
||
|
```
|
||
|
|
||
|
And its output :
|
||
|
|
||
|
```console
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
||
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
||
6 years ago
|
12345
|
||
|
12345
|
||
|
0
|
||
|
0
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$
|
||
6 years ago
|
```
|