Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I guess the game's ever-growing log output makes it execute the program at abysmal speed of only dozens instruction per second. Note to dev: have an option to disable logging.
2-5 8/10
2-6 9/13(these two are tricky but elegant)(you can find them in the community)
2-8 7/11(reverse-thinking)(elegant, very hard)
4-11 8/9(interesting method. kind of coding!)
4-16 5/9(still interesting method)
5-1 3/7 (elegant!)
5-3 7/8 (hard)
5-5 known least 14/28(very very very hard)
5-6 known least 16/40(soooooooooooooooooooooooooooooooo hard)
6-3 7/13(maybe 6/13)(interesting no-keyword solution)
- 3-7 Palindrome: 7/8
- 4-4 Remove 3: 4/5
- 4-6 Reverse 2: 5/6
- 4-12 To B or not to B: 6/9
It's interesting how with the experience, having discovered the tricks, some of these become really simple: I beat-solved 4-6 and 4-12 almost instantly- 4-15 Expansion: 12/13 (would be 8/13 if not for 255 string limit) - Unrecognized because it would be too long to fully test 0 + 1*6**1 + 2*6**2 + 3*6**3 + 4*6**4 + 5*6**5
- 6-3 To B or not to B: 10/13
- Also have would be (if not for 255 string limit) 19/24 solution for 6-2 Palindrome
but otherwise I regret to say that I must have hit a dead-end.I semi-accidentally viewed 6-3 (6/13) solution because it was not covered in Spoiler in the comments to the "Beat the professor" guide with a list. It seems to use the same idea as my 10/13 solution (2 lines are exactly the same), but in a much more nuanced manner.
I viewed 4-15 Expansion 8/13 solution (not accidentally). I expected the solution to be of this "shape" given very limited lines available, but the precise method is ingenious. Makes me regret I looked it up.
Now thinking whether I should just read the solutions or maybe let the game "rest" and return sometime later with a fresh mind.
@SoMall-dumpling, you only have ~40 hours in the game. Did you solve all of those yourself? Or did you also solve without having the game running (and counting time)?
I've also made a video about all the best solutions of A=B on bilibili, you can search my name on the website.
Among all the best solutions, I only solve about 50% by myself, and I was given the other best solutions by other playtesters or from discord. Especially the end-game solutions with weird methods, they are above my ability. I include them in the video with their authors' names.
In my opinion, it's really hard, or almost impossible, to think out some of the best solutions by yourself (at least, not possible for me). Like 2-5, 2-6, 2-8, you may read the solutions of them and analyze them. If you figure out how these codes work, you may make progress in 4-11 and 4-16.
And just read the solutions of 5-5 and 5-6, if you want. Finding these solutions may take tens of hours of editing.
By any chance want to do Factorio Space Age playthrough?
Also, I might be developing a similar kind of programming game (but with a different language) in the future. Mind if I message you for playtesting when I have something?
In the meanwhile, your message inspired me to revisit earlier levels. 2-5 condition seems quite odd to figure out, but I came up with a new technique for 2-6 and was able to get it down to 10/13 (I previously had 12/13). I might have an idea how to cut out one more instruction, but it would require some careful thinking-through+engineering.
Edit: I went to poo and as people typically do when they poo, started to think through problem 2-6 - I realized I overcomplicated things and quickly was able to engineer 9/13 solution. Returned to the computer, wrote it down and it worked straight away 💪
5-5 and 5-6 were actually two of the problems I didn't even attempt to improve so far.
I may recommend a latest game 'Prove You Can Win', made by a friend of mine. Although its UE is awkward (everyone is complaining), the levels are challenging and full of eureka. (His English may not be very good)
There are too many great puzzle games, so I'll just put a list here: docs.qq.com/sheet/DTmRLTEtHYkJBcWVD (Also in Chinese, sorry) (You've already played many of the games mentioned in the list like Portal, The Witness and Taiji)
Add to friends, yes. Factorio Space Age playthrough, maybe yes. I plan to play Factorio during my Winter Holiday with my friends. (Never played before! So the Space Age DLC may come later)
Playtesting, big yes. Just message me if you want.
And it's impressive that you figured out 9/13 solution of 2-6 by yourself. Congratulations! (Could you share it here? I want to compare it with the previous best one)
(I'm currently in Japan doing snowboarding season and Google Translate helps a lot).
I'll take a look!
2-6 The Only: 9/13
Yesterday later, in the bath (after the toilet and after getting 9/13 2-6 accepted) I thought of using the same technique to get 9/10 in 2-5. Today was able to get it down to 8/10.
2-5 The Odd: 8/10
I moved to trying to break 2-7 Ascend (5/8)
Given the limited number of lines available, I hypothesize, the solution must be one of two "shapes":
or
The first one I was able to reject using bruteforce and some JavaScript.
The second one turns out to be trickier as the search space is much larger.
Note: besides 4-15 Expansion and 6-3 To B or not to B, I haven't looked up any community solutions, even to the problems I "perfected". Although, the ideas of perfect solutions are most likely the same, it is not certain and I still try to keep discovery to myself.
I'll message you if/when (hopefully, when) I have anything for playtesting :)
2-7 Ascend (5/8):
Between, there are hundreds (if not thousands and many more) solutions, I just took one of smaller ones. Gotta yet to analyze how it works 😅 I thought it would be way longer
First, turn b into 'a's and 'c's. (then sort)
Then, delete one 'a', one 'b' (in 'a' and 'c' form), and one 'c' each time.
At last, decide whether there's at least one 'b' and two 'c's left.
2-5 and 2-6 solutions are great. In 2-6, ou find out how to delete two extra strings with one line.
[]=
This strategy can be used in many other puzzles.
Besides, although you do find out 9/13 solution of 2-6, there's another 9/13 solution, which only needs to add one extra type of letter. (now you use [ and ] and |, three types).
Meanwhile "4-8 Clone" and "4-13 Center" seem outright impossible: there are just some bare minimums, which need to be done (process 3 letters on the left, 3 letters on the right - that's 6 instructions already!) and if there were tasks I'd have to guess are impossible: these two are.
Today spent way too much time on "2-8 Most". I adapted my bruteforce code from 2-7, but needed to optimize it, for it to finish in a reasonable time (across larger search space). I was thinking about rewriting from JavaScript to C++ and putting my 6000 CUDA cores to the good use, but decided to optimize search algorithmically and managed to optimize it several orders of magnitude, to finish in a few minutes (instead of a few days).
Unfortunately, no solution of similar "shape" found (I searched fully across all 8-degrees of freedom)
This would open a door to potentially a 6-lines "Most" solution, but looks like it doesn't exist (there is some chance I made a mistake in my search code).
Similarly, no such solution for "2-9 Least".
And not even for "a <= b < c" (unlike strict "a < b < c" from "Ascend") - this one would allow me to make 8-line solution for "Most".
So, 2-8 has to be (most likely, assuming no error in search code) at least a bit of different shape
- 4-13 Center (7/10)
- 4-14 Center 2 (8/15)
Ingenious me