We Made Up. (Coding in a Random Language Every Day - Day 4)

Поділитися
Вставка
  • Опубліковано 3 гру 2023
  • Advent of Code 2023 is UPON US! What better way to spend the holiday season, learn to program, and test your skills against your friends. This year, I've decided to try something kind of insane. I'll be choosing a language off the wheel every day.... let's see what happens.
    🏫 COURSES 🏫 Learn to code in C at lowlevel.academy
    📰 NEWSLETTER 📰 Sign up for our newsletter at mailchi.mp/lowlevel/the-low-down
    🙌 SUPPORT THE CHANNEL 🙌 Become a Low Level Associate and support the channel at / lowlevellearning
    🔥🔥🔥 SOCIALS 🔥🔥🔥
    Low Level Merch!: lowlevel.store/
    Follow me on Twitter: / lowleveltweets
    Follow me on Twitch: / lowlevellearning
    Join me on Discord!: / discord
  • Наука та технологія

КОМЕНТАРІ • 104

  • @Codeaholic1
    @Codeaholic1 6 місяців тому +129

    The haskell can't hurt you.

    • @Pylo904
      @Pylo904 6 місяців тому +49

      But it can make a copy of you that is hurt.

    • @scheimong
      @scheimong 5 місяців тому

      ​@@Pylo904🏆

    • @iatheman
      @iatheman 5 місяців тому

      @@Pylo904 🤣

    • @Finkelfunk
      @Finkelfunk 5 місяців тому +6

      Don't be silly. Hurting someone is a side effect. Unless you wrap the pain in a monad

    • @TheStuartstardust
      @TheStuartstardust 5 місяців тому

      Fail fast is a valid strategy 😉

  • @everynametaken
    @everynametaken 6 місяців тому +90

    Why not play a wonderful language known as INTERCAL (specifically the C-INTERCAL dialect)? You can learn to be more polite in your coding, the wonders of non-standard operators such as unary XOR and Mingle, and flow control via COME FROM.

    • @konstantinsotov6251
      @konstantinsotov6251 6 місяців тому +11

      Yeah, since assembly is just easy this seems just about right

  • @Fernando-du5uj
    @Fernando-du5uj 6 місяців тому +120

    It'd be cool if you put some numeric label into the title of the video indicating which one comes first, something like "#1", "#2" and so on.

    • @aurele2989
      @aurele2989 6 місяців тому +4

      +1

    • @NithinJune
      @NithinJune 6 місяців тому +10

      don’t do that; that reduces how many new viewers will watch. a lot of people won’t click on the video if it’s a “part 4”

    • @manateepink9100
      @manateepink9100 6 місяців тому

      Are Day 1 to Day 4 new additions to the titles?

    • @vlinden1
      @vlinden1 6 місяців тому +3

      Put "Advent of Code 2023 day 4" into your title at least. That what was i was searching for when I found your video, but it wasn't close to the top suggestions. Great content, keep it up!

    • @vei_bean
      @vei_bean 5 місяців тому

      y'all realise he put day # in the title. It's at the end so most people don't see it, but it's there

  • @ferdynandkiepski5026
    @ferdynandkiepski5026 6 місяців тому +17

    When is assembly coming onto the wheel? Or maybe to make it cross platform it could even be LLVM IR. That should be fun to write with single static assignment.

  • @torarinvik4920
    @torarinvik4920 6 місяців тому +17

    Haskell is not nearly as bad as you think. It took me just a week to learn the syntax properly. I did take me however, 1.5 years to become comfortable programming in this functional style. Haskell shares many features of Rust, particularly the enums and pattern matching which is a huge part of FP. I do find F# to be a much more practical and enjoyable language to code in though.

    • @Finkelfunk
      @Finkelfunk 5 місяців тому +2

      Let's be real: Everytime I go back to an imperative language I start missing things like infinite lists.

  • @Yupppi
    @Yupppi 6 місяців тому +17

    Coding is cool and fun, but can we get more of the dog?
    How do you know Santa is a Linux user? He has a lot of elfs.

  • @m4rt_
    @m4rt_ 6 місяців тому +3

    for part 2 I just had an array of integers, and I just incremented the index of the cards by the value for the current card, and in the end just summed them up.
    (I made sure that each card started at 1 instead of 0 by incrementing the current card by one at the start of the loop).
    O(n) solution.

    • @J-qak
      @J-qak 6 місяців тому

      Cool, I came up with the same solution! Simple and elegant.

  • @chrishipple4419
    @chrishipple4419 6 місяців тому +8

    Better to get the haskell done sooner rather than later, before the problems get really hard and you've gotta really implement a lot to solve the problem.

  • @nicklewis8605
    @nicklewis8605 6 місяців тому +3

    Did an iterative python solution today it took over ten seconds to finish running. Would be fun to see assembly on the wheel

    • @jasondunken
      @jasondunken 6 місяців тому

      I did an iterative solution for day 4 in Python and it runs in 0.00267 sec to calculate both answers. ASM would be fun.

  • @Q-Ball.
    @Q-Ball. 6 місяців тому +4

    This series is the best. I’ve been doing my best to get through the challenges each day so far

  • @m1geo
    @m1geo 6 місяців тому +5

    I fell into the same recursion trap that you did with my solution. I even tried giving a tonne of memory and letting it run (that didn't work either! Don't hate, I'm a hardware engineer!) I ended up doing the same as you!

    • @TheMasonX23
      @TheMasonX23 5 місяців тому

      I did this at first too and got part of the way through the video before I saw your comment and it inspired me to rethink the recursive nature of my "surprisingly" slow recursive solution (was surprised because it was a naive algorithm, but computers are fast and it's Rust). It went from ~10s to 0.8ms haha

  • @petertillemans2231
    @petertillemans2231 6 місяців тому +1

    Why the fear for Haskell? IME it is a more elegant simple version of Rust. The big issue is that each function has to be a single expression but that is hardly an issue.

  • @GordanCable
    @GordanCable 6 місяців тому +1

    10:11 Don't feel so bad. The Reddit thread is full of people still waiting for their recursive solutions to halt.

  • @glennedgar5057
    @glennedgar5057 6 місяців тому

    Just a suggestion, could you cover embedded frame works like NASA VML and NASA F'Prime?

  • @u.k.m.2929
    @u.k.m.2929 5 місяців тому

    Hey, having done AoC so far with C++ and seeing how beautifully concise Rust can be, are there any good resources for learning Rust?

  • @anon-fz2bo
    @anon-fz2bo 6 місяців тому

    chill series, like it so far

  • @billywang3829
    @billywang3829 6 місяців тому

    I literally fucking love these

  • @lightningx10
    @lightningx10 6 місяців тому +3

    My algo for this question just used a lookup table to count how many copies of each card I had, rather than running the code multiple times you can just multiply how many subsequent copies of other cards you make.
    I also had an amazing off by one error that would cause my answer to balloon over the u128 max int limit for the full problem ;)

    • @reed6514
      @reed6514 6 місяців тому +1

      My original solution used a stack, evaluating every copy & the stack just GREW and GREW.
      Then i changed & looped from last game toward first & cached the # of cards produced by any given card, so then each card only got evaluated once.
      Later, i made stack work by looping over the games in the reverse order. That way the stack size never grew by more than a few, so all that memory work didn't slow it to a halt.

    • @bamless95
      @bamless95 5 місяців тому

      that's a classic dynamic programming solution, pretty cool

  • @michaelhart8928
    @michaelhart8928 6 місяців тому

    Interesting, I actually ended up doing the recursive solution which wasn't that bad either. You do that same iteration over the vector at first for the original cards, then the copies you just check three conditions: if we run out of cards return 0, if we don't have any matching numbers return 1 (we have to add the current card), else we iterate over the slice from the current index + 1 to the number of matching numbers and recurse.
    Definitely not the fastest solution, but it was pretty interesting.

    • @czerwonejakmleko401
      @czerwonejakmleko401 5 місяців тому

      Ye i also used a recursive solution and tbh im proud of it lol

  • @AntonioZL
    @AntonioZL 5 місяців тому

    The elf in the story is probably a junior. Dude is doing everything by himself.

  • @reed6514
    @reed6514 6 місяців тому

    I used a stack & added copied cards to it, and evaluated every card. Stack was GROWING and slowing. So i then went in reverse & cached solutions, so each card would only be evaluated once.
    So for card 37, i would have cached how many cards 38 & 39 produced, but I wouldn't know 36 yet.

  • @einargs
    @einargs 6 місяців тому

    I can't wait for Haskell. The syntax really isn't that strange -- the weirdest part is the where and do. Once you learn haskell, it changes the way you think about code. Not just monads, but stuff like GADTs, DataKinds, and lenses.

  • @maxturgeon89
    @maxturgeon89 5 місяців тому +1

    The hardest part of this puzzle was by far figuring out what the hell was going on in part 2 😆

  • @TimBielawa
    @TimBielawa 6 місяців тому +3

    Chat please get AWK on the list tomorrow

  • @DarnYeet
    @DarnYeet 6 місяців тому +3

    I wanna see C# on the wheel.

  • @ekaylor4104
    @ekaylor4104 4 місяці тому

    I did the recursive solution 💀. Not a fun time lol. Good practice though!

  • @perigord6281
    @perigord6281 5 місяців тому

    Got Uiua on day 4, it was, rather unique.

  • @talonhackbarth7652
    @talonhackbarth7652 5 місяців тому

    I wound up trying a recursive solution as well before realizing I made a huge mistake using recursion and it ran way too slow, lol.

  • @m4rt_
    @m4rt_ 6 місяців тому

    When I did it myself and read the "Island Island" part I think my brain just gave up. So I had to take a quick break and re-read it.

  • @Alexman208GR
    @Alexman208GR 6 місяців тому

    Haha! You almost lanternfished yourself! XD

  • @crissdell
    @crissdell 6 місяців тому +2

    Why excel is not in the list?

  • @Ferrohh
    @Ferrohh 6 місяців тому +5

    Python came out today for me... I can say it was insanely easy

    • @clementdato6328
      @clementdato6328 6 місяців тому +1

      At these fast solution moments, abstract factory proxy instance and monadic endo-functorial category will all perish into def solve(): # just solve it

    • @edgeman1135
      @edgeman1135 6 місяців тому

      For every other challenge I felt like my code was disgusting, I quite enjoyed it!

  • @pyyrr
    @pyyrr 6 місяців тому +1

    yesterdays challenge was so much tougher than todays, today is actually free

  • @HI-qz6yx
    @HI-qz6yx 5 місяців тому

    I made the exact same mistake.. for some reason my brain said "yes, the union!" but indeed it is the intersection...

  • @Kapsyloffer
    @Kapsyloffer 6 місяців тому +1

    Add prolog if you fail one

  • @prawnydagrate
    @prawnydagrate 6 місяців тому

    What the actual fuck. I was stuck on part 2 of this problem for well over an hour, and my solution took 58 seconds to run

  • @axevanced3233
    @axevanced3233 6 місяців тому

    Waiting for Prolog 😂

  • @U20E0
    @U20E0 6 місяців тому +2

    where do you go to suggest Befunge-98 ( a 2D esoteric language that is not unusable )

  • @reed6514
    @reed6514 6 місяців тому

    Speedrun timer, please!

  • @chongyihyang616
    @chongyihyang616 6 місяців тому +1

    Use a dynamic programming table for part 2

    • @SVVV97
      @SVVV97 6 місяців тому

      What would you even DP here? It's a simple fold

    • @chongyihyang616
      @chongyihyang616 6 місяців тому +2

      @@SVVV97 I mean I thought that since recursion is the natural solution to this problem, I would build up the number of cards from the bottom. Basically what came to my mind first when I saw this question

    • @SVVV97
      @SVVV97 6 місяців тому +2

      @@chongyihyang616 Oh fair point - I didn't consider that solution / it doesn't feel like the most natural one to me. But that still feels overkill to me: you can simply fold the cards down the stack in constant space and linear time.

  • @JakobKenda
    @JakobKenda 6 місяців тому

    i did this in x86 asm, rust looks so easy lmao

  • @senoraraton
    @senoraraton 6 місяців тому

    I'm confused. Aren't the Hash sets unique, so games with multiple numbers matching winning would create a bug here?

    • @agx1397
      @agx1397 6 місяців тому

      I don’t think so, because winning numbers will never have duplicates (doesn’t make sense to write a winning lottery ticket number twice) but our numbers can have duplicate and if they win (have a matching num in winnings numbers) it would still count as 1 win.

  • @L4Vo5
    @L4Vo5 6 місяців тому +1

    someone please suggest smalltalk next!

  • @mohammedsafki7564
    @mohammedsafki7564 5 місяців тому +1

    Guys propmpt him to add Malbolge❤❤❤

  • @bhavyakukkar
    @bhavyakukkar 5 місяців тому

    why do you use solarized

  • @ficolas2
    @ficolas2 5 місяців тому

    14 slots, 21 days, 78.7% of getting Haskel. That is, not considering the probably you fail again, and twitch gives you Haskel, again.

  • @mikhailhyde565
    @mikhailhyde565 5 місяців тому

    Brain.exe stopped working for me when reading the instructions for part 2

  • @m4rt_
    @m4rt_ 6 місяців тому

    Somebody put Assembly on the wheel if he fails again.

  • @gdkid
    @gdkid 6 місяців тому

    I'll just say, I followed through with the recursion stuff and it took like 5 full seconds to run :/
    still got the right answer tho

  • @kenzostaelens1688
    @kenzostaelens1688 6 місяців тому

    me just throwing regex against day 4 (fix spacings & convert winning numbers to regex pattern)

  • @andreffrosa
    @andreffrosa 6 місяців тому

    Why are you using rust again?

  • @max-mr5xf
    @max-mr5xf 6 місяців тому

    Can someone please put Perl and Raku on the wheel?

  • @NithinJune
    @NithinJune 5 місяців тому

    5:23 Can someone explain wtf is wrong with his line numbers?
    Why does it go from 10 to 0 then back to 10???

    • @StevenMartinGuitar
      @StevenMartinGuitar 5 місяців тому

      Relative line numbers. So it's quick to go up 7 lines or down 9 lines.

  • @nate7803
    @nate7803 5 місяців тому

    MEMOIZE!!!

  • @glowiak3430
    @glowiak3430 6 місяців тому +1

    FreeBASIC please!!!!

  • @AlLiberali
    @AlLiberali 6 місяців тому +1

    Regex!

  • @SjuneCBeats
    @SjuneCBeats 6 місяців тому +3

    Html + css next time bro its turing complete

  • @verolyn8459
    @verolyn8459 5 місяців тому

    Add brainfudge

  • @m4rt_
    @m4rt_ 6 місяців тому

    Haskell isn't that bad... you just have to rewire your brain first.

  • @MarshallLevin
    @MarshallLevin 5 місяців тому

    int seems like a waste of memory for a 2 digit number 😮

  • @AlLiberali
    @AlLiberali 6 місяців тому +12

    This is fp disease for ya! Gotta be complicated; gotta recurse; gotta wrap shit in monads; gotta bend over backwards for the OCaml nerds' rusted minds.
    Embrace the state, tame the state! Using for loops, structs, classes and AbstractFactoryProxyBuilders

    • @aaronstark171
      @aaronstark171 6 місяців тому

      what is fp ?

    • @everynametaken
      @everynametaken 6 місяців тому

      @@aaronstark171 Functional Programming, which is not just programming with functions

    • @_tsu_
      @_tsu_ 6 місяців тому +1

      i relate to this so hard. Whenever the problem is easy brain says do fp. But when things get hard, i slip back into imperative lol. Today i got the first part in pure fp. Second part was an abomination of both styles.

    • @AlLiberali
      @AlLiberali 6 місяців тому

      @@_tsu_ Both. Both is tov!

    • @MaybeADragon
      @MaybeADragon 6 місяців тому

      @@_tsu_ That's the beauty of a language that can do both, not an abomination. Pick and choose which is best suited for the task.

  • @beauremus
    @beauremus 6 місяців тому +1

    Has anyone requested Nix yet? 😏

  • @Luca-gb1og
    @Luca-gb1og 6 місяців тому

    Could you please make your videos longer? You cut away so much that I don’t understand where you’re at. At one point there was a cut and you had the whole recursive function

  • @Pandorarl
    @Pandorarl 6 місяців тому +1

    1157th

  • @SuMmErWaVer7
    @SuMmErWaVer7 6 місяців тому

    today was so much reading 🤢

  • @illegalsmirf
    @illegalsmirf 6 місяців тому

    Instead of doing random crap in 25 languages why do something meaningful in one?

    • @StevenMartinGuitar
      @StevenMartinGuitar 5 місяців тому

      It's advent of code. It's not about doing something 'useful'.

    • @illegalsmirf
      @illegalsmirf 5 місяців тому

      @@StevenMartinGuitar I agree, it’s a corporate gimmick and not useful at all all