Write a SED command that would delete lines from the "text.txt" file that contain any two identical numbers located next to each other.

sed '/\([0-9]\)\1/d' text.txt