I don't want any newline character after case statement. How can I do that?
This is my code:
\begin{algorithm}[t]
\SetInd{0.5em}{0.5em}
\KwIn{Data $\mathsf{D}$}
\KwOut{List of Simple Hints}
\Begin{
\Switch{$\mathsf{dist}$}{
\uCase{0}{
$\mathsf{skip}$\;
}
\uCase{1}{
$\mathsf{H_S \leftarrow H_S \cup \{(H_Se}$\;
}
\Other{
$\mathsf{H_S \leftarrow H_S \cup \{(replace(H_Se')}$\;
}
}
}
\caption{Algorithm to simple hints}
\end{algorithm}
This is the output:



