FAQ: 2D Arrays: Java - Traversing 2D Arrays: Row-Major Order

This community-built FAQ covers the “Traversing 2D Arrays: Row-Major Order” exercise from the lesson “2D Arrays: Java”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Learn Java

FAQs on the exercise Traversing 2D Arrays: Row-Major Order

There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (reply) below.

If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!
You can also find further discussion and get answers to your questions over in #get-help.

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head to #get-help and #community:tips-and-resources. If you are wanting feedback or inspiration for a project, check out #project.

Looking for motivation to keep learning? Join our wider discussions in #community

Learn more about how to use this guide.

Found a bug? Report it online, or post in #community:Codecademy-Bug-Reporting

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

I don’t quite understand the purpose of this lesson. I had no trouble actually doing the exercises, but the way row-major order is introduced makes it sound like it’s something new, but it seems like this is just what we’ve done before. Am I missing something?

1 Like

I would say the same thing especially with that last task… why is it when u put in outer.length it prints 6 numbers when in reality there should be 3 because there are 3 rows and 6 should be for the inner??

Here’s an image of the solutions to the questions.

Hi all,

I am confused about how is runnerTime += times[outer][inner] calculating the row sum. I looked up more information online, someone said that if you want the sum of the column only, then you will need to do this: int colSum =new int[times[0].length]; then inside the for loop, add colSum[inner]+=times[outer][inner].

Now I am even more confused.

About the row sum: My understanding for “times[outer][inner]” is that “times[outer][inner]” represent each element of the inner array, so how is “runnerTime += times[outer][inner]” calculating the row sum not the sum of every element in the array? Is it because I reset the runnerTime to “0” after the outer loop?

About the column sum: I understand int colSum =new int[times[0].length]. But “colSum[inner]+=times[outer][inner]” does not make sense to me…

Can someone explain to me? Thanks in advance!

1 Like

Hi I’m a bit confused by that myself perhaps the more we practice the more calling certain variables within arrays will make sense
Best of luck Friend!

Joseph