Piotr Czajkowski 2 недель назад
Родитель
Сommit
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
 }