Skip to content

Commit aea2f01

Browse files
committed
Update adding-spaces-to-a-string.go
1 parent a075014 commit aea2f01

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

adding-spaces-to-a-string.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
//https://leetcode.com/problems/adding-spaces-to-a-string/
2+
13
package leetcode_solutions_golang
24

35
import "bytes"
46

5-
//https://leetcode.com/problems/adding-spaces-to-a-string/
67
func addSpaces(s string, spaces []int) string {
78
isSpaced := make(map[int]bool)
89
for _, index := range spaces {

0 commit comments

Comments
 (0)