Codewars note: Twice as old

My Codewars

描述:

你的函数有两个参数:

  1. 当前父亲的年龄(岁)
  2. 儿子现在的年龄(岁)

计算多少年前父亲的年龄是儿子的两倍(或多少年后他将是儿子的两倍)。

 

Solution:

def twice_as_old(f, s):
    return abs(f - s * 2)

:abs(x) 取数值绝对值

posted @ 2022-07-06 18:29  大序列  阅读(32)  评论(0编辑  收藏  举报