Skip to content

Instantly share code, notes, and snippets.

View hbjydev's full-sized avatar
🇺🇦
Слава Україні!

Hayden hbjydev

🇺🇦
Слава Україні!
View GitHub Profile
input = "347312-805915"
yes = []
def check_adjacent_digits(password: str) -> bool:
yessir = []
for i in range(0, 4):
if password[i] == password[i + 1]:
if len(password) > (i + 1):