diff --git a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/convert-seconds-to-compound-duration.md b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/convert-seconds-to-compound-duration.md index c673f56d2d..740d69b7b0 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/convert-seconds-to-compound-duration.md +++ b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/convert-seconds-to-compound-duration.md @@ -22,7 +22,7 @@ Demonstrate that it passes the following three test-cases: | Input number | Output number | | ------------ | ------------------------------------- | | 7259 | 2 hr, 59 sec | -| 728640059 | 1 d | +| 86400 | 1 d | | 6000000 | 9 wk, 6 d, 10 hr, 40 min |
Details