How do BigNum Libraries Work??

Поделиться
HTML-код
  • Опубликовано: 28 сен 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.c...
    Watch live at / metameeee
    / metameeee

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

  • @joshuarowe8410
    @joshuarowe8410 3 месяца назад +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  3 месяца назад

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