Thank you for using the timer - this advanced tool can estimate your performance and suggest more practice questions. We have subscribed you to Daily Prep Questions via email.
Customized for You
we will pick new questions that match your level based on your Timer History
Track Your Progress
every week, we’ll send you an estimated GMAT score based on your performance
Practice Pays
we will pick new questions that match your level based on your Timer History
Not interested in getting valuable practice questions and articles delivered to your email? No problem, unsubscribe here.
Thank you for using the timer!
We noticed you are actually not timing your practice. Click the START button first next time you use the timer.
There are many benefits to timing your practice, including:
Register for the GMAT Club Virtual MBA Spotlight Fair – the world’s premier event for serious MBA candidates. This is your chance to hear directly from Admissions Directors at nearly every Top 30 MBA program..
Hi to all of you guys here… May this thread fits on this section. A friend of mine gave me this enigma. It is written in Excel format. Since here I can’t attach .xls file, I don't know how to put the file, name Enigma.xls. There are infinite amount of tables, with ten rows (row 0,1,2,….9) each. Inside of each tables, there are numbers from 1 to 92, 93 to 184, 185 to 276, and 277 to 284, which lie on their certain rows. Here I gave the example tables that have been filled in for 40 tables. By finding the patterns/ formulas, my friend asked me to extend the tables to fill in the blank tables 41,42,43,etc as given beneath of Table 40. Just like SUDOKU, in each tables there will be no same numbers vertically, horizontally and diagonally. If these tables are using permutations from an ideal table that you can see beneath Table 40 (supposed the ideal table was right), then how to find the formulas of its permutations? Can somebody help me about this? Thx. Hope my English is good enough for explaining this.
Archived Topic
Hi there,
This topic has been closed and archived due to inactivity or violation of community quality standards. No more replies are possible here.
Still interested in this question? Check out the "Best Topics" block below for a better discussion on this exact question, as well as several more related questions.
import java.util.*; public class Table { static Scanner console = new Scanner(System.in); public static void main (String[] args) {
String list = "010509131741454953572125293337616569737702030406070810111214" + "151618192022232426272830313234353638394042434446474850515254" + "5556585960626364666768707172747576787980818283848586878889909192"; String number; int counter = 0; int randomNumber = 0; int rowPlacement = 0;
Vector row_0 = new Vector(); Vector row_1 = new Vector(); Vector row_2 = new Vector(); Vector row_3 = new Vector(); Vector row_4 = new Vector(); Vector row_5 = new Vector(); Vector row_6 = new Vector(); Vector row_7 = new Vector(); Vector row_8 = new Vector(); Vector row_9 = new Vector();
for (counter=0; counter<184; counter = counter + 2) { number = list.substring(counter, counter + 2);
Still interested in this question? Check out the "Best Topics" block above for a better discussion on this exact question, as well as several more related questions.