Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a Python program to solve the popular Hashiwokakero or Bridges puzzle. The input to your program will be a rectangular array of numbers and

Write a Python program to solve the popular "Hashiwokakero" or "Bridges" puzzle. The input to your program will be a rectangular array of numbers and dots, for example:
.1...6...7....4.4.2.
..4.2..2...3.8...6.2
.....2..............
5.c.7..a.a..5.6..8.5
.............2......
...5...9.a..8.b.8.4.
4.5................3
....2..4..1.5...2...
.2.7.4...7.2..5...3.
............4..3.1.2
Each number represents an "island", while the dots represent the empty space (water) between the islands. Numbers larger than 9 are indicated by 'a'(10),'b'(11) or 'c'(12). The aim is to connect all the islands with a network of bridges, satisfying these rules:
-all bridges must run horizontally or vertically
-bridges are not allowed to cross each other, or other islands
-there can be no more than three bridges connecting any pair of islands
-the total number of bridges connected to each island must be equal to the number on the island
For example, after reading the 10-line input above, your program might produce the attached out (see image below).
Note that single bridges are indicated by the characters '-' or '|', pairs of bridges by '=' or '"' and triples by 'E' or '#', depending on whether they run horizontally or vertically. Water between bridges and islands is indicated by space characters ''.
In some cases, there may be many solutions, in which case your program should only print one solution.
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases Illuminated

Authors: Catherine M. Ricardo, Susan D. Urban, Karen C. Davis

4th Edition

1284231585, 978-1284231588

More Books

Students also viewed these Databases questions