Bot Destroys Google Minesweeper

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 พ.ย. 2024
  • Python bot destroys minesweeper with the power of logic and probabilities. Yeah that's it.
    The code
    github.com/Cos...

ความคิดเห็น • 1.5K

  • @koruba8693
    @koruba8693 2 ปีที่แล้ว +13967

    Why do they call it oven

    • @werferyt6092
      @werferyt6092 2 ปีที่แล้ว +1083

      @@kupicx and of out hot eat the food

    • @furballisticfinn6881
      @furballisticfinn6881 2 ปีที่แล้ว +457

      top questions science still can’t answer

    • @alexanderharrison7421
      @alexanderharrison7421 2 ปีที่แล้ว +548

      @@furballisticfinn6881 Well, the answer is proportional to the reason we should never assume in life, just because carrot big leaf because small leaf carrot big not leaf big size

    • @furballisticfinn6881
      @furballisticfinn6881 2 ปีที่แล้ว +88

      @@alexanderharrison7421 i guess you’re right

    • @Yumiesthetic
      @Yumiesthetic 2 ปีที่แล้ว +24

      why not

  • @BakedAlaskaTM
    @BakedAlaskaTM 2 ปีที่แล้ว +8659

    i legit thought the video was called "bob destroys google minesweeper" for a second and I was like "damn this bob is cracked"

    • @unfazedmc5734
      @unfazedmc5734 2 ปีที่แล้ว +321

      This made me laugh way too hard

    • @ulysses847
      @ulysses847 2 ปีที่แล้ว +27

      Zamn

    • @nise6699
      @nise6699 2 ปีที่แล้ว +130

      Bob's really talented

    • @AughOughWaugh
      @AughOughWaugh 2 ปีที่แล้ว +123

      He has a good gaming chair

    • @gumplay7264
      @gumplay7264 2 ปีที่แล้ว +9

      @@Wat-.- in what world would a cat destroy minesweeper this fluently

  • @stringbeanplepeda1632
    @stringbeanplepeda1632 2 ปีที่แล้ว +22500

    funniest part is that the legit world record is over 2 times faster at 57 seconds

    • @cossibility7019
      @cossibility7019  2 ปีที่แล้ว +7417

      The fact that it works is enough for me 😂😂

    • @MannifyYT2024
      @MannifyYT2024 2 ปีที่แล้ว +756

      Funny how i got that RIGHT UNDER THIS VIDEO

    • @kwekker
      @kwekker 2 ปีที่แล้ว +801

      That's the speed of python for you

    • @randomperson1418
      @randomperson1418 2 ปีที่แล้ว +651

      It's clearly not optimized for speed XD

    • @afj810
      @afj810 2 ปีที่แล้ว +181

      because the bot doesn't know how to chord

  • @SpecRec
    @SpecRec 2 ปีที่แล้ว +3534

    I find it funny that the bot keeps hesitating as if it's thinking lmao

    • @Balou_560
      @Balou_560 2 ปีที่แล้ว +533

      I think it's waiting for the particles that happen when you make a move on this version of the game to clear up as to not mess up what the bot is seeing since I assume it's tracking individual pixels

    • @derdbolt8906
      @derdbolt8906 2 ปีที่แล้ว +92

      If it didn't do that it could legit finish in 10 seconds

    • @saadqadeer7807
      @saadqadeer7807 2 ปีที่แล้ว +23

      @Volzye It's not his theory, OC mentioned it in another comment

    • @Balou_560
      @Balou_560 2 ปีที่แล้ว +10

      @Volzye yee I was just repeating what I remembered the vid creator said, i just said I think in case I said anything wrong

    • @blinded6502
      @blinded6502 2 ปีที่แล้ว +17

      @Volzye You are completely and utterly wrong. You underestimate what modern PC's can do by a millionfold

  • @ryanpenalosa3148
    @ryanpenalosa3148 2 ปีที่แล้ว +4669

    He just has a good gaming chair.

  • @spidernh
    @spidernh 2 ปีที่แล้ว +5571

    what's the point of placing flags? you can win the game just by clicking all the spots that aren't mines, flags are actually useless when you have effectively infinite memory

    • @cossibility7019
      @cossibility7019  2 ปีที่แล้ว +3627

      You’re absolutely right!!
      The way that I programmed the bot is that it constantly takes a screenshot of the current board and plays according to what it currently sees. This means that flags are important in this method since the bot always forgets its previous screenshot. My method is slower but it is easier to implement and debug.
      A better way to do it (as you pointed it out) would be to store the board in the computer’s memory and update the mental map after each move. This way, we can optimize the performance of the bot since it won’t need to rely on flags to know the location of each mine.

    • @spidernh
      @spidernh 2 ปีที่แล้ว +361

      @@cossibility7019 ok, also how did you detect each tile? I'm having issues with what you said you did (check a pixel and see what color it is) because there are pixels that are on the number 1 and will work for it, but for a 4 or something, it'll just be the background color

    • @cossibility7019
      @cossibility7019  2 ปีที่แล้ว +663

      What I did is that I took a specific coordinate where each specific tile has their unique pixel colour (I don’t remember the specific coordinate). One thing to be careful with this method, however, is that you have to take into account the particle animations of the game.
      Each time you click a tile, there are different coloured particles that appear on the screen which can ruin the screenshot.
      My cheap solution to avoid the issue is to wait a certain amount of milliseconds after performing each move (I wait for the animation to end). This solution is what mainly makes my bot slower.
      If you don’t want to wait for the animation to end, I believe that there are Python libraires that can deal with image detection (they can recognize similar images)

    • @midtisel4222
      @midtisel4222 2 ปีที่แล้ว +71

      Its only worth it if the bot knew about right clicking to uncover all the unflagged tiles

    • @joelhoon1707
      @joelhoon1707 2 ปีที่แล้ว +147

      This is literally the entire game
      "Why place flags when you can just not click mines"

  • @MrLandShark55_55
    @MrLandShark55_55 2 ปีที่แล้ว +2064

    The PC that we once owned had minesweeper on it. It must have been glitched, or modded somehow, because there was one tile that completes the entire board if you click it first. It was always the same tile, so I was able to beat the hardest difficulty in 2 seconds. The rest of my family went crazy trying to figure out how I did this.

    • @cyh..7
      @cyh..7 2 ปีที่แล้ว +240

      Minesweeper god mode

    • @10A-n2f
      @10A-n2f ปีที่แล้ว +135

    • @FrogGamePlay
      @FrogGamePlay ปีที่แล้ว +176

      ​@@10A-n2fuhm what in the real amogus

    • @FalkyRocket2222
      @FalkyRocket2222 ปีที่แล้ว +3

      @@10A-n2f what the fuck

    • @maximendoza6452
      @maximendoza6452 ปีที่แล้ว +279

      ​@@FrogGamePlay emojis from Ohio 💀

  • @nosu5530
    @nosu5530 2 ปีที่แล้ว +651

    As a minesweeper player, I can confirm we play it by teleporting our mouse

    • @katdoestuffYT
      @katdoestuffYT 2 ปีที่แล้ว +26

      ‘Mineswapper’ lol
      And yes, I definitely play mineswapper by teleporting our mouse

    • @OverHeatVD
      @OverHeatVD 2 ปีที่แล้ว +4

      @@katdoestuffYT xD

    • @aakashxd9868
      @aakashxd9868 ปีที่แล้ว +1

      can anyone tell me how to play this game
      because most of the time i just click here and there randomly

    • @OverHeatVD
      @OverHeatVD ปีที่แล้ว +16

      @@aakashxd9868 Clicking a cell reveals it. If said cell has a mine, you instantly lose. The goal is to open every non-mine cell.
      Every cell you've already opened will display a number on it. That number is how many mines there are in the 8 surrounding cells. Using this information, you can deduce which tiles have a mine and which tiles don't (in which case they're safe to open).
      Also, there's a thing called flags which allow you to mark tiles as having a mine (so you don't accidentally open them later).

    • @aakashxd9868
      @aakashxd9868 ปีที่แล้ว

      @@OverHeatVD thnx for the info buddy.. 😄

  • @theweirdguyroger8537
    @theweirdguyroger8537 2 ปีที่แล้ว +616

    bots in fighting games: 🤡
    bots in chess sudoku minesweeper and other games: 😎

    • @hanzzxeditz
      @hanzzxeditz 2 ปีที่แล้ว +156

      That's because in fighting games they can't predict what the player is thinking as they have a consious mind, while here, they can predict as every code has a pattern, patterns are easy to predict therefore easier -🤓

    • @JoThNoMi
      @JoThNoMi 2 ปีที่แล้ว +94

      @@hanzzxeditz the 🤓do be spitting facts tho.

    • @getawayunclejohn7107
      @getawayunclejohn7107 2 ปีที่แล้ว +50

      @@hanzzxeditz 🤓 but respect

    • @Dips-u
      @Dips-u 2 ปีที่แล้ว +17

      Then there’s bots in Fps games.

    • @streyngthz
      @streyngthz 2 ปีที่แล้ว +4

      Bot also useful in tower defense game, especially the ones that need grinding like btd6.

  • @hagash1843
    @hagash1843 2 ปีที่แล้ว +18

    By a moment i thought the title was " boy destroys google's minesweeper", and i thought "danm, this boy is so good that his mouse is teleporting"

    • @danielyuan9862
      @danielyuan9862 2 ปีที่แล้ว +1

      He should play osu! some time.

  • @Metawire61
    @Metawire61 2 ปีที่แล้ว +158

    For a lightly programmed bot this is actually pretty fast, pretty sure full programing can do this in like 10 seconds

    • @maxsurman7838
      @maxsurman7838 11 หลายเดือนก่อน

      See CodeBullet's version of this.

    • @xenird
      @xenird 5 หลายเดือนก่อน

      10 milliseconds

    • @nullieee
      @nullieee 5 หลายเดือนก่อน

      @@xenird If you take the time it takes for the clear transition to complete (when you click an empty square), let's say it's 5 frames or about 83ms, then multiply that by however many times you'd clear, i'll lowball it and say its about 10, you get 833ms. 10 seconds might be too high but I don't think a bot can complete google's minesweeper in under a second. A minesweeper with no transitions however can be completed way faster, but it depends how open the field is aka how many clear squares you're clicking

  • @cj_th3_g4m3r4
    @cj_th3_g4m3r4 2 ปีที่แล้ว +111

    I’m sure we can agree that this bot is pretty good at making music

  • @atlix2
    @atlix2 2 ปีที่แล้ว +7

    i still don’t even know how minesweeper works and this is just salt in the wound. dope bot

    • @zacharymorris3775
      @zacharymorris3775 2 ปีที่แล้ว +3

      each number tells you how many mines are adjacent to that number

  • @jan_Sanku
    @jan_Sanku 2 ปีที่แล้ว +87

    I feel like this could be upgraded with concurrency. Right now the bot will first click a lot and then place flags, then repeat. It should be possible to do more things at once and with less waiting time in between

    • @adanakebap101
      @adanakebap101 2 ปีที่แล้ว +14

      He explained that bot works by taking screenshots. It has to wait so particle animations won't ruin the screenshot

    • @azamatrustamov8687
      @azamatrustamov8687 2 ปีที่แล้ว +1

      @@adanakebap101 where did he explained, can you forward it please

    • @adanakebap101
      @adanakebap101 2 ปีที่แล้ว +1

      @@azamatrustamov8687 look at spidernh's comment. Creator replied and explained it.

    • @azamatrustamov8687
      @azamatrustamov8687 2 ปีที่แล้ว

      @@adanakebap101 Thank you a lot

  • @JillofTrades
    @JillofTrades 2 ปีที่แล้ว +140

    Google: *rigs the system*
    Bot: *rigs the game*
    Google: Wait, that is illegal...

    • @roundelmo
      @roundelmo 2 ปีที่แล้ว +6

      It’s not rigged though

    • @CreeperMan-dr6ql
      @CreeperMan-dr6ql ปีที่แล้ว +1

      What makes you think it's rigged?

    • @victoriouswinner7745
      @victoriouswinner7745 ปีที่แล้ว +2

      @@CreeperMan-dr6ql replies to seven month old comment, misses the joke
      A classic.

  • @Thomas_Everman
    @Thomas_Everman 2 ปีที่แล้ว +17

    It's freaking 4 in the morning and I'm watching a bot play minesweeper.

  • @cmyk8964
    @cmyk8964 2 ปีที่แล้ว +15

    It’s interesting, as a human Minesweeper player, to see a bot alternate between opening ALL safe spaces and flagging ALL dangerous spaces. Super multitasking.

    • @helio3928
      @helio3928 2 ปีที่แล้ว +1

      how do we know you're a human

    • @10A-n2f
      @10A-n2f ปีที่แล้ว

  • @SqueaksDeCork
    @SqueaksDeCork ปีที่แล้ว +1

    "The game isn't hard you're just bad" Minesweeper bot 2023

  • @EezePuffy
    @EezePuffy 2 ปีที่แล้ว +16

    2x speed to give him the best gaming chair

  • @Slineryo
    @Slineryo ปีที่แล้ว +1

    bot: **spams**
    bot: "gotta go afk and get some food"
    bot: "im back"
    *[repeats until it beats the game]*

  • @ClassicDannyboy
    @ClassicDannyboy 2 ปีที่แล้ว +6

    I used to play this in school for hours, great to see a bot do it in a few minutes :)

  • @Turgineer
    @Turgineer 8 หลายเดือนก่อน +1

    I couldn't even finish a quarter of this game. Wow.

  • @anselmorrison3774
    @anselmorrison3774 2 ปีที่แล้ว +25

    The song when you beat google minesweeper slaps though

    • @10A-n2f
      @10A-n2f ปีที่แล้ว

      🤩🤩🤩🤩🤩🤩🤩

  • @Drakonus_
    @Drakonus_ 2 ปีที่แล้ว +18

    Would've been much faster if the bot right-clicked on the numbers instead of manually left-clicking the boxes.

    • @ouwkyuha
      @ouwkyuha 2 ปีที่แล้ว +1

      We can't do that on Google's Minesweeper

    • @Drakonus_
      @Drakonus_ 2 ปีที่แล้ว +1

      @@ouwkyuha Yeah, my mistake. With Google's version, it should be both left-click and right-click at the same time.

  • @lifepreviouslybalanced5743
    @lifepreviouslybalanced5743 2 ปีที่แล้ว +34

    Meanwhile, me: *dying on the second click on easy mode*

    • @_thresh_
      @_thresh_ ปีที่แล้ว +2

      Just put flags in all the corners of the first big part you dig out

  • @riemerdijkstra5974
    @riemerdijkstra5974 ปีที่แล้ว +1

    the day google added minesweeper was the day human productivity lowered by 97%

  • @08.aothaiha7
    @08.aothaiha7 2 ปีที่แล้ว +279

    What would the bot do with 2 tiles both have 50% chance to have a mine? (I get that a lot when I play this game)

    • @thewaterleaf7929
      @thewaterleaf7929 2 ปีที่แล้ว +116

      simply be smarter than a human and not take the gamble, duh, it should leave it be until it has more information from other tiles being revealed around the initially troubling ones
      (this wasn't meant to be insulting btw, I was simply trying to play an arrogant personality as a joke)

    • @MatiasRupp
      @MatiasRupp 2 ปีที่แล้ว +133

      @@thewaterleaf7929 sometimes you can't do anything logical but random

    • @popplejam2128
      @popplejam2128 2 ปีที่แล้ว +56

      @@MatiasRupp nope, not how minesweeper works. unless you’re on the last click, you just do another spot and wait until it brings you back toward that area with more information. you don’t have to take a gamble before the last click, and gambles on the last click are very rare.

    • @ITS_MysteR
      @ITS_MysteR 2 ปีที่แล้ว +6

      The bot starts having a seizure

    • @thk2005
      @thk2005 2 ปีที่แล้ว +8

      To my experience, just pick on depend its spawn pattern
      Like a number got L-shape empty tiles
      | | x | |
      | | 3 | 2 I
      |1 | 1 |||||
      then pick the x tile cus most of time (not always) will be a safe spot
      That spawn pattern usually occured so its high chance of safe
      Only do this when u actually no choice more than random pick, and hope its a good tile

  • @filipswiatkowski1058
    @filipswiatkowski1058 2 หลายเดือนก่อน +1

    This could be further optimised by implementing so that the bot doesnt analise the whole board every time but instead just an area around his latest move. This could continue untill no move could be done in an area, after which it could analise a bigger area or the board for the nearest posible move.

  • @nightrose6116
    @nightrose6116 2 ปีที่แล้ว +55

    This unironically made me understand how minesweeper works better than any explanation given to me

  • @Wingding7562
    @Wingding7562 ปีที่แล้ว +1

    Ah yes now that we have located all the mines we shall turn this land into a marsh

  • @mysticshadow7110
    @mysticshadow7110 2 ปีที่แล้ว +4

    I only managed to beat hard mode twice only because the other times there were some spots that had to deal with pure luck guessing.

  • @thetruth3068
    @thetruth3068 ปีที่แล้ว +1

    This guy is the reason captcha exist

  • @ibm30rpg
    @ibm30rpg 2 ปีที่แล้ว +10

    As a data structures programmer, I was surprised that the bot didn't go even faster. Maybe the code used the high time complexity traversal methods.

    • @fazaazafg
      @fazaazafg 2 ปีที่แล้ว +4

      The bot didn't go faster because it uses screenshots to analyze the board and the particles flying around makes it hard to do so. So it has to wait a bit for the particles to disappear first.

    • @Shaded_crown1
      @Shaded_crown1 ปีที่แล้ว

      Probably added a wait() idk

    • @basicallyjusttan7727
      @basicallyjusttan7727 ปีที่แล้ว

      @@Shaded_crown1 Are you talking about luau because I'm pretty sure thats the only language with the wait()

    • @Shaded_crown1
      @Shaded_crown1 ปีที่แล้ว

      @@basicallyjusttan7727 Lua yes

    • @basicallyjusttan7727
      @basicallyjusttan7727 ปีที่แล้ว

      @@Shaded_crown1 Luau*

  • @Diamondking_07
    @Diamondking_07 2 ปีที่แล้ว +3

    Plot twist: there is no bot but no one would believe that he is this good

    • @10A-n2f
      @10A-n2f ปีที่แล้ว

      🤗🤗🤗🤗

  • @ocandy675
    @ocandy675 ปีที่แล้ว +2

    Imagine the bot just finishing it then checking his search history

  • @RiteOfSolaris
    @RiteOfSolaris 2 ปีที่แล้ว +3

    While I have gotten a 63 second time in medium, making a bot is hard and everyone should appreciate the work and effort put in.

  • @shumper1504
    @shumper1504 ปีที่แล้ว +1

    i feel proud that my personal best minesweeper time is just 3 seconds faster that the bot

  • @xNightskyy
    @xNightskyy 2 ปีที่แล้ว +3

    bot: i am god
    The world record holder: *n o*

  • @Abon963
    @Abon963 ปีที่แล้ว +1

    I got this video in my recommendation and i remember playing it when i was a child

  • @imboredrly5478
    @imboredrly5478 2 ปีที่แล้ว +2

    atleast ai wont replace humans playing minesweeper

  • @dpetersz
    @dpetersz ปีที่แล้ว +1

    "Destroys" is generous

  • @hoodiesticks
    @hoodiesticks ปีที่แล้ว +5

    I didn't think this was all that impressive until I realized the bot didn't have any special API access. It needed to take screenshots of the game and process the images constantly to understand what was going on, and calculate where on the screen to move the mouse to before clicking. That's a really cumbersome process to have to code.

  • @divine_arch2513
    @divine_arch2513 2 ปีที่แล้ว +1

    I didn’t know google had a mine sweeper, I thought there was only snake

  • @CCCMTTT
    @CCCMTTT 2 ปีที่แล้ว +7

    Now where’s the run where the game makes you guess where 2 bombs are in a 2x2 and the bot can’t calculate that

  • @JohnDoe-mx6xh
    @JohnDoe-mx6xh ปีที่แล้ว +1

    The way it spams flags is so satisfying

  • @bonegamerthecyndaquill7181
    @bonegamerthecyndaquill7181 2 ปีที่แล้ว +101

    is it odd to say I can keep up with the bot's line of thinking to an extent?

    • @jestfullgremblim8002
      @jestfullgremblim8002 2 ปีที่แล้ว +15

      Nah, this bot isn't that good at the game lol

    • @Mik-kv8xx
      @Mik-kv8xx 2 ปีที่แล้ว +21

      @@jestfullgremblim8002 don't be so harsh on it, if not for the animations it could be a good bit faster

    • @jestfullgremblim8002
      @jestfullgremblim8002 2 ปีที่แล้ว +4

      @@Mik-kv8xx speed is not what i'm refering to. I mean patter recognition and that kind of stuff. A good Minefield player would have flaged more mines in some parts of the video and wouod also have cleared more spaces in some other parts. The bot is missing some stuff

    • @Mik-kv8xx
      @Mik-kv8xx 2 ปีที่แล้ว +3

      @@jestfullgremblim8002 well,it's not an ai, just an algorithm

    • @jestfullgremblim8002
      @jestfullgremblim8002 2 ปีที่แล้ว +2

      @@Mik-kv8xx my arguments still applies and stands. The algorithm is missing some stuff. I'm not saying that it isn't good, that it is slow or that i can make a better one. I'm just saying that it can easily improve if some new patterns to recognize are added to it!

  • @Waterbottlez_
    @Waterbottlez_ ปีที่แล้ว

    It has now become my goal every time I play google minesweeper to be faster than 117 seconds

  • @jwzc
    @jwzc 2 ปีที่แล้ว +3

    "5 game endings no one has ever seen"

  • @cathpalug1221
    @cathpalug1221 ปีที่แล้ว

    This give me comfort since I thought 88 seconds are too much

  • @frankie11998
    @frankie11998 2 ปีที่แล้ว +4

    wow, he's really good at the game! 😃

  • @thefirstbigsmokepopcat744
    @thefirstbigsmokepopcat744 ปีที่แล้ว +2

    Tip: when playing this, click on the numbers that have a flag next to them, instead of clearing just one square, it clears all squares with no bombs

  • @valakarhtelgrem5210
    @valakarhtelgrem5210 2 ปีที่แล้ว +4

    How did the bot get those right at 0:59 ?
    It basically guessed

  • @aweebtaku429
    @aweebtaku429 2 ปีที่แล้ว +1

    The Coding Bullet : Don't mind me imma steal your code

  • @Wulfjager
    @Wulfjager ปีที่แล้ว

    When it said, "dodododolildo fwuh-fwuh-fwuh-fwuh-fwuh... dododooodlildi- fwuh-fwuh-fwuh" I felt that

  • @DaApplely
    @DaApplely 2 ปีที่แล้ว +3

    minesweep ASMR

  • @pixie9103
    @pixie9103 ปีที่แล้ว +2

    I don’t get how this game works but this really fun to watch

  • @doggo_woo
    @doggo_woo 2 ปีที่แล้ว +15

    Just wanted to ask, what libraries did you use for image detection and the mouse movements? This seems like a good project for beginning complex python learning.

    • @cossibility7019
      @cossibility7019  2 ปีที่แล้ว +7

      Pyautogui

    • @cossibility7019
      @cossibility7019  2 ปีที่แล้ว +4

      Good luck on your projects!

    • @doggo_woo
      @doggo_woo 2 ปีที่แล้ว

      @@cossibility7019 Only pyautogui? I've tried that before, time to try it again!

    • @cossibility7019
      @cossibility7019  2 ปีที่แล้ว +3

      @@doggo_woo yup only pyautogui for mouse movement and image detection!

    • @agent6124
      @agent6124 2 ปีที่แล้ว +5

      @@cossibility7019 i will try to do a bot on dino game with pyautogui !
      thx for the tip

  • @dez9088
    @dez9088 2 ปีที่แล้ว +1

    The fact that even a bot had to think

  • @bookle5829
    @bookle5829 2 ปีที่แล้ว +11

    You need to cut down that waiting time. I don't think the bot was thinking. I think the bot was like "Did I win? ...No"
    Edit: By you, I mean the programmer who made it.

    • @ITS_MysteR
      @ITS_MysteR 2 ปีที่แล้ว

      I think that's only because of the programming software he's using, he can't really fix that currently.

    • @bookle5829
      @bookle5829 2 ปีที่แล้ว

      @@ITS_MysteR Oh yeah whoops

    • @cossibility7019
      @cossibility7019  2 ปีที่แล้ว +16

      @@bookle5829
      Yeah umm so if you guys are curious, the reason why my bot is slow is kinda dumb and funny. So notice that in Google minesweeper, when you click on a tile, there is particle animations. These particle animations actually ruin the screenshot that the bot takes to detect the tiles lmao. So i just made the bot wait for the particle animations to end before taking the next screenshot.
      So basically, the bot is like “Are the particles gone so that I can take a clean screenshot… No”
      Using advance image detection libraries, I could probably cut the waiting time of the bot by making the bot guess tiles even if there are particles covering them. But yeah, I don’t feel like it cuz I’m working on a another project right now. 😅

    • @bookle5829
      @bookle5829 2 ปีที่แล้ว

      @@cossibility7019 Oh alright lol
      l hope someone can improve it

    • @nhn05
      @nhn05 2 ปีที่แล้ว

      @@cossibility7019 Instead of scanning for green tiles. Why don't you scan for pixel of the color of number 1, 2, 3, 4 in each tiles. You won't have to deal with the animation.
      Edit: fixing minor typos

  • @sarojandongol1482
    @sarojandongol1482 ปีที่แล้ว +2

    Seems like it works on screenshots and thus dependant on the app's speed, thus oddly you can just kinda keep up with what moves it will do the next cycle.

  • @canigetuuh
    @canigetuuh 2 ปีที่แล้ว +9

    Listen to 1:52 at 0,25x

    • @athensroja
      @athensroja 7 หลายเดือนก่อน +1

      new music

  • @coolguy163
    @coolguy163 2 ปีที่แล้ว +1

    as a fan of minesweeper i can say this is definitely a video

  • @Alina060979
    @Alina060979 2 ปีที่แล้ว +6

    Hello! I am from Uzbekistan. I'm 10 years old. I passed the game "Sapper" 3 years ago. It's not difficult, you just need to learn how to play it!

    • @midtisel4222
      @midtisel4222 2 ปีที่แล้ว +2

      As a Polish guy, you are right, i can win the game faster than this bot can due to the fact that i memorised all the patterns and know about right clicking

    • @Alina060979
      @Alina060979 2 ปีที่แล้ว

      @@midtisel4222 Если тебе не удобно писать английским пиши русским :) Я не Англичанин.

    • @araserwhenthe
      @araserwhenthe 2 ปีที่แล้ว +7

      That's cool, and not to be rude but, what does this actually have to do with this video?

    • @ajdndbdjbdj
      @ajdndbdjbdj 2 ปีที่แล้ว +1

      @@araserwhenthe and why they mention where are they from XD

    • @JoThNoMi
      @JoThNoMi 2 ปีที่แล้ว

      @@midtisel4222 Non-polish guys: is it possible to learn this power.

  • @nobright7968
    @nobright7968 ปีที่แล้ว

    This is like the equivalent of playing chess against your right hand with your left

  • @asheep7797
    @asheep7797 2 ปีที่แล้ว +5

    2nd! since the other guy said 3rd instead of 2nd

  • @CeeMonay
    @CeeMonay 2 ปีที่แล้ว

    Why does this video low key make me anxious

  • @PedroLucas-ok9sb
    @PedroLucas-ok9sb 2 ปีที่แล้ว +3

    Nice

  • @Em-.-
    @Em-.- 2 ปีที่แล้ว +1

    I think this taught me how to play minesweeper. It’s a miracle!!

    • @iguessso1010
      @iguessso1010 2 ปีที่แล้ว +1

      terrifying pfp

    • @Em-.-
      @Em-.- 2 ปีที่แล้ว

      @@iguessso1010 haha thanks

  • @PookyCodes
    @PookyCodes 3 ปีที่แล้ว +3

    Let’s go! 0th!

  • @Zephrys1
    @Zephrys1 2 ปีที่แล้ว

    i don’t even know how to play minesweeper but that sure is music to my ears

  • @Shreyas_Jaiswal
    @Shreyas_Jaiswal 2 ปีที่แล้ว

    The sound feels like some group do people are parading and then shooting from toy guns. 😂😂

  • @TemporalTrap
    @TemporalTrap ปีที่แล้ว +1

    The music is fire🔥

  • @MakerofMesses
    @MakerofMesses 2 ปีที่แล้ว

    I love this music! It bangs! It helped me and my wife get back together!

  • @wjgthatsit2357
    @wjgthatsit2357 2 ปีที่แล้ว

    thanks youtube for putting this on my reccomended

  • @Man_ManUK
    @Man_ManUK ปีที่แล้ว

    first time ever, actually seeing the end of mine sweeper in my life

  • @enslavedcontent
    @enslavedcontent ปีที่แล้ว

    Theres only 1 thing that keeps bots from overtaking humanity, the 50/50

    • @q12aw50
      @q12aw50 ปีที่แล้ว

      Humans are faster than this by a long shot

  • @gamechanger0937
    @gamechanger0937 ปีที่แล้ว +1

    Me who doesn't know the rules and how to play Minesweeper: *Hmm, Interesting.*

  • @napnap_32
    @napnap_32 ปีที่แล้ว +1

    "I'm just lagging I swear"

  • @frobo
    @frobo ปีที่แล้ว +1

    better gaming chair

  • @justanotherboringaccountin832
    @justanotherboringaccountin832 2 ปีที่แล้ว

    minesweeper: why do i hear boss music WHY DO I HEAR BOSS MUSIC?!
    *bot flashes in*

  • @Zandezz.
    @Zandezz. ปีที่แล้ว

    The fact that the wr is much faster makes me happy

  • @funnygamenotfound9134
    @funnygamenotfound9134 2 ปีที่แล้ว +1

    Better than most of the asmr videos.

  • @BrainrotOf87
    @BrainrotOf87 2 ปีที่แล้ว +1

    SEND THIS MAN TO BOSNIA

  • @AlteFore
    @AlteFore 2 ปีที่แล้ว +2

    Jesus Christ now minesweeper has a bot crisis

  • @tumultoustortellini
    @tumultoustortellini 2 ปีที่แล้ว +1

    Unironically close to being a song (arguably already is). This soundfront could go dummy.

  • @ericawu8779
    @ericawu8779 2 ปีที่แล้ว

    I put this at 2 times speed and it literally just sounds like birds being chaotic

  • @thefallen8377
    @thefallen8377 2 ปีที่แล้ว

    Bro got 0 bugatti and doesnt breath air.
    Classic Tate W

  • @JustAPersonWhoComments
    @JustAPersonWhoComments 2 ปีที่แล้ว

    There’s something called “Tool Assisted Speedrun”
    and WWII

  • @Skitguy1
    @Skitguy1 ปีที่แล้ว +1

    Why does this feel like it was recorded in 2014

  • @saquial
    @saquial 8 หลายเดือนก่อน

    It’s a bit evident how it having to “see” the board affects its performance. It has to wait for the board to clear to update its knowledge database, scan the image, recreate it in a model which the function is able to understand (probably a matrix), analyze the state of the board and then manually use the mouse to click on each conclusion made before.
    The program not having access to a mathematic model of the board, and instead having to build it manually each time, is what ends up slowing it the most.

  • @block827
    @block827 2 ปีที่แล้ว +1

    never understood how to play that game

  • @herobrine8763og
    @herobrine8763og ปีที่แล้ว

    By left and right clicking a number while it has sufficient flags around it, it automatically clears all of the squares that can be cleared and are also neighbours of that number

  • @doctorsilva1345
    @doctorsilva1345 2 ปีที่แล้ว

    This is the first time I see the winning screen.

  • @jaydon8822
    @jaydon8822 2 ปีที่แล้ว +2

    This was truely mindsweeping.

  • @Octocat
    @Octocat 2 ปีที่แล้ว

    This is me avoiding legos in the dark for a glass of water.

  • @da_w1nn3r96
    @da_w1nn3r96 2 ปีที่แล้ว

    Middle mouse click opens up all adjacent squares as long as there are the correct number of flags adjacent to it.

  • @ai__m__3683
    @ai__m__3683 2 ปีที่แล้ว +1

    1:11 Dude. This bot guessed safe place. He clicked seconds place, when in there could have been a mine. (Moment with 1 1 1)

  • @frimnpi7473
    @frimnpi7473 2 ปีที่แล้ว +1

    damn so in the end the bombs were just flowers

  • @magikarpusedsplash8881
    @magikarpusedsplash8881 2 ปีที่แล้ว

    If I were forced to use python, I'd scan for numbers/flags only in cells that have been clicked. If there is new background color outside the clicked cell (or the cell is blank instead of bearing a number), then I would re-scan the entire field after the animation delay.
    To manage it all, I'd keep cells in a dict with coordinate tuples for keys, and an int representing the cell state (0-9 for cells without mines, -1 for flagged cells, and a non-existant key if the cell hasn't been interacted with yet. Simply do "if coord in field:" to check if the program has any info on that coord.)
    Or if I weren't limited to python, I'd use JavaScript so that I can skip the scanning step and read the field data directly (not cheating of course, but skipping OCR). The actual logic behind the solving would be the same though, of course.

  • @carlosmiguel5796
    @carlosmiguel5796 ปีที่แล้ว

    Google Minesweeper: 😄😉😊
    Microsoft Windows Minesweeper: 💀😱😈