소스 검색

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
 }