돔돔군
32min ago
07.16.25 07:03 -00:00
283 °C

This time, you have to solve Sudoku 3 times.

There are 3 difficulty levels and you have to solve it 3 times.

Even if you make a mistake in the middle, there are often cases where you have to start over from the beginning because you don't know if you made a mistake.

So I'm going to show you how to add one check feature as an option.

This post will be removed upon request from the stove side.

If you press F12 in Chrome, the developer tools will appear.

If you click Console, you can enter information at the bottom.

function checkSudoku5() { const board = getBoardValues();
if (isValidBoard(board)) { message.innerText = "Normal."; } else { message.innerText = "Error!"; }}
$(".code > center").append('<button type="button" onclick="checkSudoku5()" style="text-align:center;">Check</button>');

Copy and paste the above content and press Enter, and a check button will appear.

You can check if there are any current errors by clicking the check button.

However, this is not to check if there are any actual errors, but to check if there are any errors when entering the information based on the information entered so far.

That is! Even if there are no errors, there is a possibility that it is wrong, but it means that there are no duplicates at the time of the current check.

I made this with the intention of at least providing an intermediate check since it was too difficult.

If you request a stove, this post will be deleted.

Everyone, please try a little harder and get the coupon!

PS

It was inconvenient to have the message pop up in a window, so I made it appear as text above the check button.

I tried uploading it again because there was a line break error when pasting.

1 / 4
광란의휴전선
13min ago
07.16.25 07:22 -00:00
와 이 쪽 분야에서 일 하시나 봐요
배두나
21min ago
07.16.25 07:14 -00:00
능력자 ㄷㄷ
유코나아
45min ago
07.16.25 06:50 -00:00
101 °C

congrats

짜서달게먹는
18min ago
07.16.25 07:17 -00:00
ㅊㅊ
dlvgma
43min ago
07.16.25 06:51 -00:00
ㅊㅊ
고요한바위
1hr ago
07.16.25 06:18 -00:00
111 °C

* Let's call the entire 9x9 Sudoku box a box, and arbitrarily call the 3x3 boxes inside it square blocks.

Let's call a row of 9 squares horizontally and vertically a block.

Sudoku is not difficult once you know the basic principles and get used to it.

I was really into Sudoku a long time ago, and now that I'm playing it, the methods I used to solve it are coming back to me vividly.

I don't remember all the methods, but I remembered a few, so I'll share them.

1. The numbers 1 to 9 must be placed in a 9-square block without any duplicates .

2. This rule also applies to horizontal and vertical blocks.

...

Nine 3x3 square blocks.

There are 18 blocks, each with 9 horizontal and 9 vertical blocks.

The first thing you should do is look around the entire Sudoku board.

Like scouting in an RTS game.

If you look closely, there are sections with more hints.

Of course, if we focus on these, it will be easily solved, right?

If you look at the red circles below, you can see that there are 3 or 4 blank spaces, which is less than other blocks.

Others have more than 5 blank spaces, which means there are fewer spaces to fill in and therefore more hints.

We need to figure out which number is empty here.

The leftmost red circle doesn't have 1, 2, 3, or 9.

The middle square is often easier to solve because there are hints on all sides.

There are three blank spaces in the vertical block in the very middle. Can you see that the numbers 3, 4, and 5 are blank?

Find 3, 4, 5 among the numbers around you.

Number 4 of them provide useful hints in various ways.

The red vertical block at the very bottom overlaps the yellow square block, right?

The red vertical block overlaps the yellow square block at the bottom, and there is already a 4 there.

So, that overlapping interval cannot contain 4.

The yellow line is the overlapping area of 4.

There must not be any other 4 within this overlapping area.

If you look at the red box again, it should contain 3, 4, and 5.

Except for the top section, the remaining sections overlap with the 4 sections of other sections.

So only the top one can have 4.

That is, it becomes like this.

Here's another way to solve it.

It should be used in conjunction with the above method rather than with other solutions.

If you look around the map, you will see that one of the two is more advantageous than the other.

In that case, each person can apply it.

As expected, we scan the board focusing on the central square block.

Here, we will first solve it focusing on the number 9.

Looking around the 9, I see a lot of hints.

If you follow the default overlapping area of 9,

You will find a non-overlapping area of 9 in the yellow square blocks.

Based on these results, we can see that 9 is confirmed in the upper left corner of the block one space below.

If you solve them one by one like this, the whole thing will be completed before you know it.

This is a different version.

As expected, there are many hints in number 9, so let's start from number 9.

As explained above

Just look at the overlapping area of each block and write down the numbers.

Before that, let's look at the middle blocks to see which blocks and numbers have the most hints.

The hint for 8 is simple and effective.

Find the simple and easy parts and solve them first.

Fill in the blanks.

By looking at other blocks, you will find overlapping areas and fill in the gaps.

This time, let's solve it focusing on the number 3.

After identifying the overlapping area, identify the valid section.

Once you solve just one, hints will follow, making the solution faster.

The basic outline of solving Sudoku is as follows.

It's been a few years since I've done it, so I'm a bit confused and remembering things as I go along, so I feel like I've talked nonsense.

If you do a quick Google search for a Sudoku guide, you'll find some easy-to-follow examples.

It's not difficult once you learn the solution, but if you get confused about the rules before that, it seems really difficult.

But the truth is, it's really simple.

After scouting the entire board and identifying the overlapping area,

If you start by solving easy and fast problems centered around numbers or blocks with lots of hints,

As the hints increase, it becomes easier to solve like a snowball.

Ugh... I missed the rhythm game coupon yesterday. ㅜㅜ

I thought it was the same event as the previous rhythm game with a lower difficulty level, so I thought it wouldn't give out coupons. ㅜㅜ

Anyway, this Sudoku is fun and anyone can try it, so I hope you give it a try.

There are also Sudoku games for steam and stoves, so you might want to check them out.

Although it is a game of numbers, it provides endless content that will make you lose track of time as you play.

1 / 17
돔돔군
1hr ago
07.16.25 06:38 -00:00
스도쿠가 실수로 숫자 하나 잘못 넣고서 한참 후에 알았을 때가 정말....
21303099
2hr ago
07.16.25 06:00 -00:00
61 °C

congrat

dlvgma
44min ago
07.16.25 06:50 -00:00
ㅊㅊ
90864742
2hr ago
07.16.25 05:33 -00:00
61 °C

STOVE90864742's record is 135 points!
I got 0 Flakes as a challenge reward.
I can't wake up from my egg..
Next time, try faster!


🦖Want to feed your baby dinosaur?
Take the challenge now!
👉 [Play on the Stove App]

마후유오시
4hr ago
07.16.25 04:02 -00:00
260 °C

hand

Or기맹수
3hr ago
07.16.25 04:20 -00:00
하이
S1751922592339713
1hr ago
07.16.25 06:12 -00:00
0개 일수가 없을텐데요?
E2E2
5hr ago
07.16.25 02:38 -00:00
61 °C

Until the very end

dlvgma
44min ago
07.16.25 06:50 -00:00
ㅊㅊ
OFFICIAL이벤트매니저
07.14.25
07.14.25 09:23 -00:00
1,017 °C

Hello, I am the event manager :D

Did you enjoy the event prepared by Lotte Cinema X STOVE to commemorate the release of the movie <Omniscient Reader's Viewpoint>?

' Write a comment to cheer or anticipate ', ' Write a review after playing the free game ', ' Use a 10,000 won discount coupon ' until!

We wanted to give you a variety of choices in three ways~!

Were the event methods the only ones that were different? No~!

From Lotte Signiel Hotel's Mango Bingsu to VIP preview tickets and movie tickets for <Omniscient Reader's Viewpoint>

This was an event with a variety of prizes never seen before at STOVE~!

Here are the first winners selected from users who participated from July 1st to July 7th !

Who will be the first lucky winner? We will announce the winner right now~!

🎉 <Omniscient Reader's Viewpoint> X Stove Collaboration Event (1st) 🎁
Participants who participate in at least one of the three collaboration events from 7/1 to 7/7 will be selected, and the second event will be announced on 8/21 (Thursday)

🍨Lotte Signiel Hotel Mango Bingsu (1 winner selected)
🤵<Omniscient Reader's Viewpoint> VIP preview tickets (7 winners, 2 per person)
🎁<Omniscient Reader's Viewpoint> 2-person viewing package - 2 movie tickets + Best Combo Coupon (10 winners selected)
🎬<Omniscient Reader's Viewpoint> exclusive movie ticket (50 winners selected)
🎮BIC 2025 Invitation Ticket (5 winners, 2 per person)

📅 Check your winnings and enter your personal information
Deadline: 23:59, Thursday, July 17, 2025
 
🎁Prize delivery schedule
※ <Omniscient Reader's Viewpoint> VIP preview tickets: To be distributed directly after ID verification at a separate location in Lotte World Tower, Jamsil, after 6 PM on Monday, July 21
ㄴDetailed schedule and location will be sent via text message only to those who entered their winner information on 7/17.
※ The 'BIC 2025 Invitation' is a physical ticket and will be delivered to the address provided in the personal information you provided or distributed at the event.
※ Other prizes: Sent sequentially from July 21 (Mon)

※ Please understand that if you do not submit your response within the specified period or do not agree to the provision of personal information, you will not be able to receive the prize.
※ For event related inquiries: indie.event@smilegate.com

📢 STOVE X Lotte Cinema <Omniscient Reader's Viewpoint> Collaboration 2nd Event Always in Progress!

Everyone~! You all know that this event will be held continuously until August 10th (Sun), right?

Even those who did not win in the first event can participate again in the second event, which will run until August 10th!

There will be various prizes prepared in the 2nd event, such as <Lotte Signiel Mango Bingsu> and <Lotte Department Store Gift Certificates>, so please be sure to participate!

Please show lots of interest and love for the movie <Omniscient Reader's Viewpoint> which will be released on July 23rd~!

🎁 Omniscient Reader's Viewpoint X STOVE Event Part 1) Leave a cheering comment🎬 Go to ← Click!

🎁 Omniscient Reader's Viewpoint X STOVE Event Part 2) Limited-time free distribution game Play 🎮 Go here ← Click!

💎 Omniscient Reader's Viewpoint X STOVE Event Part 3) 10,000 Won Discount Exclusive Promotion Game 💸 Watch Now ← Click!

S1730362987623011
07.13.25
07.13.25 06:10 -00:00
3 °C

Okay

GomGomNoob
07.12.25
07.12.25 12:22 -00:00
642 °C

What's wrong with Flake because the game called Fantasy Jojoden 2 was released for free? Lol
Free games are always right! Hahahahaha
thank you!
It seems like a game where cards come out and you build a deck.
But whenever I hear about cards coming out, I always think of Culdcept.
It's a gain that combines Blue Marble and cards, so I think people who have played the game for a long time have probably tried it.
Why isn't there a sequel?
I wish other game companies would make something similar.
Actually, I remember that a Korean company once made something similar.
I remember it failing..
But if something similar came out these days, it might be exciting?
Thanks always for the free games, new events, existing events, big deals, etc!
Please bring lots of flakes tomorrow~
I hope you all stay healthy and have a great day and enjoy the flakes!

파워군
07.05.25
07.05.25 02:03 -00:00
2 °C
⏰ 깜짝 액션 타임 도전 기록

파워군님이 잡은 공룡은 85마리에요!
도전 보상으로 900 플레이크를 받았어요.
탑 랭커 모드 ON 👑
하지만 방심은 금물이에요!



🦕움직이는 공룡 잡기
지금 도전하세요!

👉[스토브 앱에서 플레이]


Log in and post a comment!
Characters : 0/1000Words : 0