• + 0 comments

    t=int(input())

    while t:

    size=int(input())
    
    li=list(map(int, input().split()))
    
    mini=min(li)
    
    minindex=li.index(mini)
    
    modfirst=sorted(li[:minindex+1], reverse=True)
    
    modsecond=sorted(li[minindex:])
    
    if li[:minindex+1]==modfirst and li[minindex:]==modsecond:
        print("Yes")
    else:
        print("No")
    t-=1