2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
id: 5966c21cf732a95f1b67dd28
|
2020-12-16 00:37:30 -07:00
|
|
|
|
title: 日期操纵
|
2018-10-10 18:03:03 -04:00
|
|
|
|
challengeType: 5
|
|
|
|
|
videoUrl: ''
|
2021-01-13 03:31:00 +01:00
|
|
|
|
dashedName: date-manipulation
|
2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --description--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
任务:
|
|
|
|
|
|
|
|
|
|
给定EST中的日期字符串,将给定日期输出为字符串,并添加12小时。
|
|
|
|
|
|
|
|
|
|
时区应该保留。
|
|
|
|
|
|
|
|
|
|
示例输入:
|
|
|
|
|
|
|
|
|
|
`"March 7 2009 7:30pm EST"`
|
|
|
|
|
|
|
|
|
|
输出示例:
|
|
|
|
|
|
|
|
|
|
`"March 8 2009 7:30am EST"`
|
|
|
|
|
|
|
|
|
|
# --hints--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
`add12Hours`是一个功能。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
```js
|
|
|
|
|
assert(typeof add12Hours === 'function');
|
|
|
|
|
```
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
`add12Hours(dateString)`应该返回一个字符串。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
|
|
```js
|
2020-12-16 00:37:30 -07:00
|
|
|
|
assert(typeof add12Hours('January 17 2017 11:43am EST') === 'string');
|
|
|
|
|
```
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
`add12Hours("" + tests[0] + "")`应该返回`"" + answers[0] + ""`
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
assert(
|
|
|
|
|
add12Hours('January 17 2017 11:43am EST') === 'January 17 2017 11:43pm EST'
|
|
|
|
|
);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
汉德尔应该改变一天。 `add12Hours("" + tests[1] + "")`应返回`"" + answers[1] + ""`
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
```js
|
|
|
|
|
assert(add12Hours('March 7 2009 7:30pm EST') === 'March 8 2009 7:30am EST');
|
|
|
|
|
```
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
汉德尔月份应该在闰年中发生变化。 `add12Hours("" + tests[2] + "")`应返回`"" + answers[2] + ""`
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
|
|
```js
|
2020-12-16 00:37:30 -07:00
|
|
|
|
assert(add12Hours('February 29 2004 9:15pm EST') === 'March 1 2004 9:15am EST');
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
应该在一个共同的年份改变汉德尔月份。 `add12Hours("" + tests[3] + "")`应该返回`"" + answers[3] + ""`
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
```js
|
|
|
|
|
assert(add12Hours('February 28 1999 3:15pm EST') === 'March 1 1999 3:15am EST');
|
|
|
|
|
```
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
汉德尔应该改变一年。 `add12Hours("" + tests[4] + "")`应该返回`"" + answers[4] + ""`
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
|
|
```js
|
2020-12-16 00:37:30 -07:00
|
|
|
|
assert(
|
|
|
|
|
add12Hours('December 31 2020 1:45pm EST') === 'January 1 2021 1:45am EST'
|
|
|
|
|
);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```
|
2020-08-13 17:24:35 +02:00
|
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
|
# --seed--
|
|
|
|
|
|
|
|
|
|
## --seed-contents--
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
function add12Hours(dateString) {
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --solutions--
|
|
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
|
```js
|
|
|
|
|
function add12Hours(dateString) {
|
|
|
|
|
const months = ['January', 'February', 'March', 'April', 'May', 'June',
|
|
|
|
|
'July', 'August', 'September', 'October', 'November', 'December'];
|
|
|
|
|
// Get the parts of the string
|
|
|
|
|
const parts = dateString.split(' ');
|
|
|
|
|
const month = months.indexOf(parts[0]);
|
|
|
|
|
const day = parseInt(parts[1], 10);
|
|
|
|
|
const year = parseInt(parts[2], 10);
|
|
|
|
|
const time = parts[3].split(':');
|
|
|
|
|
let hours = parseInt(time[0], 10);
|
|
|
|
|
if (time[1].slice(-2) === 'pm') {
|
|
|
|
|
hours += 12;
|
|
|
|
|
}
|
|
|
|
|
const minutes = parseInt(time[1].slice(0, -2), 10);
|
|
|
|
|
|
|
|
|
|
// Create a date with given parts, and updated hours
|
|
|
|
|
const date = new Date();
|
|
|
|
|
date.setFullYear(year, month, day);
|
|
|
|
|
date.setHours(hours + 12); // Add 12 hours
|
|
|
|
|
date.setMinutes(minutes);
|
|
|
|
|
|
|
|
|
|
let hoursOutput = date.getHours();
|
|
|
|
|
let abbreviation = 'am';
|
|
|
|
|
if (hoursOutput > 12) {
|
|
|
|
|
hoursOutput -= 12;
|
|
|
|
|
abbreviation = 'pm';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return `${months[date.getMonth()]} ${date.getDate()} ${date.getFullYear()} ${hoursOutput}:${date.getMinutes()}${abbreviation} EST`;
|
|
|
|
|
}
|
|
|
|
|
```
|