Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please help me write python 3 code. It will be very helpful for me. Thanks! There is a board (matrix). Every cell of the board

Please help me write python 3 code. It will be very helpful for me.

Thanks!

image text in transcribed

There is a board (matrix). Every cell of the board contains one integer, which is O initially. 1 import sys 2 for line in sys.stdin: 3 print(line, end="") The following operations can be applied to the Query Board: SetRow i x: change all values in the cells on row "i" to value "x". SetColjx: change all values in the cells on column "j" to value "x". QueryRow i: output the sum of values on row "i". QueryColj: output the sum of values on column "j". The board's dimensions are 256x256. "T" and "j" are integers from 0 to 255. "x" is an integer from 0 to 31. Input: Your program should read lines from standard input. Each line contains one of the above operations. Output: For each query, output the result of the query. Test 1 Test Input >_ Test Case Output SetCol 32 20 SetRow 15 7 SetRow 16 31 QueryCol 32 SetCol 2 14 QueryRow 10 No results to display. Click 'R Expected Output 5118 34

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

Step: 3

blur-text-image

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

More Books

Students also viewed these Databases questions