let $L$ be a language over the alphabet $\{a,b\}$ that maintains that for each $w \in L$ ,the difference in absolute between the number of apearences of the letter $a$ and the number of apearences of the letter $b \,$ in every prefix of $w$ is at most $10$.
For example:
$ababababa \in L$
$abbbbbbbbbbbb \not\in L$
$\Sigma=\{a,b\}$
For $w\in \Sigma^*$, define $v(w)=|w|_b - |w|_a$ (the number of $b$s minus the number of $a$s). What can you say about $v(L)$?
-