From edf9989e595d66b55bd35826f358061a9b7f1bf7 Mon Sep 17 00:00:00 2001 From: Prashant <42613882+PrashantSakre@users.noreply.github.com> Date: Wed, 26 May 2021 00:43:18 +0530 Subject: [PATCH] fix: Typo in "Convert seconds to compound duration" (#42248) * fix: Typo in "Convert seconds to compound duration" * fix: spacing Co-authored-by: PrashantSakre --- .../rosetta-code/convert-seconds-to-compound-duration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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