📅  最后修改于: 2022-03-11 14:49:25.895000             🧑  作者: Mango
# return tuple or null
def solve s,g
s % g != 0 ? -1 : [g, s - g]
end
# FYI: the problem to solve is:
# Given the sum and gcd of two numbers, return the two numbers in ascending order.