How do BigNum Libraries Work??

Sdílet
Vložit
  • čas přidán 21. 06. 2024
  • I thought this was a nice article to read, not too long, not too short. I didn't really think about storing bignums as a string before, but it should work fine depending on how strings are represented in the programming language you've chosen. Hope you enjoy!
    Article link: austinhenley.com/blog/bignum1...
    Watch live at / metameeee
    / metameeee
  • Věda a technologie

Komentáře • 2

  • @joshuarowe8410
    @joshuarowe8410 Před 15 dny +2

    I did a little bit of extra research after the video and it seems like storing a dynamically sized array of digits (0-9, not sure if I'd call that a "string" per se) is the way most languages implement it.

    • @metameeee
      @metameeee  Před 13 dny

      ya that makes sense! easy to leverage the way strings are represented in C in this case :)