daco2020 2022. 11. 28. 12:24
반응형

Complete the function which converts hex number (given as a string) to a decimal number.



Solution:

int hexToDec(String hexString) => int.parse(hexString, radix: 16);


반응형