Top "Radix" questions

In mathematical numeral systems, the radix or base is the number of unique digits, including zero, that a positional numeral system uses to represent numbers.

JSLint says "missing radix parameter"

I ran JSLint on this JavaScript code and it said: Problem at line 32 character 30: Missing radix parameter. This is the …

javascript jslint radix
How to convert an integer to a string in any base?

Python allows easy creation of an integer from a string of a given base via int(str, base). I want …

python base radix
How to convert a Binary String to a base 10 integer in Java

I have an array of Strings that represent Binary numbers (without leading zeroes) that I want to convert to their …

java string binary radix
What is the radix parameter in Java, and how does it work?

I understand that radix for the function Integer.parseInt() is the base to convert the string into. Shouldn't 11 base 10 converted …

java wrapper numeric radix
Integer.parseInt number format exception?

I feel like I must be missing something simple, but I am getting a NumberFormatException on the following code: System.…

java radix
How can I convert a number from base 8 to base 10?

I know 75(base8) = 61(base10), but I can't easily find the formula for this. How does one convert from base 8 to …

math radix
Trie implementation

I am attempting to implement a very simple Trie in Java that supports 3 operations. I'd like it to have an …

java trie abstract-data-type radix radix-tree
FormatException: Invalid radix-10 number

I'm trying to receive a get request using Flutter and HttpClient. This is complete code in what I'm trying to …

http flutter radix
Using Javascript parseInt() and a Radix Parameter

Can anyone explain how the parseInt() functions works and what the Radix Parameter is? As a case study, I am …

javascript parseint radix
Javascript: toString(36) for large integers

15955067621307336078.toString(36); returns '3d7vzfy5k2as8' in Javascript because the large integer cannot be represented (the correct answer …

javascript integer largenumber radix