Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please using Vector and command line to input the file We consider only square puzzles. Puzzles that have a number of entries that is a
Please using Vector and command line to input the file
We consider only square puzzles. Puzzles that have a number of entries that is a perfect square
are processed and displayed; puzzles that do not have a number of entries that is a perfect square
are rejected. Pro tip: read the entire file into a vector of characters, then check the size. If its a
perfect square, create your square table a twodimensional array and copy the values
converting from char to the associated integer value from the vector into the table.
For example, the input file to the left would be displayed as the puzzle to the right.
A B
C A F E
C
This conversion of char to int will be of great use to us in the next unit, when we explore how
recursion can be used to solve number puzzles such as Sudoku and Numbrix and Magic Square.
For the purposes of the homework, any value can be used in any size but still square puzzle.
DELIVERABLES:
Your Java source code
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started