1
0
mirror of https://github.com/balkian/gists.git synced 2024-10-31 23:51:44 +00:00
gists/python array and frozenset combinations/array_combination.ipynb

38 lines
1.1 KiB
Plaintext
Raw Normal View History

2014-02-24 11:39:51 +00:00
{
"metadata": {
"name": "Untitled0"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "code",
"collapsed": false,
2014-02-25 16:00:10 +00:00
"input": "a=set([3,4])\nb=set([3,7])\nc=set([4])\n",
2014-02-24 11:39:51 +00:00
"language": "python",
"metadata": {},
"outputs": [],
2014-02-25 16:00:10 +00:00
"prompt_number": 6
2014-02-24 11:39:51 +00:00
},
{
"cell_type": "code",
"collapsed": false,
2014-02-25 16:00:10 +00:00
"input": "def array_combinations(*args):\n combinations = [set([i]) for i in set(args[0])]\n for arg in args[1:]:\n tempcomb = []\n for i in set(arg):\n for c in combinations:\n c.update([i])\n tempcomb.append(c)\n if tempcomb:\n combinations = tempcomb\n return combinations\nres = array_combinations(a,b,c)\nprint res\nprint len(res)",
2014-02-24 11:39:51 +00:00
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
2014-02-25 16:00:10 +00:00
"text": "[set([3, 4, 7]), set([3, 4, 7]), set([3, 4, 7]), set([3, 4, 7])]\n4\n"
2014-02-24 11:39:51 +00:00
}
],
2014-02-25 16:00:10 +00:00
"prompt_number": 25
2014-02-24 11:39:51 +00:00
}
],
"metadata": {}
}
]
}