标签: excel excel-formula
如果作业在表2中列为要计数的作业(即作业F和G),我如何计算John在表1中完成的所有作业(由字母表示)。因此,对于约翰而言,总数应为2(2 * F),对于彼得,它也应为2(1*G and 1*F)。
2
2 * F
1*G and 1*F
答案 0 :(得分:0)
作为CSE的数组公式。
(defn nth-fibo [i] (cond (= i 1) 1 (= i 2) 1 :else (+ (nth-fibo (- i 1)) (nth-fibo (- i 2))))) (defn fibos [i] (loop [x i] (when (> x 0) (cons (nth-fibo x) (fibos (- x 1)))))) (reverse (fibos 5))