Browse Source

test and resources for quest-02

pull/786/head
lee 3 years ago
parent
commit
d2d521d62b
  1. 4
      subjects/isnegative/README.md
  2. 4
      subjects/printalphabet/README.md
  3. 8
      subjects/printcomb/README.md
  4. 4
      subjects/printcomb2/README.md
  5. 8
      subjects/printcombn/README.md
  6. 4
      subjects/printdigits/README.md
  7. 5
      subjects/printnbr/README.md
  8. 4
      subjects/printreversealphabet/README.md

4
subjects/isnegative/README.md

@ -37,3 +37,7 @@ F
T
$
```
### Notions
- [01-edu/z01](https://github.com/01-edu/z01)

4
subjects/printalphabet/README.md

@ -13,3 +13,7 @@ $ go run .
abcdefghijklmnopqrstuvwxyz
$
```
### Notions
- [01-edu/z01](https://github.com/01-edu/z01)

8
subjects/printcomb/README.md

@ -36,6 +36,10 @@ $ go run . | cat -e
$
```
`000` or `999` are not valid combinations because the digits are not different.
- `000` or `999` are not valid combinations because the digits are not different.
`987` should not be shown because the first digit is not less than the second.
- `987` should not be shown because the first digit is not less than the second.
### Notions
- [01-edu/z01](https://github.com/01-edu/z01)

4
subjects/printcomb2/README.md

@ -35,3 +35,7 @@ $ go run . | cat -e
00 01, 00 02, 00 03, ..., 00 98, 00 99, 01 02, 01 03, ..., 97 98, 97 99, 98 99$
$
```
### Notions
- [01-edu/z01](https://github.com/01-edu/z01)

8
subjects/printcombn/README.md

@ -8,7 +8,7 @@
below are your references for the **printing format** expected.
- (for n = 1) '0, 1, 2, 3, ...8, 9'
- (for n = 1) '0, 1, 2, 3, ..., 8, 9'
- (for n = 3) '012, 013, 014, 015, 016, 017, 018, 019, 023,...689, 789'
@ -45,3 +45,9 @@ $ go run .
012345678, 012345679, ..., 123456789
$
```
> Be mindful of your program efficiency to avoid timeouts.
### Notions
- [01-edu/z01](https://github.com/01-edu/z01)

4
subjects/printdigits/README.md

@ -13,3 +13,7 @@ $ go run .
0123456789
$
```
### Notions
- [01-edu/z01](https://github.com/01-edu/z01)

5
subjects/printnbr/README.md

@ -40,3 +40,8 @@ $ go run .
-1230123
$
```
### Notions
- [01-edu/z01](https://github.com/01-edu/z01)
- [numeric types](https://golang.org/ref/spec#Numeric_types)

4
subjects/printreversealphabet/README.md

@ -15,3 +15,7 @@ $ go run .
zyxwvutsrqponmlkjihgfedcba
$
```
### Notions
- [01-edu/z01](https://github.com/01-edu/z01)

Loading…
Cancel
Save