All submissions

Bit Spreading Interleave Bits with Zeros

Code

#include <stdio.h>
#include <stdint.h>

uint16_t spread_bits(uint8_t val) {
    // Your logic here
    uint16_t result = 0;
    int8_t new_pos = 0; 
    for (int8_t i = 0; i < 8; i++) {
        int8_t bitval = (val >> i) & 0x1;
        result |= (bitval << new_pos);
        new_pos += 2;
    }
    return result;
}

int main() {
    uint8_t val;
    scanf("%hhu", &val);

    uint16_t result = spread_bits(val);
    printf("%u", result);
    return 0;
}

Solving Approach

 

 

 

Loading...

Input

202

Expected Output

20548