I am using the \usepackage{pseudocode} in this code
\documentclass{article}
\textwidth=4.5in
\textheight=7.125in
\usepackage{pseudocode}
\begin{document}
\renewcommand{\thepseudocode}{}
\begin{pseudocode}{m3partition}{a, i, j}
\CALL {swap}{a[(i+j)/2] , a[j-1]} \\
\IF a[i] > a[j-1] \ \CALL {swap} {a[i], a[j-1]} \\
\IF a[i] > a[j] \ \CALL {swap} { a[i], a[j]} \\
\IF a[j-1] > a[j] \ \CALL {swap} {a[j-1], a[j]} \\
\CALL {partition}{a, i+1, j-1}\\
\end{pseudocode}
\end{document}

and when it renders
it will have the Algorithm label which I want to remove, is there anyway to achieve this?

\documentclass{...}and ending with\end{document}.