Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8798435
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T00:05:47+00:00 2026-06-14T00:05:47+00:00

I’m currently working on a Tetris AI, and I as looking for a method

  • 0

I’m currently working on a Tetris AI, and I as looking for a method to flip a 4 by 4 multidimensional array. I’ve looked all over, and the most i could find was rotating, which wouldn’t work in my case.
From

o o o o 

o x x o

o x o o

o x o o 

to

o x o o

o x o o

o x x o

o o o o
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T00:05:48+00:00Added an answer on June 14, 2026 at 12:05 am

    I don’t know which dimension you need to flip, but this is one of them… Please note that this method destroys the original array! You didn’t make your needs clear.

    • You didn’t say which dimension needs to be flipped
    • You didn’t say whether it should be in-place or create a new array

    That said, here’s one solution

    public static void main(String args[]) {
        Integer[][] myArray = {{1, 3, 5, 7},{2,4,6,8},{10,20,30,40},{50,60,70,80}};
    
        // Before flipping  
        printArray(myArray);
        System.out.println();
    
        // Flip
        flipInPlace(myArray);
    
        // After flipping
        printArray(myArray);
    }
    
    public static void printArray(Object[][] theArray) {
        for(int i = 0; i < theArray.length; i++) {
            for(int j = 0; j < theArray[i].length; j++) {
                System.out.print(theArray[i][j]);
                System.out.print(",");
            }
            System.out.println();
        }
    }
    
    // *** THIS IS THE METHOD YOU CARE ABOUT ***
    public static void flipInPlace(Object[][] theArray) {
        for(int i = 0; i < (theArray.length / 2); i++) {
            Object[] temp = theArray[i];
            theArray[i] = theArray[theArray.length - i - 1];
            theArray[theArray.length - i - 1] = temp;
        }
    }
    

    Produces:

    1,3,5,7,
    2,4,6,8,
    10,20,30,40,
    50,60,70,80,
    
    50,60,70,80,
    10,20,30,40,
    2,4,6,8,
    1,3,5,7,
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
Let's say I'm outputting a post title and in our database, it's Hello Y&#8217;all
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want use html5's new tag to play a wav file (currently only supported
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
This could be a duplicate question, but I have no idea what search terms
I have an array which has BIG numbers and small numbers in it. I
I have a text area in my form which accepts all possible characters from
I am currently running into a problem where an element is coming back from
Seemingly simple, but I cannot find anything relevant on the web. What is the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.