1757. 可回收且低脂的产品 题目链接:1757. 可回收且低脂的产品 代码如下: # Write your MySQL query statement belowselect product_id from Products where low_fats='Y' and recyclable='Y'
Lele now is thinking about a simple function f(x). If x < 10 f(x) = x. If x >= 10 f(x) = a0 * f(x-1) + a1 * f(x-2) + a2 * f(x-3) + …… + a9 * f(x-10); And ai(0<=i<=9) can only be 0 or 1 .