Browse Source

formating

content-update
Frenchris 5 years ago committed by GitHub
parent
commit
ff60cfcf97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 24
      subjects/range.en.md
  2. 20
      subjects/range.md

24
subjects/range.en.md

@ -0,0 +1,24 @@
## range
### Instructions
Write the function Range which must:
- allocate (with make()) an array of integers.
- fill it with consecutive values that begin at `start` and end at `end` (Including `start` and `end` !)
- finally return that array.
### Expected function
```go
func Range(start, end int) []int {
}
```
Examples of outputs :
- With (1, 3) you will return an array containing 1, 2 and 3.
- With (-1, 2) you will return an array containing -1, 0, 1 and 2.
- With (0, 0) you will return an array containing 0.
- With (0, -3) you will return an array containing 0, -1, -2 and -3.

20
subjects/range.md

@ -1,20 +0,0 @@
## range
### Instructions
Write the following functions :
```go
func Range(start, end int) []int{
}
```
It must allocate (with malloc()) an array of integers, fill it with consecutive values that begin at start and end at end (Including start and end !), then return a pointer to the first value of the array.
Example of output :
- With (1, 3) you will return an array containing 1, 2 and 3.
- With (-1, 2) you will return an array containing -1, 0, 1 and 2.
- With (0, 0) you will return an array containing 0.
- With (0, -3) you will return an array containing 0, -1, -2 and -3.
Loading…
Cancel
Save