Given a graph $G$, and a pair of integers $(g_i, f_i)$ for each node $i$, that denotes the min and max desirable degree for that node, a solution is a subgraph of $G$ in which the degree of each node is between $g_i$ and $f_i$. Figure below shows an example and three different solutions.
Prove that if there exists two solutions ($G_0,G_1$) in which the degrees of three selected nodes (denoted as $X,Y,Z$) are $(0,0,0)$ in $G_0$ and $(1,1,1)$ in $G_1$ then there would exist at least one other solution ($G_2$) in which degrees of $X,Y,Z$ is neither $(0,0,0)$ nor $(1,1,1)$.

Initialize $G_2=G_0 + xu$ where $u$ is the node connected to $x$ in $G_1$.
step 1: If degree of $u$ in $G_2$ is not satisfied, switch $uv$ in $G_2$, where $uv$ is an edge that is different between $G_2$ and $G_1$ to satisfy $u$ in $G_2$; then repeat this step for $v$.
This algorithm eventually stops as the number of edges that differ between $G_2$ and $G_1$ reduces in every step. Moreover, if at some point, we reach either node $y$ or $z$, the algorithm stops, hence the degree of either $y$ or $z$ would remain $0$ in the final $G_2$.