--- title: "Towers of Hanoi" type: "article" slug: "towers-of-hanoi" url: "http://localhost/article/towers-of-hanoi/" markdown_url: "http://localhost/article/towers-of-hanoi.md" published_at: "2020-10-27T17:12:32+00:00" modified_at: "2024-05-26T13:48:41+00:00" featured_image: url: "http://localhost/wp-content/uploads/2022/04/20230809-041332.jpg" excerpt: "This program demonstrates the use and manipulation of a 3-dimensional string array, N$(R,C,9), by tracking occupancy with a numeric array, P(R,C). The program runs in slow mode; you can see blocks move." category: - name: "Syntax" slug: "syntax" taxonomy: "category" url: "http://localhost/category/periodicals/syntax/" post_tag: - name: "TS 1000" slug: "ts1000" taxonomy: "post_tag" url: "http://localhost/tag/ts1000/" - name: "TS 2068" slug: "ts2068" taxonomy: "post_tag" url: "http://localhost/tag/ts2068/" - name: "Type-in program" slug: "type-in-program" taxonomy: "post_tag" url: "http://localhost/tag/type-in-program/" model: - name: "Timex/Sinclair 1000" slug: "ts-1000" taxonomy: "model" url: "http://localhost/model/ts-1000/" - name: "Timex/Sinclair 2068" slug: "ts-2068" taxonomy: "model" url: "http://localhost/model/ts-2068/" indiv: - name: "William Andrews" slug: "andrews-william" taxonomy: "indiv" url: "http://localhost/indiv/andrews-william/" publication: "Syntax" publication_r: id: 10246 title: "Syntax" type: "periodical" url: "http://localhost/periodical/syntax/" authors: "William Andrews" volume: "5" issue: "10" issues_articles: - id: 26732 title: "Syntax/Syntax ZX80 v5 n10" type: "issue" url: "http://localhost/issue/syntax-syntax-zx80-v5-n10/" pages: "12, 13, 16, 18" pubdate: "October 1984" archive_link: false volumeissue: "v5n10" --- # Towers of Hanoi This program demonstrates the use and manipulation of a 3-dimensional string array, N$(R,C,9), by tracking occupancy with a numeric array, P(R,C). The program runs in slow mode; you can see blocks move.