kata题目

My little sister came back home from school with the following task:given a squared sheet of paper she has to cut it in pieceswhich, when assembled, give squares the sides of which forman increasing sequence of numbers.At the beginning it was lot of fun but little by little we were tired of seeing the pile of torn paper.So we decided to write a program that could help us and protects trees.

Examples

decompose(11) must return [1,2,4,10]. Note that there are actually two ways to decompose 11²,11² = 121 = 1 + 4 + 16 + 100 = 1² + 2² + 4² + 10² but don't return [2,6,9], since 9 is smaller than 10.

For decompose(50) don't return [1, 1, 4, 9, 49] but [1, 3, 5, 8, 49] since [1, 1, 4, 9, 49]doesn't form a strictly increasing sequence.


python:


def decompose(n):
    def recurse(s,i):
        if s<0:
            return None
        if s == 0:
            return []
        for j in xrange(i - 1,0,-1):
            sub = recurse(s-j**2,j)
            if sub != None:
                return sub+[j]
    return recurse(n**2,n)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值