Decimal to Binary (Chars Mode)
Featured
๐ Description
Convert a decimal number to a binary number
๐ฅ Input
Type: number
A random decimal number.
๐ค Output
Type: string
A string of the binary representation.
๐งช Sample Test Cases
Input:
5
Output:
101
Input:
15
Output:
1111
+ 2 more test cases will be used for validation