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 이번 문제는 단순히 입력받은 두 값을 곱한 결과값을 리턴하는 문제입니다. 너무 단순해서 그냥 정리용으로 올립니다. func multiply(_ a: Double, _ b: Double) -> Double { // Write here your multiply-function return a * b }