Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In the ConvertBigIntArrayToString function, the big.Int is first converted to a string and then concatenated with commas. This can be optimized using strings.Builder, which avoids creating new string objects on each concatenation. The performance advantage is particularly significant when dealing with larger arrays.
- Loading branch information