Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Challenges

Post History

71%
+3 −0
Challenges Presumptuous base conversion

Take an input string representing a number and convert it to decimal (base 10). However, the base of the input is not specified. Assume the input is in the smallest base for which its digits are va...

5 answers  ·  posted 1y ago by trichoplax‭  ·  last activity 1y ago by Shaggy‭

#3: Post edited by user avatar trichoplax‭ · 2022-09-20T14:44:59Z (over 1 year ago)
Formating for explanation request
  • Take an input string representing a number and convert it to decimal (base 10). However, the base of the input is **not** specified. Assume the input is in the smallest base for which its digits are valid.
  • ## Input
  • - The input consists only of characters from 0123456789ABCDEF where A to F represent the decimal numbers 10 to 15
  • - The answerer may choose to take lower case input instead
  • - The input will always contain at least one character (it will never be empty)
  • - The input will sometimes have one or more leading zeroes
  • ## Output
  • - If the highest digit in the input is represented by N, then the input is to be treated as being in base N+1
  • - For this challenge, the letters A to F count as "digits". So if the highest digit in the input is B, which represents 11, then the input is in base 12
  • - In particular, if the highest digit in the input is 0, then the input is to be treated as being in base 1 (unary), so the output is the number of digits in the input
  • - Apart from inputs in base 1 (unary), leading zeroes make no difference to the output. Both "11" and "000011" lead to output "3"
  • ## Examples
  • - If the input is **453** then the highest digit is **5**, so the input is in base 6. The output is 177, calculated as **4**[]()\*6\*6 + **5***6 + **3**
  • - If the input is **000** then the highest digit is **0** so the input is in base 1 (unary). The output is 3, which is simply the length of the unary input
  • ## Test cases
  • Test cases are in the form `input : output`
  • ```text
  • 0 : 1
  • 1 : 1
  • 9 : 9
  • A : 10
  • E : 14
  • F : 15
  • 00 : 2
  • 01 : 1
  • 10 : 2
  • 11 : 3
  • 02 : 2
  • 20 : 6
  • 22 : 8
  • 65 : 47
  • 99 : 99
  • AA : 120
  • B8 : 140
  • 000 : 3
  • 00F : 15
  • 0D0 : 182
  • C00 : 2028
  • 123 : 27
  • ABC : 1845
  • 777 : 511
  • 453 : 177
  • ```
  • ---
  • Explanations in answers are optional, but I'm more likely to upvote answers that have one.
  • Take an input string representing a number and convert it to decimal (base 10). However, the base of the input is **not** specified. Assume the input is in the smallest base for which its digits are valid.
  • ## Input
  • - The input consists only of characters from 0123456789ABCDEF where A to F represent the decimal numbers 10 to 15
  • - The answerer may choose to take lower case input instead
  • - The input will always contain at least one character (it will never be empty)
  • - The input will sometimes have one or more leading zeroes
  • ## Output
  • - If the highest digit in the input is represented by N, then the input is to be treated as being in base N+1
  • - For this challenge, the letters A to F count as "digits". So if the highest digit in the input is B, which represents 11, then the input is in base 12
  • - In particular, if the highest digit in the input is 0, then the input is to be treated as being in base 1 (unary), so the output is the number of digits in the input
  • - Apart from inputs in base 1 (unary), leading zeroes make no difference to the output. Both "11" and "000011" lead to output "3"
  • ## Examples
  • - If the input is **453** then the highest digit is **5**, so the input is in base 6. The output is 177, calculated as **4**[]()\*6\*6 + **5***6 + **3**
  • - If the input is **000** then the highest digit is **0** so the input is in base 1 (unary). The output is 3, which is simply the length of the unary input
  • ## Test cases
  • Test cases are in the form `input : output`
  • ```text
  • 0 : 1
  • 1 : 1
  • 9 : 9
  • A : 10
  • E : 14
  • F : 15
  • 00 : 2
  • 01 : 1
  • 10 : 2
  • 11 : 3
  • 02 : 2
  • 20 : 6
  • 22 : 8
  • 65 : 47
  • 99 : 99
  • AA : 120
  • B8 : 140
  • 000 : 3
  • 00F : 15
  • 0D0 : 182
  • C00 : 2028
  • 123 : 27
  • ABC : 1845
  • 777 : 511
  • 453 : 177
  • ```
  • > Explanations in answers are optional, but I'm more likely to upvote answers that have one.
#2: Post edited by user avatar trichoplax‭ · 2022-09-20T14:43:31Z (over 1 year ago)
Prefer answers with explanations
  • Take an input string representing a number and convert it to decimal (base 10). However, the base of the input is **not** specified. Assume the input is in the smallest base for which its digits are valid.
  • ## Input
  • - The input consists only of characters from 0123456789ABCDEF where A to F represent the decimal numbers 10 to 15
  • - The answerer may choose to take lower case input instead
  • - The input will always contain at least one character (it will never be empty)
  • - The input will sometimes have one or more leading zeroes
  • ## Output
  • - If the highest digit in the input is represented by N, then the input is to be treated as being in base N+1
  • - For this challenge, the letters A to F count as "digits". So if the highest digit in the input is B, which represents 11, then the input is in base 12
  • - In particular, if the highest digit in the input is 0, then the input is to be treated as being in base 1 (unary), so the output is the number of digits in the input
  • - Apart from inputs in base 1 (unary), leading zeroes make no difference to the output. Both "11" and "000011" lead to output "3"
  • ## Examples
  • - If the input is **453** then the highest digit is **5**, so the input is in base 6. The output is 177, calculated as **4**[]()\*6\*6 + **5***6 + **3**
  • - If the input is **000** then the highest digit is **0** so the input is in base 1 (unary). The output is 3, which is simply the length of the unary input
  • ## Test cases
  • Test cases are in the form `input : output`
  • ```text
  • 0 : 1
  • 1 : 1
  • 9 : 9
  • A : 10
  • E : 14
  • F : 15
  • 00 : 2
  • 01 : 1
  • 10 : 2
  • 11 : 3
  • 02 : 2
  • 20 : 6
  • 22 : 8
  • 65 : 47
  • 99 : 99
  • AA : 120
  • B8 : 140
  • 000 : 3
  • 00F : 15
  • 0D0 : 182
  • C00 : 2028
  • 123 : 27
  • ABC : 1845
  • 777 : 511
  • 453 : 177
  • ```
  • Take an input string representing a number and convert it to decimal (base 10). However, the base of the input is **not** specified. Assume the input is in the smallest base for which its digits are valid.
  • ## Input
  • - The input consists only of characters from 0123456789ABCDEF where A to F represent the decimal numbers 10 to 15
  • - The answerer may choose to take lower case input instead
  • - The input will always contain at least one character (it will never be empty)
  • - The input will sometimes have one or more leading zeroes
  • ## Output
  • - If the highest digit in the input is represented by N, then the input is to be treated as being in base N+1
  • - For this challenge, the letters A to F count as "digits". So if the highest digit in the input is B, which represents 11, then the input is in base 12
  • - In particular, if the highest digit in the input is 0, then the input is to be treated as being in base 1 (unary), so the output is the number of digits in the input
  • - Apart from inputs in base 1 (unary), leading zeroes make no difference to the output. Both "11" and "000011" lead to output "3"
  • ## Examples
  • - If the input is **453** then the highest digit is **5**, so the input is in base 6. The output is 177, calculated as **4**[]()\*6\*6 + **5***6 + **3**
  • - If the input is **000** then the highest digit is **0** so the input is in base 1 (unary). The output is 3, which is simply the length of the unary input
  • ## Test cases
  • Test cases are in the form `input : output`
  • ```text
  • 0 : 1
  • 1 : 1
  • 9 : 9
  • A : 10
  • E : 14
  • F : 15
  • 00 : 2
  • 01 : 1
  • 10 : 2
  • 11 : 3
  • 02 : 2
  • 20 : 6
  • 22 : 8
  • 65 : 47
  • 99 : 99
  • AA : 120
  • B8 : 140
  • 000 : 3
  • 00F : 15
  • 0D0 : 182
  • C00 : 2028
  • 123 : 27
  • ABC : 1845
  • 777 : 511
  • 453 : 177
  • ```
  • ---
  • Explanations in answers are optional, but I'm more likely to upvote answers that have one.
#1: Initial revision by user avatar trichoplax‭ · 2022-09-19T15:11:51Z (over 1 year ago)
Presumptuous base conversion
Take an input string representing a number and convert it to decimal (base 10). However, the base of the input is **not** specified. Assume the input is in the smallest base for which its digits are valid.

## Input
- The input consists only of characters from 0123456789ABCDEF where A to F represent the decimal numbers 10 to 15
- The answerer may choose to take lower case input instead
- The input will always contain at least one character (it will never be empty)
- The input will sometimes have one or more leading zeroes

## Output
- If the highest digit in the input is represented by N, then the input is to be treated as being in base N+1
- For this challenge, the letters A to F count as "digits". So if the highest digit in the input is B, which represents 11, then the input is in base 12
- In particular, if the highest digit in the input is 0, then the input is to be treated as being in base 1 (unary), so the output is the number of digits in the input
- Apart from inputs in base 1 (unary), leading zeroes make no difference to the output. Both "11" and "000011" lead to output "3"

## Examples
- If the input is **453** then the highest digit is **5**, so the input is in base 6. The output is 177, calculated as **4**[]()\*6\*6 + **5***6 + **3**
- If the input is **000** then the highest digit is **0** so the input is in base 1 (unary). The output is 3, which is simply the length of the unary input

## Test cases
Test cases are in the form `input : output`

```text
0 : 1
1 : 1
9 : 9
A : 10
E : 14
F : 15
00 : 2
01 : 1
10 : 2
11 : 3
02 : 2
20 : 6
22 : 8
65 : 47
99 : 99
AA : 120
B8 : 140
000 : 3
00F : 15
0D0 : 182
C00 : 2028
123 : 27
ABC : 1845
777 : 511
453 : 177
```