Write a SED command that would delete lines from the "text.txt" file that contain any two identical numbers located next to each other. For example, lines that contain “00” or “88” should be deleted

sed -i '/00\|11\|22\|33\|44\|55\|66\|77\|88\|99/d' text.txt