I'd like to get rid of the additional empty space on the right between \begin{tabular}{ll}
\textsc{place,} & \textsc{date}\\
Place, & \today
\end{tabular} % and the right page margin/border:

The title isn't the best I admit, if anyone knows a better one feel free to edit it and this line please.
MWE
\documentclass[
fontsize=12pt,
a4paper,
DIV=15,
parskip=half
]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{
lmodern,
lipsum
}
\listfiles
\begin{document}
%\vspace{0.5cm}
\begin{flushleft}
Words\\
More Words
\end{flushleft}%
\begin{tabular}{@{}l}
\textsc{code}\\
11-22-33-44
\end{tabular}%
\hfill
\begin{tabular}{ll}
\textsc{place,} & \textsc{date}\\
Place, & \today
\end{tabular}
\begin{flushleft}
\bfseries Words
\end{flushleft}
\begin{flushleft}
Something,
\end{flushleft}
\lipsum[3]
\end{document}

\end{tabular}seems to do it, along with@{}after thell– Steven B. Segletes Jan 09 '14 at 11:11@{}you did it in one table but not the other\begin{tabular}{ll@{}}also never doar} %which can put a space after the table in some circumstances, doar}%– David Carlisle Jan 09 '14 at 11:11