lemmy.net.au
  • Communities
  • Create Post
  • Create Community
  • heart
    Support Lemmy
  • search
    Search
  • Login
  • Sign Up
favoredponcho@lemmy.zip to Mildly Infuriating@lemmy.worldEnglish · 2 days ago

Find Cow

lemmy.zip

external-link
message-square
79
fedilink
357
external-link

Find Cow

lemmy.zip

favoredponcho@lemmy.zip to Mildly Infuriating@lemmy.worldEnglish · 2 days ago
message-square
79
fedilink
alert-triangle
You must log in or register to comment.
  • leftzero@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    7
    ·
    1 day ago

    COW

    • tamal3@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 day ago

      I looked for a few minutes, nearly gave up, and then I found it nearly instantly once I started looking for the correct distance between C - W. Kind of interesting!

  • Cypher45@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    7
    ·
    1 day ago

    This is actually genius, I’m not gonna lie.

  • cannedtuna@lemmy.world
    link
    fedilink
    English
    arrow-up
    187
    arrow-down
    3
    ·
    2 days ago

    Found it

    Easy

    • LadyMeow@lemmy.blahaj.zone
      link
      fedilink
      English
      arrow-up
      18
      ·
      2 days ago

      Nailed it!

    • BlackPenguins@lemmy.world
      link
      fedilink
      English
      arrow-up
      8
      ·
      2 days ago

      Now you’re thinking like a Taskmaster.

      • JargonWagon@lemmy.world
        link
        fedilink
        English
        arrow-up
        2
        ·
        2 days ago

        The best way to think

    • SanguinePar@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 day ago

      I did wonder if that might prove to be the answer, glad it wasn’t! 😁

    • JargonWagon@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      2 days ago

      Spoiler!

  • zeejoo@thelemmy.club
    link
    fedilink
    English
    arrow-up
    44
    arrow-down
    2
    ·
    2 days ago

    • Treczoks@lemmy.world
      link
      fedilink
      English
      arrow-up
      19
      ·
      2 days ago

      Put it in spoiler tags, please!

  • BOFH666@lemmy.world
    link
    fedilink
    English
    arrow-up
    95
    arrow-down
    2
    ·
    edit-2
    1 day ago
    Tap for spoiler

    Line 15, end of the line

    • ColeSloth@discuss.tchncs.de
      link
      fedilink
      English
      arrow-up
      17
      ·
      2 days ago

      Gawd, it would have been so fucking funny if there actually wasn’t a single instance of cow in it, though. Lol

      • sik0fewl@piefed.ca
        link
        fedilink
        English
        arrow-up
        2
        ·
        2 days ago

        I would have tried longer if I knew it was actually there! I do remember focusing near there and missing it, though.

    • Treczoks@lemmy.world
      link
      fedilink
      English
      arrow-up
      9
      ·
      2 days ago

      You know about spoiler tags?

    • lime!@feddit.nu
      link
      fedilink
      English
      arrow-up
      23
      ·
      2 days ago

      owo

      • Klear@piefed.world
        link
        fedilink
        English
        arrow-up
        19
        ·
        2 days ago

        wow

        • Not a newt@piefed.ca
          link
          fedilink
          English
          arrow-up
          10
          ·
          2 days ago

          woo

          • azimir@lemmy.ml
            link
            fedilink
            English
            arrow-up
            1
            ·
            1 day ago

            COO. Cow in Scots.

    • njordomir@lemmy.world
      link
      fedilink
      English
      arrow-up
      7
      ·
      2 days ago

      Good description. I read this and perfectly estimated the location you described within 5 seconds.

  • Treczoks@lemmy.world
    link
    fedilink
    English
    arrow-up
    18
    ·
    2 days ago

    Found it. I wonder what the designer did to make sure to have exactly one cow in there.

    • Snazz@lemmy.world
      link
      fedilink
      English
      arrow-up
      6
      ·
      2 days ago

      What I would have done is started filling in letters randomly and every time a C or W ends up next to an O, choose the same letter or an O to put on the opposite side of the O.

      Its hard to prove, but I’m pretty sure there isn’t a situation where a space can’t be filled in with this algorithm.

      • MatSeFi@lemmy.liebeleu.de
        link
        fedilink
        English
        arrow-up
        2
        ·
        1 day ago

        Yes, this would work — but it comes with a subtle statistical bias: the character ‘W’ ends up underrepresented. With a naïve “avoid COW” approach, only about 25% of the grid will typically be ‘W’.

        A more elegant solution would be:

        • fill the grid completely at random
          • search for every “COW” cluster
            • whenever one is found, copy a random character from one cell in the cluster into another cell of the same cluster
          • Iterate until no “COW” remains

        That keeps the distribution much closer to uniform while still guaranteeing a valid puzzle. Then just insert the single “COW” manually wherever you want the hidden solution to be.

        Julia code example
        s= (320,180)            #size
        m=rand(['C','O','W'],s) #random init
        c=1
        while c>0      #iterate till solved
            c=0
            for i in 1:first(s)
                for j in 1:last(s)
        
                    #check for 'COW' in each cluster of 3 and copy a character
                    #from a rendom cell to an other random cell of the cluster if found
                    
                    if i>2 &&  m[i-2:i,j] ==['C','O','W']   #vertical
                        c +=1
                        r =shuffle([1,2])
                        m[i-r[1],j] = m[i-r[2],j]
                    end
                    if j>2 && m[i,j-2:j]  ==['C','O','W']   #horizontal
                        c +=1
                        r =shuffle([0,1,2])
                        m[i,j-r[1]] = m[i,j-r[2]]
                    end
                end
            end
        end
        

        The neat part is that this preserves an almost perfectly balanced character frequency.

        For comparison, the puzzle in the example image seems to contain roughly:

        C: ~260 (~25%) O: ~520 (~50%) W: ~244 (~25%)

        So the original author clearly used a different generation strategy.

        Possibly on purpose: visually, ‘C’ and ‘O’ are much easier to confuse than ‘W’. Reducing the number of 'W’s therefore increases the search difficulty. In that sense, the approach suggested by @Snazz@lemmy.world is probably preferable: keep the distribution mostly balanced, but intentionally bias it just enough to make the puzzle psychologically annoying.

        I wonder if there is a non iterative way to generate this puzzle with a ‘uniform’ character distribution 🤔

    • zorblitz@programming.dev
      link
      fedilink
      English
      arrow-up
      3
      arrow-down
      1
      ·
      2 days ago

      Top of the page says find 1 cow, so yes

  • ORbituary@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    55
    arrow-down
    1
    ·
    2 days ago

  • cybervegan@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 day ago

  • TrackinDaKraken@lemmy.world
    link
    fedilink
    English
    arrow-up
    3
    ·
    1 day ago

    This is one of those things a computer could do instantaneously, but a human can not.

    Cowever, ask a computer to find a how IRL, and it just sits there on your desk and blinks at you.

    • Rooster326@programming.dev
      link
      fedilink
      English
      arrow-up
      3
      ·
      1 day ago

      I, too, cannot find a how IRL

  • Coolkat@slrpnk.net
    link
    fedilink
    English
    arrow-up
    60
    arrow-down
    3
    ·
    2 days ago

    Had to find it

    • Treczoks@lemmy.world
      link
      fedilink
      English
      arrow-up
      12
      ·
      2 days ago

      Use spoiler tags, please!

    • kinkles@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      14
      ·
      2 days ago

      It’s missing the 1, try again

  • billwashere@lemmy.world
    link
    fedilink
    English
    arrow-up
    24
    arrow-down
    3
    ·
    2 days ago

    • Treczoks@lemmy.world
      link
      fedilink
      English
      arrow-up
      10
      ·
      2 days ago

      Put it in spoiler tags, please!

      • billwashere@lemmy.world
        link
        fedilink
        English
        arrow-up
        2
        ·
        1 day ago

        Sorry….

  • Little1Lost@gehirneimer.de
    link
    fedilink
    arrow-up
    9
    ·
    2 days ago

    i almost lost focus before finding it because of all the owo’s

  • BananaPeal@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    24
    ·
    2 days ago

    Wow

    • CIA_chatbot@lemmy.world
      link
      fedilink
      English
      arrow-up
      16
      ·
      2 days ago

      Wow is line 4

      • Da Bald Eagul@feddit.nl
        link
        fedilink
        English
        arrow-up
        4
        ·
        2 days ago

        Wow is line 1, first 3 characters

        • CIA_chatbot@lemmy.world
          link
          fedilink
          English
          arrow-up
          1
          ·
          1 day ago

          I’m beginning to think this puzzle is rigged!

    • betterdeadthanreddit@lemmy.world
      link
      fedilink
      English
      arrow-up
      7
      ·
      2 days ago

      No, cow.

    • Snot Flickerman@lemmy.blahaj.zone
      link
      fedilink
      English
      arrow-up
      5
      ·
      edit-2
      2 days ago

      Wow wow

      WOW WOW
      When I roll into the WOW WOW
      When I stroll into the WOW WOW
      When I bounce into the WOW WOW

  • glibg@lemmy.ca
    link
    fedilink
    English
    arrow-up
    11
    ·
    2 days ago

    Many, many cocs.

  • diabetic_porcupine@lemmy.world
    link
    fedilink
    English
    arrow-up
    12
    ·
    2 days ago

    Wow!

Mildly Infuriating@lemmy.world

mildlyinfuriating@lemmy.world

Subscribe from Remote Instance

Create a post
You are not logged in. However you can subscribe from another Fediverse account, for example Lemmy or Mastodon. To do this, paste the following into the search field of your instance: !mildlyinfuriating@lemmy.world

Home to all things “Mildly Infuriating” Not infuriating, not enraging. Mildly Infuriating. All posts should reflect that. Please post actually infuriating posts to !actually_infuriating@lemmy.world

I want my day mildly ruined, not completely ruined. Please remember to refrain from reposting old content. If you post a post from reddit it is good practice to include a link and credit the OP. I’m not about stealing content!

It’s just good to get something in this website for casual viewing whilst refreshing original content is added overtime.


Rules:

1. Be Respectful

Refrain from using harmful language pertaining to a protected characteristic: e.g. race, gender, sexuality, disability or religion.

Refrain from being argumentative when responding or commenting to posts/replies. Personal attacks are not welcome here.

…


2. No Illegal Content

Content that violates the law. Any post/comment found to be in breach of common law will be removed and given to the authorities if required.

That means: -No promoting violence/threats against any individuals

-No CSA content or Revenge Porn

-No sharing private/personal information (Doxxing)

…


3. No Spam

Posting the same post, no matter the intent is against the rules.

-If you have posted content, please refrain from re-posting said content within this community.

-Do not spam posts with intent to harass, annoy, bully, advertise, scam or harm this community.

-No posting Scams/Advertisements/Phishing Links/IP Grabbers

-No Bots, Bots will be banned from the community.

…


4. No Porn/Explicit

Content


-Do not post explicit content. Lemmy.World is not the instance for NSFW content.

-Do not post Gore or Shock Content.

…


5. No Enciting Harassment,

Brigading, Doxxing or Witch Hunts


-Do not Brigade other Communities

-No calls to action against other communities/users within Lemmy or outside of Lemmy.

-No Witch Hunts against users/communities.

-No content that harasses members within or outside of the community.

…


6. NSFW should be behind NSFW tags.

-Content that is NSFW should be behind NSFW tags.

-Content that might be distressing should be kept behind NSFW tags.

…


7. Content should match the theme of this community.

-Content should be Mildly infuriating. If your post better fits !Actually_Infuriating put it there.

-The Community !actuallyinfuriating has been born so that’s where you should post the big stuff.

…


8. Reposting of Reddit content is permitted, but attribution is not required in any way. No links to Reddit in post body

-If you would like to provide a source link, do so in the comments but not in the post body.

…

…


Also check out:

Partnered Communities:

1.Lemmy Review

2.Lemmy Be Wholesome

3.Lemmy Shitpost

4.No Stupid Questions

5.You Should Know

6.Credible Defense


Reach out to LillianVS for inclusion on the sidebar.

All communities included on the sidebar are to be made in compliance with the instance rules.

Visibility: Public
globe

This community can be federated to other instances and be posted/commented in by their users.

  • 554 users / day
  • 1.94K users / week
  • 6.31K users / month
  • 6.5K users / 6 months
  • 1 local subscriber
  • 46.1K subscribers
  • 178 Posts
  • 2.73K Comments
  • Modlog
  • mods:
  • Aer@lemmy.world
  • Tenthrow@lemmy.world
  • Lasherz@lemmy.world
  • BE: 0.19.9
  • Modlog
  • Instances
  • Docs
  • Code
  • join-lemmy.org