examples: update `[0;n]` to `[0].repeat(n)`

pull/2004/head
unknown-v 2019-09-16 00:55:54 +02:00 committed by Alexander Medvednikov
parent 854de4e7e0
commit 5f43a61e0d
3 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ fn main() {
for {
mut new_field := []array_int
for i, line in field {
new_field << [0; line.len]
new_field << [0].repeat(line.len)
}
for i, line in field {
if i == 0 || i == field.len - 1{continue}

View File

@ -39,7 +39,7 @@ fn (v mut []f64) times_trans(u []f64) {
}
fn (v mut []f64) a_times_transp(u []f64) {
mut x := [f64(0); u.len]
mut x := [f64(0)].repeat(u.len)
x.times(u)
v.times_trans(x)
}

View File

@ -167,7 +167,7 @@ fn (g mut Game) init_game() {
g.field = []array_int // TODO: g.field = [][]int
// Generate the field, fill it with 0's, add -1's on each edge
for i := 0; i < FieldHeight + 2; i++ {
mut row := [0; FieldWidth + 2]
mut row := [0].repeat(FieldWidth + 2)
row[0] = - 1
row[FieldWidth + 1] = - 1
g.field << row