On 01/01/2013 08:27 PM, Brandon Merritt wrote:
> Sorry, I should have been more clear in what I was trying to accomplish. I
> am trying to build the latin square as follows:
>
> 1234567
> 2345671
> 3456712
> 4567123
> 5671234
> 6712345
> 7123456
>
> So, the "scaleorder" is the n*n scale of the squa
On 31/12/12 00:27, Steven D'Aprano wrote:
On 31/12/12 10:59, Brandon Merritt wrote:
I am having trouble figuring out a solution after a couple hours now of
playing with the code. I'm trying to make a latin square using the code
below:
I totally agree with everything Steven said.
However there
On 12/30/2012 06:59 PM, Brandon Merritt wrote:
I am having trouble figuring out a solution after a couple hours now
of playing with the code. I'm trying to make a latin square using the
code below:
scaleorder = int(raw_input('Please enter a number for an n*n square: '))
topleft = int(raw_inp
On 12/30/2012 06:59 PM, Brandon Merritt wrote:
> I am having trouble
Please tell us what Python version you're targeting. It looks like 2.7,
but you really should specify it for us.
Next, you should tell us your skill level; are you experienced at
another language and learning Python, or what?
On 31/12/12 10:59, Brandon Merritt wrote:
I am having trouble figuring out a solution after a couple hours now of
playing with the code. I'm trying to make a latin square using the code
below:
scaleorder = int(raw_input('Please enter a number for an n*n square: '))
topleft = int(raw_input('Pleas
I am having trouble figuring out a solution after a couple hours now of
playing with the code. I'm trying to make a latin square using the code
below:
scaleorder = int(raw_input('Please enter a number for an n*n square: '))
topleft = int(raw_input('Please enter the top left number for the square