message stringlengths 2 39.6k | message_type stringclasses 2
values | message_id int64 0 1 | conversation_id int64 219 108k | cluster float64 11 11 | __index_level_0__ int64 438 217k |
|---|---|---|---|---|---|
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
During the last Sereja's Codesecrof round the server crashed many times, so the round was decided to be made unrated for some participants.
Let's assume that n people took part in the contest.... | instruction | 0 | 85,299 | 11 | 170,598 |
No | output | 1 | 85,299 | 11 | 170,599 |
Provide tags and a correct Python 3 solution for this coding contest problem.
A and B are preparing themselves for programming contests.
B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code.
Initially, the compiler displayed n compilation errors, each of t... | instruction | 0 | 86,086 | 11 | 172,172 |
Tags: data structures, implementation, sortings
Correct Solution:
```
a=int(input())
b=input().split()
c=input().split()
d=input().split()
b=[int(i) for i in b]
c=[int(i) for i in c]
d=[int(i) for i in d]
b=sum(b)
c=sum(c)
d=sum(d)
print(b-c)
print(c-d)
``` | output | 1 | 86,086 | 11 | 172,173 |
Provide tags and a correct Python 3 solution for this coding contest problem.
A and B are preparing themselves for programming contests.
B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code.
Initially, the compiler displayed n compilation errors, each of t... | instruction | 0 | 86,087 | 11 | 172,174 |
Tags: data structures, implementation, sortings
Correct Solution:
```
input()
x=list(map(int,input().split()))
y=list(map(int,input().split()))
z=list(map(int,input().split()))
print(sum(x)-sum(y))
print(sum(y)-sum(z))
``` | output | 1 | 86,087 | 11 | 172,175 |
Provide tags and a correct Python 3 solution for this coding contest problem.
A and B are preparing themselves for programming contests.
B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code.
Initially, the compiler displayed n compilation errors, each of t... | instruction | 0 | 86,088 | 11 | 172,176 |
Tags: data structures, implementation, sortings
Correct Solution:
```
from collections import Counter
a = int(input())
b = list(int(x) for x in input().split())
c = list(int(x) for x in input().split())
d = list(int(x) for x in input().split())
p = list((Counter(b) - Counter(c)).elements())
for i in p:
print(i)
p ... | output | 1 | 86,088 | 11 | 172,177 |
Provide tags and a correct Python 3 solution for this coding contest problem.
A and B are preparing themselves for programming contests.
B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code.
Initially, the compiler displayed n compilation errors, each of t... | instruction | 0 | 86,089 | 11 | 172,178 |
Tags: data structures, implementation, sortings
Correct Solution:
```
n=int(input())
l=list(map(int,input().split()))
b=[]
for i in range(2):
b=list(map(int,input().split()))
print(sum(l)-sum(b))
l=b.copy()
``` | output | 1 | 86,089 | 11 | 172,179 |
Provide tags and a correct Python 3 solution for this coding contest problem.
A and B are preparing themselves for programming contests.
B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code.
Initially, the compiler displayed n compilation errors, each of t... | instruction | 0 | 86,090 | 11 | 172,180 |
Tags: data structures, implementation, sortings
Correct Solution:
```
n = int(input())
a = [int(i) for i in input().split()]
b = [int(i) for i in input().split()]
c = [int(i) for i in input().split()]
suma = sum(a)
sumb = sum(b)
sumc = sum(c)
print(suma-sumb)
print(sumb-sumc)
``` | output | 1 | 86,090 | 11 | 172,181 |
Provide tags and a correct Python 3 solution for this coding contest problem.
A and B are preparing themselves for programming contests.
B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code.
Initially, the compiler displayed n compilation errors, each of t... | instruction | 0 | 86,091 | 11 | 172,182 |
Tags: data structures, implementation, sortings
Correct Solution:
```
n = int(input())
e = [sum(map(int, input().split())) for i in range(3)]
print(e[0] - e[1])
print(e[1] - e[2])
``` | output | 1 | 86,091 | 11 | 172,183 |
Provide tags and a correct Python 3 solution for this coding contest problem.
A and B are preparing themselves for programming contests.
B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code.
Initially, the compiler displayed n compilation errors, each of t... | instruction | 0 | 86,092 | 11 | 172,184 |
Tags: data structures, implementation, sortings
Correct Solution:
```
n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
c=list(map(int,input().split()))
suma=sum(a)
sumb=sum(b)
sumc=sum(c)
print(suma-sumb)
print(sumb-sumc)
``` | output | 1 | 86,092 | 11 | 172,185 |
Provide tags and a correct Python 3 solution for this coding contest problem.
A and B are preparing themselves for programming contests.
B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code.
Initially, the compiler displayed n compilation errors, each of t... | instruction | 0 | 86,093 | 11 | 172,186 |
Tags: data structures, implementation, sortings
Correct Solution:
```
n=input()
n=list(input().split())
m=list(input().split())
l=list(input().split())
n.sort()
m.sort()
l.sort()
i=0
while i<len(n):
if i==len(m):
q=n[i]
break
elif n[i]!=m[i]:
q=n[i]
break
i+=1
i=0
while i<len... | output | 1 | 86,093 | 11 | 172,187 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
A and B are preparing themselves for programming contests.
B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code.
Initially, the com... | instruction | 0 | 86,094 | 11 | 172,188 |
Yes | output | 1 | 86,094 | 11 | 172,189 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
A and B are preparing themselves for programming contests.
B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code.
Initially, the com... | instruction | 0 | 86,095 | 11 | 172,190 |
Yes | output | 1 | 86,095 | 11 | 172,191 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
A and B are preparing themselves for programming contests.
B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code.
Initially, the com... | instruction | 0 | 86,096 | 11 | 172,192 |
Yes | output | 1 | 86,096 | 11 | 172,193 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
A and B are preparing themselves for programming contests.
B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code.
Initially, the com... | instruction | 0 | 86,097 | 11 | 172,194 |
Yes | output | 1 | 86,097 | 11 | 172,195 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
A and B are preparing themselves for programming contests.
B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code.
Initially, the com... | instruction | 0 | 86,098 | 11 | 172,196 |
No | output | 1 | 86,098 | 11 | 172,197 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
A and B are preparing themselves for programming contests.
B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code.
Initially, the com... | instruction | 0 | 86,099 | 11 | 172,198 |
No | output | 1 | 86,099 | 11 | 172,199 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
A and B are preparing themselves for programming contests.
B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code.
Initially, the com... | instruction | 0 | 86,100 | 11 | 172,200 |
No | output | 1 | 86,100 | 11 | 172,201 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
A and B are preparing themselves for programming contests.
B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code.
Initially, the com... | instruction | 0 | 86,101 | 11 | 172,202 |
No | output | 1 | 86,101 | 11 | 172,203 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a rebus of form ? + ? - ? + ? = n, consisting of only question marks, separated by arithmetic operation '+' and '-', equality and positive integer n. The goal is to replace each qu... | instruction | 0 | 86,162 | 11 | 172,324 |
Yes | output | 1 | 86,162 | 11 | 172,325 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a rebus of form ? + ? - ? + ? = n, consisting of only question marks, separated by arithmetic operation '+' and '-', equality and positive integer n. The goal is to replace each qu... | instruction | 0 | 86,163 | 11 | 172,326 |
Yes | output | 1 | 86,163 | 11 | 172,327 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a rebus of form ? + ? - ? + ? = n, consisting of only question marks, separated by arithmetic operation '+' and '-', equality and positive integer n. The goal is to replace each qu... | instruction | 0 | 86,164 | 11 | 172,328 |
Yes | output | 1 | 86,164 | 11 | 172,329 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a rebus of form ? + ? - ? + ? = n, consisting of only question marks, separated by arithmetic operation '+' and '-', equality and positive integer n. The goal is to replace each qu... | instruction | 0 | 86,165 | 11 | 172,330 |
No | output | 1 | 86,165 | 11 | 172,331 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a rebus of form ? + ? - ? + ? = n, consisting of only question marks, separated by arithmetic operation '+' and '-', equality and positive integer n. The goal is to replace each qu... | instruction | 0 | 86,168 | 11 | 172,336 |
No | output | 1 | 86,168 | 11 | 172,337 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You and your friend are participating in a TV show "Run For Your Prize".
At the start of the show n prizes are located on a straight line. i-th prize is located at position ai. Positions of all... | instruction | 0 | 86,273 | 11 | 172,546 |
Yes | output | 1 | 86,273 | 11 | 172,547 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You and your friend are participating in a TV show "Run For Your Prize".
At the start of the show n prizes are located on a straight line. i-th prize is located at position ai. Positions of all... | instruction | 0 | 86,275 | 11 | 172,550 |
No | output | 1 | 86,275 | 11 | 172,551 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi is participating in a programming contest called AXC002, and he has just submitted his code to Problem A.
The problem has N test cases.
For each test case i (1\leq i \leq N), you are given a string S_i representing the verdict for that te... | instruction | 0 | 86,297 | 11 | 172,594 |
"Correct Solution:
```
N = int(input())
lst = [input() for _ in range(N)]
V=["AC","WA","TLE","RE"]
for v in V:
print("{} x {}".format(v, lst.count(v)))
``` | output | 1 | 86,297 | 11 | 172,595 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi is participating in a programming contest called AXC002, and he has just submitted his code to Problem A.
The problem has N test cases.
For each test case i (1\leq i \leq N), you are given a string S_i representing the verdict for that te... | instruction | 0 | 86,298 | 11 | 172,596 |
"Correct Solution:
```
t = int(input())
d = {'AC':0, 'WA':0,'TLE':0, 'RE':0}
while t:
d[input()]+=1
t-=1
for i in d:
print(i,'x',d[i])
``` | output | 1 | 86,298 | 11 | 172,597 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi is participating in a programming contest called AXC002, and he has just submitted his code to Problem A.
The problem has N test cases.
For each test case i (1\leq i \leq N), you are given a string S_i representing the verdict for that te... | instruction | 0 | 86,299 | 11 | 172,598 |
"Correct Solution:
```
n=int(input())
S = []
for i in range(n):
S.append(input())
for t in ["AC","WA","TLE","RE"]:
print(f"{t} x {S.count(t)}")
``` | output | 1 | 86,299 | 11 | 172,599 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi is participating in a programming contest called AXC002, and he has just submitted his code to Problem A.
The problem has N test cases.
For each test case i (1\leq i \leq N), you are given a string S_i representing the verdict for that te... | instruction | 0 | 86,300 | 11 | 172,600 |
"Correct Solution:
```
import sys
input()
d=dict.fromkeys('AC WA TLE RE'.split(),0)
for ln in sys.stdin:
d[ln.strip()]+=1
for k,v in d.items():
print(k,'x',v)
``` | output | 1 | 86,300 | 11 | 172,601 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi is participating in a programming contest called AXC002, and he has just submitted his code to Problem A.
The problem has N test cases.
For each test case i (1\leq i \leq N), you are given a string S_i representing the verdict for that te... | instruction | 0 | 86,301 | 11 | 172,602 |
"Correct Solution:
```
N = int(input())
D = {"AC":0, "WA":0, "TLE":0, "RE":0}
for _ in range(N):
S = input()
D[S] += 1
for i, x in D.items():
print(i+" x "+str(x))
``` | output | 1 | 86,301 | 11 | 172,603 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi is participating in a programming contest called AXC002, and he has just submitted his code to Problem A.
The problem has N test cases.
For each test case i (1\leq i \leq N), you are given a string S_i representing the verdict for that te... | instruction | 0 | 86,302 | 11 | 172,604 |
"Correct Solution:
```
n,*s=open(0).read().split()
for t in['AC','WA','TLE','RE']:print(f'{t} x {s.count(t)}')
``` | output | 1 | 86,302 | 11 | 172,605 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi is participating in a programming contest called AXC002, and he has just submitted his code to Problem A.
The problem has N test cases.
For each test case i (1\leq i \leq N), you are given a string S_i representing the verdict for that te... | instruction | 0 | 86,303 | 11 | 172,606 |
"Correct Solution:
```
n = int(input())
s = [input() for i in range(n)]
a = ["AC","WA","TLE","RE"]
for i in a:
print(i,'x',s.count(i))
``` | output | 1 | 86,303 | 11 | 172,607 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi is participating in a programming contest called AXC002, and he has just submitted his code to Problem A.
The problem has N test cases.
For each test case i (1\leq i \leq N), you are given a string S_i representing the verdict for that te... | instruction | 0 | 86,304 | 11 | 172,608 |
"Correct Solution:
```
n=int(input())
c={}
for _ in range(n):
s=input()
c[s]=c.get(s,0)+1
for j in ('AC','WA','TLE','RE'):
print(j,'x',c.get(j,0))
``` | output | 1 | 86,304 | 11 | 172,609 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi is participating in a programming contest called AXC002, and he has just submitted his code to Problem A.
The problem has N test cases.
For each test case i (1\leq i \leq N), you are... | instruction | 0 | 86,305 | 11 | 172,610 |
Yes | output | 1 | 86,305 | 11 | 172,611 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi is participating in a programming contest called AXC002, and he has just submitted his code to Problem A.
The problem has N test cases.
For each test case i (1\leq i \leq N), you are... | instruction | 0 | 86,306 | 11 | 172,612 |
Yes | output | 1 | 86,306 | 11 | 172,613 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi is participating in a programming contest called AXC002, and he has just submitted his code to Problem A.
The problem has N test cases.
For each test case i (1\leq i \leq N), you are... | instruction | 0 | 86,307 | 11 | 172,614 |
Yes | output | 1 | 86,307 | 11 | 172,615 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi is participating in a programming contest called AXC002, and he has just submitted his code to Problem A.
The problem has N test cases.
For each test case i (1\leq i \leq N), you are... | instruction | 0 | 86,308 | 11 | 172,616 |
Yes | output | 1 | 86,308 | 11 | 172,617 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi is participating in a programming contest called AXC002, and he has just submitted his code to Problem A.
The problem has N test cases.
For each test case i (1\leq i \leq N), you are... | instruction | 0 | 86,309 | 11 | 172,618 |
No | output | 1 | 86,309 | 11 | 172,619 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi is participating in a programming contest called AXC002, and he has just submitted his code to Problem A.
The problem has N test cases.
For each test case i (1\leq i \leq N), you are... | instruction | 0 | 86,310 | 11 | 172,620 |
No | output | 1 | 86,310 | 11 | 172,621 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi is participating in a programming contest called AXC002, and he has just submitted his code to Problem A.
The problem has N test cases.
For each test case i (1\leq i \leq N), you are... | instruction | 0 | 86,311 | 11 | 172,622 |
No | output | 1 | 86,311 | 11 | 172,623 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi is participating in a programming contest called AXC002, and he has just submitted his code to Problem A.
The problem has N test cases.
For each test case i (1\leq i \leq N), you are... | instruction | 0 | 86,312 | 11 | 172,624 |
No | output | 1 | 86,312 | 11 | 172,625 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Example
Input
2 1
1 2 2
Output
1
Submitted Solution:
```
from collections import deque
n, m = map(int, input().split())
G = [[] for i in range(n)]
for i in range(m):
x, y, w = map(int,... | instruction | 0 | 86,491 | 11 | 172,982 |
No | output | 1 | 86,491 | 11 | 172,983 |
Provide a correct Python 3 solution for this coding contest problem.
Problem statement
A programming contest will be held in the Russian Federation. The contest has N questions and has M participants. Question i has a score a_i, and it is known that participant j's ability is b_j. For problem i and participant j, par... | instruction | 0 | 87,470 | 11 | 174,940 |
"Correct Solution:
```
import bisect
n=int(input())
a=sorted(list(map(int,input().split())))
d=[0]*(n+1)
for i in range(1,n+1):d[i]=d[i-1]+a[i-1]
m=int(input())
b,c=[list(map(int,input().split())) for _ in [0,0]]
[print(['Yes','No'][d[bisect.bisect_right(a,b[i])]<c[i]]) for i in range(m)]
``` | output | 1 | 87,470 | 11 | 174,941 |
Provide a correct Python 3 solution for this coding contest problem.
Problem statement
A programming contest will be held in the Russian Federation. The contest has N questions and has M participants. Question i has a score a_i, and it is known that participant j's ability is b_j. For problem i and participant j, par... | instruction | 0 | 87,471 | 11 | 174,942 |
"Correct Solution:
```
n = int(input())
a = list(map(int, input().split()))
m = int(input())
b = list(map(int, input().split()))
a.sort()
import bisect
c = list(map(int, input().split()))
d = [0] * (n+1)
for i in range(n):
d[i+1] = a[i]
for i in range(n):
d[i+1] += d[i]
for i in range(m):
n = bisect.bisect_... | output | 1 | 87,471 | 11 | 174,943 |
Provide a correct Python 3 solution for this coding contest problem.
Problem statement
A programming contest will be held in the Russian Federation. The contest has N questions and has M participants. Question i has a score a_i, and it is known that participant j's ability is b_j. For problem i and participant j, par... | instruction | 0 | 87,472 | 11 | 174,944 |
"Correct Solution:
```
from itertools import accumulate
from bisect import bisect_right as br
n = int(input())
alst = sorted(map(int, input().split()))
acc = list(accumulate(alst))
m = int(input())
blst = list(map(int, input().split()))
clst = list(map(int, input().split()))
for b, c in zip(blst, clst):
index = br(al... | output | 1 | 87,472 | 11 | 174,945 |
Provide a correct Python 3 solution for this coding contest problem.
Problem statement
A programming contest will be held in the Russian Federation. The contest has N questions and has M participants. Question i has a score a_i, and it is known that participant j's ability is b_j. For problem i and participant j, par... | instruction | 0 | 87,473 | 11 | 174,946 |
"Correct Solution:
```
import bisect
n=int(input())
a=sorted(list(map(int,input().split())))
d=[0]*(n+1)
for i in range(1,n+1):d[i]=d[i-1]+a[i-1]
m=int(input())
b,c=[list(map(int,input().split())) for _ in [0,0]]
for i in range(m):
p=bisect.bisect_right(a,b[i])
print(['Yes','No'][d[p]<c[i]])
``` | output | 1 | 87,473 | 11 | 174,947 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Problem statement
A programming contest will be held in the Russian Federation. The contest has N questions and has M participants. Question i has a score a_i, and it is known that participant ... | instruction | 0 | 87,474 | 11 | 174,948 |
No | output | 1 | 87,474 | 11 | 174,949 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Problem statement
A programming contest will be held in the Russian Federation. The contest has N questions and has M participants. Question i has a score a_i, and it is known that participant ... | instruction | 0 | 87,475 | 11 | 174,950 |
No | output | 1 | 87,475 | 11 | 174,951 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Problem statement
A programming contest will be held in the Russian Federation. The contest has N questions and has M participants. Question i has a score a_i, and it is known that participant ... | instruction | 0 | 87,476 | 11 | 174,952 |
No | output | 1 | 87,476 | 11 | 174,953 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Problem statement
A programming contest will be held in the Russian Federation. The contest has N questions and has M participants. Question i has a score a_i, and it is known that participant ... | instruction | 0 | 87,477 | 11 | 174,954 |
No | output | 1 | 87,477 | 11 | 174,955 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Vasya likes taking part in Codeforces contests. When a round is over, Vasya follows all submissions in the system testing tab.
There are n solutions, the i-th of them should be tested on a_i tests, testing one solution on one test takes 1 s... | instruction | 0 | 87,593 | 11 | 175,186 |
Tags: implementation
Correct Solution:
```
n, k = map(int, input().split())
a = list(map(int, input().split()))
s, ans = [-2]*k, [0]*n
q1 = q2 = naw = 0
while q1 < n or any(q != -1 for q in s):
for q in range(k):
naw += (s[q] != -1 and s[q] != -2 and s[q][1] == q2)/n
if q2 == 74:
q3 = 0
for ... | output | 1 | 87,593 | 11 | 175,187 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.