chore(i18n,curriculum): update translations (#44671)
This commit is contained in:
@ -24,8 +24,8 @@ assert(
|
||||
var test = new LinkedList();
|
||||
test.add('cat');
|
||||
test.add('dog');
|
||||
test.addAt(0, 'cat');
|
||||
return test.head().element === 'cat';
|
||||
test.addAt(0, 'fish');
|
||||
return test.head().element === 'fish' && test.head().next.element === 'cat';
|
||||
})()
|
||||
);
|
||||
```
|
||||
|
@ -24,8 +24,8 @@ assert(
|
||||
var test = new LinkedList();
|
||||
test.add('cat');
|
||||
test.add('dog');
|
||||
test.addAt(0, 'cat');
|
||||
return test.head().element === 'cat';
|
||||
test.addAt(0, 'fish');
|
||||
return test.head().element === 'fish' && test.head().next.element === 'cat';
|
||||
})()
|
||||
);
|
||||
```
|
||||
|
@ -24,8 +24,8 @@ assert(
|
||||
var test = new LinkedList();
|
||||
test.add('cat');
|
||||
test.add('dog');
|
||||
test.addAt(0, 'cat');
|
||||
return test.head().element === 'cat';
|
||||
test.addAt(0, 'fish');
|
||||
return test.head().element === 'fish' && test.head().next.element === 'cat';
|
||||
})()
|
||||
);
|
||||
```
|
||||
|
Reference in New Issue
Block a user