Utah Python Users Group

2005-04-13 Thread lugal
Is anyone aware if there's a Utah-based Python User Group? If not, does any else from Utah have any interest in forming a Utah-based Python User Group? -- http://mail.python.org/mailman/listinfo/python-list

Python to C++ conversion substituting vectors for lists in a recursive function

2005-03-23 Thread lugal
I'm new to C++, coming from a Python background. I wrote the following code in C++ based on the Python code found here: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/302478 //beginning #include #include using namespace std; void looper(vector > nseq, vector comb); vector > master;