import pandas as pd
ser = pd.Series([1, 2, 3])
ser.append(pd.Series([4]), ignore_index = True)
ser[5] = 4
ЕСЛИОШИБКА(A1 + B1;"ERROR!!!")
img
и p
, то попробуйте использовать flexbox, добавив например в discord свойство: display: flex
и дальше уже можно плясать от этого.discord {
width: 300px;
height: 300px;
display: inline;
background-color: pink;
display: flex
}
"emmet.syntaxProfiles": {
"html": {
"self_closing_tag" : true
}
}
const isValidWalk = (directions) => {
if(directions.length !== 10) {
return false;
}
const path = directions
.reduce((acc, direction) => {
acc[direction] = (acc[direction] || 0) + 1
return { ...acc };
}, {});
return path['s'] === path['n'] && path['w'] === path['e'];
};