문제) www.codewars.com/kata/52742f58faf5485cae000b9a/train/python Codewars: Achieve mastery through challenge Codewars is where developers achieve code mastery through challenge. Train on kata in the dojo and reach your highest potential. www.codewars.com 내가 푼 답) def format_duration(seconds): if seconds == 0: return "now" time = { "sec": seconds, "min": 0, "hour": 0, "day": 0, "year": 0 } a_to_b(t..