smithlenwood3268 smithlenwood3268 24-05-2023 Computers and Technology contestada write a recursive function that computes comb(n, r), where n >= r and r >= 0. comb(n, r) = 1 if n == r or r == 0 comb(n, r) = comb(n - 1, r) comb(n - 1, r - 1)