Question
Sunflowers Problem Description Barbara plants N different sunflowers, each with a unique height, ordered from smallest to largest, and records their heights for N consecutive
Sunflowers
Problem Description
Barbara plants N different sunflowers, each with a unique height, ordered from smallest to largest, and records their heights for N consecutive days. Each day, all of her flowers grow taller than they were the day before. She records each of these measurements in a table, with one row for each plant, with the first row recording the shortest sunflowers growth and the last row recording the tallest sunflowers growth. The leftmost column is the first measurement for each sunflower, and the rightmost column is the last measurement for each sunflower. If a sunflower was smaller than another when initially planted, it remains smaller for every measurement. Unfortunately, her children may have altered her measurements by rotating her table by a multiple of 90 degrees. Your job is to help Barbara determine her original data.
Input Specification
The first line of input contains the number N (2 N 100). The next N lines each contain N positive integers, each of which is at most 109 . It is guaranteed that the input grid represents a rotated version of Barbaras grid.
Output Specification
Output Barbaras original data, consisting of N lines, each of which contain N positive integers.
Sample Input 1
2
1 3
2 9
Output for Sample Input 1
1 3
2 9
Explanation of Output for Sample Input 1 The data has been rotated a multiple of 360 degrees, meaning that the input arrangement is the original arrangement.
Sample Input 2
3
4 3 1
6 5 2
9 7 3
Output for Sample Input 2
1 2 3
3 5 7
4 6 9
Explanation of Output for Sample Input 2 The original data was rotated 90 degrees to the right/clockwise.
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