Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!ecngs!feeder2.ecngs.de!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed4a.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.164 X-Spam-Level: * X-Spam-Evidence: '*H*': 0.69; '*S*': 0.01; 'column': 0.07; 'squares': 0.07; 'intersection': 0.16; 'valid.': 0.16; 'wrote:': 0.18; 'proposed': 0.22; 'mon,': 0.24; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; 'covered': 0.32; 'becomes': 0.33; 'could': 0.34; 'but': 0.35; 'received:google.com': 0.35; 'similar': 0.36; 'changing': 0.37; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'dave': 0.60; "you're": 0.61; 'box,': 0.64; 'become': 0.64; '30,': 0.65; 'between': 0.67; 'mar': 0.68; '2015': 0.84; 'angel': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=4gGqCwrQkdMKdZQO/OgqHKfrNTM1r58SnTrNfh+25pE=; b=S0naAV7fgexYqHhZJfVSCiWWABCVpTQB9pXGlQcgBdQRwCS2GLPUkBD/FbtRF1E4We aipocu9AZuxg861nxtwQVQXCDCbMDgCDg4nI4ScfiNOlQuj8EZU2pvEpqBHrnk7uvfYT R+A8QUa9NgKXNy99t2uVmwyiR+ljJ+HwwD246BAFf62et3p5bG6r7Ru2MQRAlg9FepXt /y9DE3eIRxXQgoMYvX7TYJmWeSkQ4yjQL42ot+38mxIfbZpDBT2AAtU6lE8zK3sIHM6I BvAEg/uRunljlg+4V8RtuaScoGCi0e+H2Z5bKQLXyHmLy1+2FHDAFQFxgOw1qvXjj4Wk iw9A== X-Received: by 10.70.65.73 with SMTP id v9mr13578765pds.96.1427705901337; Mon, 30 Mar 2015 01:58:21 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <5519067A.6040607@davea.name> References: <87r3sdnw5t.fsf@elektro.pacujo.net> <4e81bdb9-52db-46e6-b449-d4241cb2a3f2@googlegroups.com> <87twx8amww.fsf@elektro.pacujo.net> <82e7c5b9-2f0f-405b-859c-b74916c475e0@googlegroups.com> <55176c2c$0$13009$c3e8da3$5496439d@news.astraweb.com> <87619j7kbu.fsf@elektro.pacujo.net> <5519067A.6040607@davea.name> From: Ian Kelly Date: Mon, 30 Mar 2015 02:57:40 -0600 Subject: Re: Sudoku solver To: Python Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.19 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 11 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1427705904 news.xs4all.nl 2906 [2001:888:2000:d::a6]:49504 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:88327 On Mon, Mar 30, 2015 at 2:16 AM, Dave Angel wrote: > The relationship between row, column and box can be rearranged. Some of > these are already covered by the rotations proposed earlier, where for a 90 > degree rotate, row becomes column and column becomes row. But in a similar > way each box could become a column, and so on. I don't think this one is valid. The intersection of a row and a column is one cell. The intersection of a row and a box is three cells. If you swap a column with a box, you're changing the relationships between the squares and the result will not be isomorphic to the original.