290 B
290 B
importance: 5
Count descendants
There's a tree structured as nested ul/li
.
Write the code that for each <li>
shows:
- What's the text inside it (without the subtree)
- The number of nested
<li>
-- all descendants, including the deeply nested ones.
[demo src="solution"]