nth-child 9 строк вместо 16.

В 11 задании кнопка “Показать ответ” выдает код на 11 строк:

.shooter-1 li {

background-color: white;
}

.shooter-1 li:nth-child(2),
.shooter-1 li:nth-child(5) {
background-color: red;
}

.shooter-2 li {
background-color: white;
}

.shooter-2 li:nth-child(1) {
background-color: red;
}

Уместен ли мой код на 9:

li {
background-color: white;
}

.shooter-1 li:nth-child(2),
.shooter-1 li:nth-child(5),
.shooter-2 li:nth-child(1){
background-color: red;
}

Результат одинаковый.