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

面试宝典_Python.常规算法.0001.在圆圈和框框分别填入1~8数字各一次?

时间:2016-12-24 23:28:17      阅读:731      评论:0      收藏:0      [点我收藏+]

标签:面试宝典   python   

面试题目:

技术分享

解题思路:

1. 总共8个位置,只要2个圈圈之差等于框框即可,注意倒数第3个数还要和第1个数字运算才算结束,所以可以先生成排列组合然后再通过分片偏移来获取符合条件的结果.


具体实现:

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Date    : 2016-12-24 12:19:01
# @Author  : 李满满 (xmdevops@vip.qq.com)
# @Link    : http://xmdevops.blog.51cto.com/
# @Version : $Id$

from __future__ import absolute_import
# 说明: 导入公共模块
import pprint
import itertools
# 说明: 导入其它模块


def calculation(max_num):
    result = []
    combinations = itertools.permutations(
        xrange(1, max_num + 1),
        max_num
    )
    for item in combinations:
        flag = True
        for index in range(0, max_num, 2):
            x = item[index]
            y = item[index + 1]
            z = item[0] if index == max_num - 2 else item[index + 2]
            if abs(z - x) != y:
                flag = False
                break
        if flag:
            result.append(item)

    return result


if __name__ == ‘__main__‘:
    result = calculation(8)
    pprint.pprint(result)


本文出自 “满满李 - 运维开发之路” 博客,请务必保留此出处http://xmdevops.blog.51cto.com/11144840/1885736

面试宝典_Python.常规算法.0001.在圆圈和框框分别填入1~8数字各一次?

标签:面试宝典   python   

原文地址:http://xmdevops.blog.51cto.com/11144840/1885736

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