2018-09-30 23:01:58 +01:00
---
id: 596fd036dc1ab896c5db98b1
2020-11-27 19:02:05 +01:00
title: Convert seconds to compound duration
2018-09-30 23:01:58 +01:00
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 302236
2021-01-13 03:31:00 +01:00
dashedName: convert-seconds-to-compound-duration
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
2019-02-25 13:36:09 +09:00
Implement a function which:
2020-11-27 19:02:05 +01:00
2019-02-25 13:36:09 +09:00
< ul >
< li > takes a positive integer representing a duration in seconds as input (e.g., < code > 100< / code > ), and< / li >
< li > returns a string which shows the same duration decomposed into weeks, days, hours, minutes, and seconds as detailed below (e.g., < code > 1 min, 40 sec< / code > ).< / li >
< / ul >
2020-11-27 19:02:05 +01:00
2019-02-25 13:36:09 +09:00
Demonstrate that it passes the following three test-cases:
2019-03-01 17:10:50 +09:00
2020-11-27 19:02:05 +01:00
< div style = 'font-size:115%; font-weight: bold;' > Test Cases< / div >
| Input number | Output number |
| ------------ | ------------------------------------- |
| 7259 | < code > 2 hr, 59 sec< / code > |
| 728640059 | < code > 1 d< / code > |
| 6000000 | < code > 9 wk, 6 d, 10 hr, 40 min< / code > |
2019-02-25 13:36:09 +09:00
< div style = "font-size:115%; font-weight: bold;" > Details< / div >
< ul >
< li >
The following five units should be used:
2019-03-01 17:10:50 +09:00
2020-11-27 19:02:05 +01:00
| Unit | Suffix used in Output | Conversion |
| ------ | --------------------- | --------------------- |
| week | < code > wk< / code > | 1 week = 7 days |
| day | < code > d< / code > | 1 day = 24 hours |
| hour | < code > hr< / code > | 1 hour = 60 minutes |
| minute | < code > min< / code > | 1 minute = 60 seconds |
| second | < code > sec< / code > | --- |
2019-02-25 13:36:09 +09:00
< / li >
< li >
2019-06-14 20:04:16 +09:00
However, < strong > only< / strong > include quantities with non-zero values in the output (e.g., return < code > 1 d< / code > and not < code > 0 wk, 1 d, 0 hr, 0 min, 0 sec< / code > ).
2019-02-25 13:36:09 +09:00
< / li >
< li >
Give larger units precedence over smaller ones as much as possible (e.g., return < code > 2 min, 10 sec< / code > and not < code > 1 min, 70 sec< / code > or < code > 130 sec< / code > ).
< / li >
< li >
Mimic the formatting shown in the test-cases (quantities sorted from largest unit to smallest and separated by comma+space; value and unit of each quantity separated by space).
< / li >
< / ul >
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --hints--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
`convertSeconds` should be a function.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(typeof convertSeconds === 'function');
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
`convertSeconds(7259)` should return `2 hr, 59 sec` .
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert.equal(convertSeconds(testCases[0]), results[0]);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
`convertSeconds(86400)` should return `1 d` .
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert.equal(convertSeconds(testCases[1]), results[1]);
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
`convertSeconds(6000000)` should return `9 wk, 6 d, 10 hr, 40 min` .
2018-09-30 23:01:58 +01:00
```js
2020-11-27 19:02:05 +01:00
assert.equal(convertSeconds(testCases[2]), results[2]);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
# --seed--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
## --after-user-code--
2018-09-30 23:01:58 +01:00
```js
2018-10-20 21:02:47 +03:00
const testCases = [7259, 86400, 6000000];
const results = ['2 hr, 59 sec', '1 d', '9 wk, 6 d, 10 hr, 40 min'];
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
function convertSeconds(sec) {
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
return true;
}
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
```js
2019-02-26 17:07:07 +09:00
function convertSeconds(sec) {
2018-09-30 23:01:58 +01:00
const localNames = ['wk', 'd', 'hr', 'min', 'sec'];
// compoundDuration :: [String] -> Int -> String
const compoundDuration = (labels, intSeconds) =>
weekParts(intSeconds)
.map((v, i) => [v, labels[i]])
.reduce((a, x) =>
a.concat(x[0] ? [`${x[0]} ${x[1] || '?'}` ] : []), []
)
.join(', ');
// weekParts :: Int -> [Int]
const weekParts = intSeconds => [0, 7, 24, 60, 60]
.reduceRight((a, x) => {
const r = a.rem;
const mod = x !== 0 ? r % x : r;
return {
rem: (r - mod) / (x || 1),
parts: [mod].concat(a.parts)
};
}, {
rem: intSeconds,
parts: []
})
.parts;
return compoundDuration(localNames, sec);
}
```