From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.107.51.136 with SMTP id z130mr27860684ioz.70.1514655000407; Sat, 30 Dec 2017 09:30:00 -0800 (PST) X-Received: by 10.157.3.134 with SMTP id f6mr862025otf.3.1514655000284; Sat, 30 Dec 2017 09:30:00 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!feeder.eternal-september.org!border1.nntp.ams1.giganews.com!nntp.giganews.com!peer01.ams1!peer.ams1.xlned.com!news.xlned.com!peer02.am4!peer.am4.highwinds-media.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!g80no4109177itg.0!news-out.google.com!b73ni15820ita.0!nntp.google.com!g80no4109173itg.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Sat, 30 Dec 2017 09:30:00 -0800 (PST) In-Reply-To: <87fu7s8vha.fsf@jacob-sparre.dk> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=2601:645:c001:2a91:497f:11b2:1327:3bea; posting-account=fxr6CwoAAABjARAbZ01okNaxDpxQT8RH NNTP-Posting-Host: 2601:645:c001:2a91:497f:11b2:1327:3bea References: <1c10eec9-040c-4d50-a557-11325883529a@googlegroups.com> <87fu7s8vha.fsf@jacob-sparre.dk> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: =?UTF-8?B?UmU6IEFycmF5cywgc2xpY2VzLCBjYXNlLCBhbmQg4oCYaW7igJkgc3RyYXRlZ2llcw==?= From: Mace Ayres Injection-Date: Sat, 30 Dec 2017 17:30:00 +0000 Content-Type: text/plain; charset="UTF-8" X-Received-Body-CRC: 3092098472 X-Received-Bytes: 2042 Xref: reader02.eternal-september.org comp.lang.ada:49700 Date: 2017-12-30T09:30:00-08:00 List-Id: Jacob, 3 iterations may be answer. My Ada mind is limited to Array indices being limited to the dimensionality of the array. 1 D array has 1 index. 2 D array has 2 indices. Forgot to mention that I have a 1 D array of the 2 D grid array, netting a 3 D array effect, but as an array of arrays, rather than a single 3 D array. My 1 D array of the 2 D grid array is called layer. So I have 10 layers (1 each for each of the 9 digits, that will show only 1 of the digits) and then 1 10th layer to show all entries. This array of array rather than a single 3 D array, an early disign decision. I also thought of just a linked list with access types, but choose this array approach for initial attempt.