浏览代码

Less ugly

Piotr Czajkowski 2 周之前
父节点
当前提交
2280dbe24b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      07/code.go

+ 1 - 1
07/code.go

@@ -57,7 +57,7 @@ func concatenate(a, b int) int {
 		return b
 	}
 
-	result, _ := strconv.Atoi(strconv.Itoa(a) + strconv.Itoa(b))
+	result, _ := strconv.Atoi(fmt.Sprintf("%d%d", a, b))
 	return result
 }