Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2 つの 2D 配列を 1 つの配列に結合したいと考えていますNx2。例えばa=[1,2,3] b=[4,5,6]、作りたいc=[(1,4),(2,5),(3,6)]。Pythonでやりたいのですが、どのコマンドを使えばいいのかわかりません。ヒントはありますか?
Nx2
a=[1,2,3] b=[4,5,6]
c=[(1,4),(2,5),(3,6)]
任意の言語でそれを行うことができますが、アルゴリズムはおそらく同じです。あなたがしたいことは
説明するための擬似コードを次に示します
int [][] c; for (int i = 0; i < a.length; i++) { c[i][0] = a[i]; c[i][1] = b[i]; }