Top "Multidimensional-array" questions

Multidimensional-arrays can be described as multi-dimensional tables.

Char ** usage and printing

In C, I am using a char ** to hold a series of strings. Here is my code: char ** c; //now …

c malloc multidimensional-array double-pointer
Convert nested list to 2d array

I'm trying to convert a nested list into a 2d array. List<List<String>> list = new …

java multidimensional-array nested-lists
Group array items based on variable javascript

I have an array that is created dynamic from an xml document looking something like this: myArray[0] = [1,The Melting Pot,…

javascript jquery arrays multidimensional-array grouping
Algorithm Complexity (Big-O) of sudoku solver

I'm look for the "how do you find it" because I have no idea how to approach finding the algorithm …

java recursion multidimensional-array sudoku
PHP: Multidimensional array, multidimensional keys?

$products = array( 'paper' => "Paper Section" => array ( 'copier' => "Copier and Multipurpose", 'inkjet' => "Inkjet Printer", ), 'pens' => "Pen …

php arrays multidimensional-array indexing array-key
Generating Combinations in python

I am not sure how to go about this in Python, if its even possible. What I need to do …

python arrays multidimensional-array combinations matrix
How to sum all the arrays inside a list of arrays?

I am working with the confusion matrix. So for each loop I have an array (confusion matrix). As I am …

python-3.x numpy multidimensional-array confusion-matrix
SystemVerilog foreach syntax for looping through lower dimension of multidimensional array

What is the standard way of looping through the lower dimension of a multidimensional array? With the higher dimension fixed. …

arrays multidimensional-array foreach system-verilog
Is array syntax using square brackets in URL query strings valid?

Is it actually safe/valid to use multidimensional array synthax in the URL query string? http://example.com?abc[]=123&…

url multidimensional-array query-string
Console.log a multi-dimensional array

So I have created a multi-dimensional array: (i.e. one with two sets of 'coordinates') var items = [[1,2],[3,4],[5,6]]; My site is …

javascript arrays multidimensional-array console console.log