1128. Hex to Decimal 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); 나는 이렇게 학습한다/Algorithm & SQL 2022.11.28