Skip to content

Commit cd22fe4

Browse files
authored
sync docs (#374)
1 parent adda039 commit cd22fe4

File tree

2 files changed

+22
-14
lines changed

2 files changed

+22
-14
lines changed

exercises/practice/saddle-points/.docs/instructions.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ Or it might have one, or even several.
1313
Here is a grid that has exactly one candidate tree.
1414

1515
```text
16-
1 2 3 4
17-
|-----------
18-
1 | 9 8 7 8
19-
2 | 5 3 2 4 <--- potential tree house at row 2, column 1, for tree with height 5
20-
3 | 6 6 7 1
16+
17+
1 2 3 4
18+
|-----------
19+
1 | 9 8 7 8
20+
→ 2 |[5] 3 2 4
21+
3 | 6 6 7 1
2122
```
2223

2324
- Row 2 has values 5, 3, 2, and 4. The largest value is 5.

exercises/practice/swift-scheduling/.docs/instructions.md

+16-9
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,19 @@ There are two variable delivery date description patterns:
3232
- `"<N>M"` (N-th month)
3333
- `"Q<N>"` (N-th quarter)
3434

35-
| Description | Meeting start | Delivery date |
36-
| ----------- | -------------------------- | ----------------------------------------------------------- |
37-
| `"<N>M"` | Before N-th month | At 8:00 on the _first_ workday¹ of this year's N-th month |
38-
| `"<N>M"` | After or in N-th month | At 8:00 on the _first_ workday¹ of next year's N-th month |
39-
| `"Q<N>"` | Before or in N-th quarter² | At 8:00 on the _last_ workday¹ of this year's N-th quarter² |
40-
| `"Q<N>"` | After N-th quarter² | At 8:00 on the _last_ workday¹ of next year's N-th quarter² |
41-
42-
¹ A workday is a Monday, Tuesday, Wednesday, Thursday, or Friday.
43-
² A year has four quarters, each with three months: January/February/March, April/May/June, July/August/September, and October/November/December.
35+
| Description | Meeting start | Delivery date |
36+
| ----------- | ------------------------- | --------------------------------------------------------- |
37+
| `"<N>M"` | Before N-th month | At 8:00 on the _first_ workday of this year's N-th month |
38+
| `"<N>M"` | After or in N-th month | At 8:00 on the _first_ workday of next year's N-th month |
39+
| `"Q<N>"` | Before or in N-th quarter | At 8:00 on the _last_ workday of this year's N-th quarter |
40+
| `"Q<N>"` | After N-th quarter | At 8:00 on the _last_ workday of next year's N-th quarter |
41+
42+
~~~~exercism/note
43+
A workday is a Monday, Tuesday, Wednesday, Thursday, or Friday.
44+
45+
A year has four quarters, each with three months:
46+
1. January/February/March
47+
2. April/May/June
48+
3. July/August/September
49+
4. October/November/December.
50+
~~~~

0 commit comments

Comments
 (0)