You are viewing a single comment's thread. Return to all comments →
import re for i in range(int(input())): s = input() matches = re.findall(r"[.:\s](#[0-9A-Fa-f]{6}|#[0-9A-Fa-f]{3})", s) if matches: print(*matches, sep="\n")
Seems like cookies are disabled on this browser, please enable them to open this website
Hex Color Code
You are viewing a single comment's thread. Return to all comments →