1 | initial version |
In your example, if you check the type of n
, you can see it is of type Integer
.
So maybe Integer(s,10)
can do the job faster.
2 | No.2 Revision |
In your example, if you check the type of n
, you can see it is of type Integer
.
So maybe
can do the job faster.Integer(s,10)Integer(s)
Edit: Changed from Integer(s,10)
. Thanks to @kcrisman for pointing this out.