BQN: Explicit to Tacit

Поделиться
HTML-код
  • Опубликовано: 21 дек 2024

Комментарии • 11

  • @meme_gawd
    @meme_gawd 4 месяца назад +10

    On my way to become a tacit ninja

  • @CielMC
    @CielMC 4 месяца назад +4

    Were you around when I asked in the BQN matrix chat on how to make things point-free 😅 this timing is weirdly perfect

    • @code_report
      @code_report  4 месяца назад

      haha, no - just a lucky coincidence 🥳

  • @darrylkid210
    @darrylkid210 4 месяца назад

    9:30
    How are you moving the symbols around like this?

    • @code_report
      @code_report  4 месяца назад

      Not sure exactly what you are asking. Ctrl + C for copying, Ctrl + X for deleting and Delete to get rid of the new lines? Does any of that help

    • @darrylkid210
      @darrylkid210 4 месяца назад

      @@code_report Yup that helps. You did it so fast, almost thought you were using vim.

  • @norude
    @norude 4 месяца назад

    I like your videos, but they feel a bit not structured at the inter-cideos level. I don't even know if that's a bad or a good thing

  • @zcubesdemoes2191
    @zcubesdemoes2191 4 месяца назад

    // z^3 solution
    D= {
    "LEFT" :[0,-1],
    "RIGHT" :[0,1],
    "UP" :[-1,0],
    "DOWN" :[1,0]

    };
    DIRECTIONS=D;
    m=["RIGHT","DOWN"];
    n=3;
    |n,n,0..(n ²)|#((D#[m])[0] ⋮SUM)~