Browse Source

docs: Add readme for sum subject

DEV-3241-DEV-3242-corewar
estlop 2 years ago committed by Dav Hojt
parent
commit
31ded86687
  1. 42
      subjects/sum/README.md

42
subjects/sum/README.md

@ -0,0 +1,42 @@
## sum
### Instructions
Write a function that takes two single digit numbers as a string and returns the sum as an int. If one of the arguments is not a single digit number, return 0;
### Expected function
```go
func Sum(a,b string) int {
}
```
### Usage
Here is a possible program to test your function :
```go
package main
import (
"piscine"
"fmt"
)
func main() {
fmt.Println(piscine.Sum("1", "2"))
fmt.Println(piscine.Sum("-4", "0"))
fmt.Println(piscine.Sum("7", "-3"))
}
```
And its output :
```console
$ go run . | cat -e
3$
-4$
4$
$
```
Loading…
Cancel
Save