Browse Source

test and resources check quest 09

pull/788/head
lee 3 years ago
parent
commit
14d51bd091
  1. 6
      subjects/advancedsortwordarr/README.md
  2. 6
      subjects/any/README.md
  3. 6
      subjects/countif/README.md
  4. 5
      subjects/doop/README.md
  5. 6
      subjects/foreach/README.md
  6. 6
      subjects/issorted/README.md
  7. 6
      subjects/map/README.md

6
subjects/advancedsortwordarr/README.md

@ -40,3 +40,9 @@ $ go run .
[1 2 3 A B C a b c]
$
```
### Notions
- [Function literals](https://golang.org/ref/spec#Function_literals)
- [Function declaration](https://golang.org/ref/spec#Function_declarations)
- [Function types](https://golang.org/ref/spec#Function_types)

6
subjects/any/README.md

@ -46,3 +46,9 @@ false
true
$
```
### Notions
- [Function literals](https://golang.org/ref/spec#Function_literals)
- [Function declaration](https://golang.org/ref/spec#Function_declarations)
- [Function types](https://golang.org/ref/spec#Function_types)

6
subjects/countif/README.md

@ -42,3 +42,9 @@ $ go run .
2
$
```
### Notions
- [Function literals](https://golang.org/ref/spec#Function_literals)
- [Function declaration](https://golang.org/ref/spec#Function_declarations)
- [Function types](https://golang.org/ref/spec#Function_types)

5
subjects/doop/README.md

@ -35,3 +35,8 @@ $ go run . 1 "*" -1
-1
$
```
### Notions
- [Numeric Types](https://golang.org/ref/spec#Numeric_types)
- [Arithmetic Operators](https://golang.org/ref/spec#Arithmetic_operators)

6
subjects/foreach/README.md

@ -34,3 +34,9 @@ $ go run .
123456
$
```
### Notions
- [Function literals](https://golang.org/ref/spec#Function_literals)
- [Function declaration](https://golang.org/ref/spec#Function_declarations)
- [Function types](https://golang.org/ref/spec#Function_types)

6
subjects/issorted/README.md

@ -48,3 +48,9 @@ true
false
$
```
### Notions
- [Function literals](https://golang.org/ref/spec#Function_literals)
- [Function declaration](https://golang.org/ref/spec#Function_declarations)
- [Function types](https://golang.org/ref/spec#Function_types)

6
subjects/map/README.md

@ -38,3 +38,9 @@ $ go run .
[false true true false true false]
$
```
### Notions
- [Function literals](https://golang.org/ref/spec#Function_literals)
- [Function declaration](https://golang.org/ref/spec#Function_declarations)
- [Function types](https://golang.org/ref/spec#Function_types)

Loading…
Cancel
Save