mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-10 06:40:47 +00:00
8 lines
120 B
Go
8 lines
120 B
Go
package util
|
|
|
|
func ReplaceAtIndex(s string, r rune, i int) string {
|
|
out := []rune(s)
|
|
out[i] = r
|
|
return string(out)
|
|
}
|