Skip to content

Commit

Permalink
Fix little typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dmiller committed Jul 21, 2024
1 parent 68a2121 commit 8b128df
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion _posts/2024-07-21-whats-the-point.md
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,6 @@ So I looked around at some implementations of `BigInteger` packages, decided on

The coding was not terribly hard: We have a pretty intuitive feeling for integer arithmetic. If you can add two integers represented as sequences of digits in the range '0' to '9', how hard can it be to add two integers represented as sequences of _'digits'_ in the range '0' to `UInt32.MaxValue`? (We use arrays of `uint32` to represent values.) See? You're almost there..

# BigDecimal

`BigDecimal` was a another game entirely. This is not floating-point, so no inspiration there. Even the `System.Decimal` class in the CLR is of no help in this world.
Fortunately, I found references to the GDAS early in the process.
Expand Down

0 comments on commit 8b128df

Please sign in to comment.