79292407

Date: 2024-12-18 20:35:59
Score: 1
Natty:
Report link
public static String hexToBits(String s) {
    String ret = new BigInteger(s, 16).toString(2);
    while (ret.length() % 4 != 0) {
        ret = "0" + ret;
    }
    return ret;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: alperk01