We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd22800 commit de5af03Copy full SHA for de5af03
1 file changed
angch/2015-07/main.go
@@ -79,7 +79,7 @@ func main() {
79
left = ops[0]
80
dest = ops[1]
81
// fmt.Println(left, right)
82
- num, err := strconv.Atoi(left)
+ num, err := strconv.ParseUint(left, 10, 16)
83
if err == nil {
84
// 123 -> x
85
wirings[dest] = Wiring{
0 commit comments