Re: Sudoko solver

2006-07-04 Thread Ángel Gutiérrez Rodríguez
I have one myself (~400 records). it uses the simplest rules, and then trial and error, but it works so far. -- Ángel Gutiérrez Rodríguez - [EMAIL PROTECTED] Instituto de Ciencia de los Materiales de Madrid - CSIC SpLine - European Syncrothorn Radiation Facility - Grenoble - France Postal

Re: Beginner question? Classes, variables, ...

2006-06-28 Thread Ángel Gutiérrez Rodríguez
That wa sneat! Thanks! -- Ángel Gutiérrez Rodríguez - [EMAIL PROTECTED] Instituto de Ciencia de los Materiales de Madrid - CSIC SpLine - European Syncrothorn Radiation Facility - Grenoble - France Postal adress: Departamento de Química Física y Analítica Universidad de Oviedo - c/Julián

Beginner question? Classes, variables, ...

2006-06-28 Thread Ángel Gutiérrez Rodríguez
in a different file, so class X is imported. Or the only way I have is to pass 'a' as a variable in each method call of 'b' ('a' can take different values that affect to the behaviour of 'b'). Thanks in advance. -- Ángel Gutiérrez Rodríguez - [EMAIL PROTEC

Re: List of lists of lists of lists...

2006-05-15 Thread Ángel Gutiérrez Rodríguez
Robert Kern wrote: > James Stroud wrote: > http://numeric.scipy.org > Thanks! That's anotehr solution, yes! -- Ángel Gutiérrez Rodríguez - [EMAIL PROTECTED] Instituto de Ciencia de los Materiales de Madrid - CSIC SpLine - European Syncrothorn Radiation Facility - Grenoble - France

Re: List of lists of lists of lists...

2006-05-15 Thread Ángel Gutiérrez Rodríguez
bruno at modulix wrote: > for N: > mylist = [mylist] > Right that! > I'm afraid I don't understand. Could you forgive my stupidity and > re-explain this a bit more clearly ? > No need to. Former solution worked fine. Thanks! -- Ángel Gutiérrez Rodríguez - [E

List of lists of lists of lists...

2006-05-08 Thread Ángel Gutiérrez Rodríguez
an item at each possible point. Example 1: N=2 list=[2,3] result=[[1,2],[1,2],[1,2]] Example 2: N=3 list=[3,1,2] result=[[[1,2,3]],[[1,2,3]]] -- Ángel Gutiérrez Rodríguez - [EMAIL PROTECTED] Instituto de Ciencia de los Materiales de Madrid - CSIC SpLine - European Syncrothorn Radiation Facility

Re: GUI - Windows: Where to get started

2005-07-26 Thread Ángel Gutiérrez Rodríguez
Well, Tkinter module (Tk) would be the simplestway to do it.. and it is included in your Windows Python distribution... -- http://mail.python.org/mailman/listinfo/python-list