XEYE & amp; #39; s Game 7 ideas

Source: Internet
Author: User


Four months later.Xeye game.

The seventh level is a pile of data, separated by commas (,), refresh and change once.

In addition, there are two major tips: cartesian (cartesian) and vertical (vertical)

Descartes is a philosopher, physicist, mathematician, Geographer, and astronomy. However, based on the cue mentioned above, we can easily guess that the test of this article is the Cartesian coordinate system, and what is vertical. Of course, we can assume a Cartesian coordinate system first, but we have all played xeye game and reached the 7th level. We certainly know that cue in This game has never been so simple and clear, so we do not rule out the possibility of future use.

First, an intuitive assumption is that these numbers are XY coordinates, and each two digits mark a point in the coordinate system. These points may constitute a curve or a pattern, which we need to combine to know.

But when we really want to try a combination, we will find that there are 423 digits in total, not an integer multiple of 2, which is a tragedy.

However, it is also gratifying to find that, although it is not an integer multiple of 2, it is an integer multiple of 3. In all the prompts, the Cartesian coordinate system of the plane or three-dimensional coordinate system is not described. This gives us a chance to verify our conclusions.

When we really want to implement our ideas, we will find another tragedy-we observe that the three-dimensional angle is spherical. Which angle is what we want? At this time, the cue of vertical comes in handy. First of all, the speaker will certainly not give us an unsolved problem, and the observation angle of the sphere is almost unmeasurable, which is equivalent to no solution. The "vertical" prompt clearly reduces the infinite angle to 6*4 (assuming that there will be 6 faces and four observation modes as a ry ).

So the solution comes out. We divide every three numbers into a group to form arrays of x, y, and z, then combine them into xy, xz, yz, yx, zx, and zy according to the composite relationship and print them out. You can view them in four directions. The Computer Implementation of this idea is really simple, and almost all programming languages can do it. For example, JavaScript can solve the problem with about 10 lines of code.

An example is as follows:

<Script>
Var str = "8, 4, 6, 10, 10 ......";
For (var I = 0; I <50; I ++ ){
For (var j = 0; j <50; j ++)
Document. write ("<span id = x" + I + "y" + j + ">&# x3000; </span>"); // white Block
Document. write ("<br> ");
}
Var strarr = str. split (",");
For (var I = 0; I <strarr. length/3; I ++ ){
Var A = strarr [I * 3];
Var B = strarr [I * 3 + 1];
Var C = strarr [I * 3 + 2];
Var id = "x" + A + "y" + B;
// Var id = "x" + A + "y" + C;
// Var id = "x" + B + "y" + C;
// Var id = "x" + B + "y" +;
// Var id = "x" + C + "y" +;
// Var id = "x" + C + "y" + B;
Document. getElementById (id). innerHTML = "& # x25a0;"; // Black Block
}
</Script>

A running result is as follows:


Of course, you can also use advanced tools such as matlab:

Split x, y, and z in order, and enter:

X = [14 16 25...];
Y = [2 2 2...];
Z = [1 5 9...];
Scatter3 (y, z, x)

The output will be:


By rotating the image and looking at the six sides, we can find the password.

As for what the real password is, it's waiting for you to discover it! Haha

Ps.In addition, the xeye T-shirt is coming out,Dai ShuoOx is the first Customs clearance and the only customs clearance so far. According to the previous agreement, I will personally serve the T-shirt to him after it comes out. Although it is a year late, it is still an agreement, haha!

Game Introduction: html ">Http://hi.baidu.com/monyer/blog/item/9d440846e1b7ed006a63e525.html

Monyer!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.