Good String (can you help me out with my code)

Правка en1, от roshan84ya, 2020-07-30 22:31:08

from collections import defaultdict import math

def solve(a): if len(a)<=2: return 0 result=float("inf") for i in "0123456789": for j in "0123456789": first=i second=j f=True s=False ans="" for elements in a: if first==elements and f: ans+=first f=False s=True elif second==elements and s: ans+=second f=True s=False if first!=second and len(ans)%2==1: ans=ans[:-1]

result=min(len(a)-len(ans),result)





return result

for _ in range(int(input())):

a=input()
print(solve(a))
Теги good string, educational round 92

История

 
 
 
 
Правки
 
 
  Rev. Язык Кто Когда Δ Комментарий
en2 Английский roshan84ya 2020-07-30 22:31:53 21
en1 Английский roshan84ya 2020-07-30 22:31:08 967 can anyone help me out with this i've read tutotial but still not getting it what is the thing that i'm missing here (published)