This repository was archived by the owner on Mar 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathdates.ts
91 lines (88 loc) · 2.73 KB
/
dates.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import { Problem } from "./calc";
// If today is Monday, what day will it be in 100 days?
// If today is January 1st, what day will it be in 365 days?
// If today is January 1st, what day will it be in 730 days?
// If today is January 1st, what day was it 100 days ago?
// If today is January 1st, what day was it 365 days ago?
// If today is January 1st, what day was it 730 days ago?
// How many days are there between January 1st and December 31st of the same year?
// How many days are there between January 1st of one year and December 31st of the next year?
// How many weeks are there between January 1st and December 31st of the same year?
// How many weeks are there between January 1st of one year and December 31st of the next year?
function dayOfWeekCalc(): Problem[] {
return [
{
id: `date-0001`,
grade: `8`,
kind: `date`,
question: `If today is Monday, what day will it be in 100 days?`,
expected: "Wednesday",
},
{
id: `date-0002`,
grade: `8`,
kind: `date`,
question: `If today is January 1st 2021, what is the date in 365 days?`,
expected: "January 1st 2022",
},
{
id: `date-0003`,
grade: `8`,
kind: `date`,
question: `If today is April 25th 2023, what is the date in 1 week?`,
expected: "May 2nd 2023",
},
{
id: `date-0004`,
grade: `8`,
kind: `date`,
question: `If today is April 25th 2023, what is the date in 2 weeks and 2 days?`,
expected: "May 11th 2023",
},
{
id: `date-0005`,
grade: `8`,
kind: `date`,
question: `How many days are there between April 25th and May 11th, inclusive?`,
expected: "17",
},
{
id: `date-0006`,
grade: `8`,
kind: `date`,
question: `How many days are there between April 25th and May 11th, excluding the last day?`,
expected: "16",
},
{
id: `date-0007`,
grade: `8`,
kind: `date`,
question: `If today is April 25th, what day was 30 days ago?`,
expected: "March 26th",
},
{
id: `date-0008`,
grade: `8`,
kind: `date`,
question: `If today is February 27th 2004, what is the date in 2 weeks and 2 days?`,
expected: "March 14th 2004",
},
{
id: `date-0009`,
grade: `8`,
kind: `date`,
question: `A payment is made every Tuesday. How many payments are made between 3rd April 2023 and 26th April 2023?`,
expected: "4",
},
{
id: `date-0010`,
grade: `8`,
kind: `date`,
question: `A payment is made every Tuesday. How many payments are made between 5th April 2023 and 28th April 2023?`,
expected: "3",
},
];
}
export function getProblems() {
return [...dayOfWeekCalc()];
}