码迷,mamicode.com
首页 > 编程语言 > 详细

小学题的python实现

时间:2015-01-06 17:05:56      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

用1-8八个数字不重复使用,组成两个四位数,其中一个是另一个的四倍。

 

#encoding:utf8
from itertools import *

def delSrc(i, l):
	l.pop(l.index(i))
	return l

def makeStr(l):
        s = ""
        for i in l:
            s += str(i)
        return s

if __name__ == ‘__main__‘:
    num = [1,2,3,4,5,6,7,8]
    for i in combinations(num, 4):
        l = num
        for j in i:
        	l = delSrc(j,list(l))
        str1, str2 = makeStr(i), makeStr(l)
        p, q = list(permutations(str1)), list(permutations(str2))
        for m in p:
            for n in q:
                s1,s2 = "",""
                for a, b in zip(m,n):
                    s1 +=a
                    s2 +=b
                if int(s1) == 4 * int(s2) or int(s2) == int(s1):
                    print s1, s2

 

  

  

小学题的python实现

标签:

原文地址:http://www.cnblogs.com/huangxiaohen/p/4206287.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!