There was an error while loading. Please reload this page.
1 parent 97ac1c3 commit 8a356cdCopy full SHA for 8a356cd
Conversions/DecimalToHex.js
@@ -16,7 +16,7 @@ function decimalToHex(num){
16
hex_out.push(intToHex(num%16));
17
num = Math.floor(num / 16);
18
}
19
- return intToHex(num) + return hex_out.join("");
+ return intToHex(num) + hex_out.join("");
20
21
22
// test cases
0 commit comments