Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Given a 2D array A = [[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12]], how to get A[i][0] out and shuffle

Given a 2D array A = [[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12]], how to get A[i][0] out and shuffle it and put it back(in python)?

A[i][0] is 1, 4, 7, 10

For example, after shuffle it is 7, 4, 10, 1

Put it back: [[7, 2, 3], [4, 5, 6], [10, 8, 9], [1, 11, 12]]

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions