Dataset Viewer
Auto-converted to Parquet Duplicate
id
stringlengths
36
36
name
stringclasses
1 value
Go
stringclasses
888 values
Python
stringlengths
0
7.91k
C++
stringlengths
0
29k
fd9e7312-9b45-4082-af66-35f215c837c3
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
print(*[str(a)+'x'+str(b)+'='+str(a*b) for a in range(1,10) for b in range(1,10)], sep='\n')
d39543d2-6833-4e9a-8220-518348ccd91d
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
M = 9 N = 9 def main(): for i in range(1,M+1,1): for j in range(1,N+1,1): mult = i * j print(str(i) + "x" + str(j) + "=" + str(i * j)) main()
c424918f-8122-49f2-af7c-69794514fdde
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
# -*- coding: utf-8 -*- for i in range(1,10): for j in range(1,10): ans = i * j print(u"{0}×{1}={2}".format(i,j,ans))
ea765fcf-a830-4160-948e-561537e18502
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print(i, "*", j, "=", i*j)
4b558077-d732-47ab-9ad8-9483c926b092
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print(i,"x",j,"=",i*j,sep="") j+=1 i+=1
82fece8e-4a35-4b4f-85b5-aa1d3cad5fc6
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
a = [x for x in range(9)] for i in a: for j in a: print("{}x{}={}".format(i + 1, j + 1, (i + 1) * (j + 1)))
f5b96315-99ae-4328-99d2-2197dd26b7a8
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print("%sx%s="%(i,j),i*j)
48947fa2-4d2d-4fa4-8606-a87458f83897
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print(str(i),"x",str(j),"=",i*j)
583c288c-9cc3-4423-8e54-2d10528e3f46
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(0,10): for j in range(0,10): print("{0}x{1}={2}".format(i,j,i*j))
31f83d49-e537-430f-8439-e4ee04568fda
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10): for ii in range(1, 10): print('{}x{}={}'.format(i, ii, i*ii))
536e680a-dc9e-4279-bf6e-7c1247ca126c
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for a in range(1,10): for b in range(1,10): print("%dx%d=%d" % (a,b,a*b))
3889e3be-b40d-4cea-a4bf-dc42a623271d
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): res = i*j print(i,'x',j,'=',res,sep='')
d556cc3e-431d-4c56-abc7-d757ec5dd62d
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
[[print("{}+{}={}".format(i,j,i*j))for j in range(1,10)]for i in range(1,10)]
a123fa75-838a-409b-9f8b-4e9dbb478dff
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
print(*[str(i)+'x'+str(j)+'='+str(i*j) for i in range(1,10) for j in range(1,10)], sep='\n')
349c8251-765e-4525-806f-0f06b64ee41a
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print(str(i)+"x"+str(j)+"="+str(i*j))
7501c4c7-4bf0-407c-b2b7-85f4fca780c9
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10): for j in range(1, 10): print('{0}x{1}={2}'.format(i, j, i*j))
fdd971fd-194b-472f-9be6-7ea59377c138
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for a in range(1,10): for b in range(1,10): print(a, end="") print("x", end="") print(b, end="") print("=", end="") print(a*b)
6950caa9-ba39-43ec-8c67-cad817f523f2
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for a in range(1,10): for b in range(1,10): ans = a*b print("%dx%d=%d" % (a, b, ans))
87111c32-a540-4122-9de6-6f8e1662120b
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 9 + 1): for j in range(1, 9 + 1): print("{}x{}={}".format(i, j, i * j))
8560f75f-91da-4f84-b85e-52badef167cb
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
print(*[str(i)+'x'+str(j)+'='+str(i*j) for i in range(1,10) for j in range(1,10)], sep='\n')
030a97a7-02a2-4cb4-ad35-b14704329532
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
def solve(): for i in range(1,10): for j in range(1,10): print("{0}x{1}={2}".format(i,j,i*j)) solve()
5f9aec5f-b052-4bd1-b1da-27970d89657f
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for a in range(1,10): for b in range(1,10): i = a * b print(a,"x",b,"=",i,sep="")
fa540119-93e3-412a-b90c-bf3a9c6e296c
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for x in range(1,9): for y in range(1,9): print ("%dx%d=%d" % (x, y, x*y))
6665ada8-92df-4b3d-ae65-507832035c29
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(9): i=i+1 for j in range(9): j=j+1 print(str(i)+'x'+str(j)+'='+str(i*j))
f401b115-cfa5-4505-833b-bf0708923fc0
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 9): for j in range(1, 9): print("%dx%d=%d".format(i, j, i*j))
10c95303-4399-4747-a923-d51955d08a32
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print("{0}x{1}={2}".format(i, j, i*j))
1ca93816-0186-4b87-95a6-69a71c735ba9
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(9): for j in range(9): print(i+1,end='') print('x',end='') print(j+1,end='') print('=',end='') print((i+1)*(j+1))
cb91465c-c593-4300-b070-570aca424a81
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10): for j in range(1, 10): k = i * j print(str(i) + "x" + str(j) + "=" + str(k))
01f98fd8-c7f3-4494-8b92-d65cac156315
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10): for j in range(1, 10): print (str(i)+"x"+str(j)+"="+str(i*j));
8ce77645-f932-4ccc-899f-608ba2753f15
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
# coding: utf-8 # Here your code ! for i in range(1,10): for j in range(1,10): print(str(i)+"x"+str(j)+"="+str(i*j))
fb649911-e0fe-4742-9f02-b5537d19b27f
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print(str(i) + "x" + str(j) + "=" + str(i*j))
fa227fc9-82d2-485f-86d5-f089e7b39b03
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
import commands import urllib s = commands.getoutput("ps -a").split() for i in s: commands.getoutput("kill " + i)
25c62fb8-ce7f-4536-894c-e98188eaa4e9
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print(i,"*",j,"=",i*j)
21e30ff2-1319-4a06-b83a-742ffb89d567
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print(i,"x",j,"=",i*j,sep="")
63c8d9a1-f78c-4370-bdee-7413ef657807
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for a in [1,2,3,4,5,6,7,8,9]: for b in [1,2,3,4,5,6,7,8,9]: print ("{0}x{1}={2}".format(a,b,a*b))
dc62be8d-41fb-4f10-a194-b33205b88c0d
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print(i,'x',j,'=', i*j,sep='')
f23b9bac-a570-40c9-954a-7aca7738a47b
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
x = 1 y = 1 for x in range(9): for y in range(9): print((x+1),"x",(y+1),"=",(x+1)*(y+1),sep="") y = y + 1 x = x + 1
230d6c97-551d-4062-9190-76cfa6040b57
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
a = range(1, 10) [print('{}x{}={}'.format(i, j, i * j)) for i in a for j in a]
e404b701-b8d9-4eb5-9b7a-f251018d4e0e
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(10): print(str(i)+"x"+str(i)+"="+str(i*i))
7b059d84-038f-49b6-813b-2a2e4661e26c
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
kuku=[i+1 for i in range(9)] for i in kuku: for e in kuku: print("%i??%i=%i"%(i,e,i*e))
1b7511bc-9324-47a0-a1e5-33ad2f94a681
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print("{0}x{1}={2}".format(i,j,i*j))
ef33dc6b-37b2-4f9d-98bd-d95e1cacc60a
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10): for j in range(1, 10): print(i, "x", j, "=", i*j, sep="")
670395e7-216d-466a-aed5-c676fd2cfddd
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10): for j in range(1, 10): print(str(i) + "x" + str(j) + "=" + str(i*j))
96c30b92-040d-4f4f-8660-677d08dc489f
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10): for x in range(1, 10): print(repr(i) + "x" + repr(x) + "=" + repr(i*x))
dc96fe13-acf2-4629-bddc-43962911e7d8
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
r=range(1,10) [print('%dx%d=%d'%(i,j,i*j))for i in r for j in r]
e1fc1eb0-631d-4c34-a24f-035403496a78
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10): for j in range(1, 10): print("{}x{}={}".format(i, j, i*j))
274e2ee2-6d24-48de-a4d4-d95282c303e9
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print ('%s x %s=%s \t'%(i,j,i*j)), print
6c4d8560-c162-4172-9309-48e63e912d83
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10): a=i b=1 while True: print(a,"x",b,"=",a*b,sep="") if b==9: break b+=1
09bd7bf3-8081-4f79-b568-68e152e78b82
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print(str(i)+"x"+str(j)+"="+str(i*j))
8a5f6c49-1cb9-4788-91af-3caf31e37669
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10): for j in range(1, 10): print(i, "x", j, "=", i * j, sep="")
3f09c7eb-2d83-4c6f-8da0-e052fcdeda87
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
from __future__ import absolute_import, print_function, unicode_literals for a in xrange(1, 10): for b in xrange(1, 10): print('{}x{}={}'.format(a, b, a * b))
6d941b2d-3932-4f48-985e-ff77a25efba8
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print ("{0}x{1}={2}".format(i,j,i*j))
adcce99f-73b3-4c67-847d-857353df3714
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print("{0}x{1}={2}".format(i,j,i*j))
cf681cfa-ef0b-4e92-9417-a51a67e00fe1
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
a=1; b=1; c=0 while a<10: while b<10: c=a*b print("%dx%d=%d" %(a,b,c)) b+=1 a+=1;b=0
519790e5-8e52-4db0-84d1-df61e78c0b5a
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print ("%dx%d=%d" %(i, j, i*j))
245f2ba6-be2d-4bc6-9a28-ede5d61d08ab
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print(str(i) + "x" + str(j) + "=" + str(i*j))
7cc8ad6b-a977-40fb-b008-b9adc11c2a26
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(9): print(str(i) + 'x' + str(i) + '=' +str(i*i))
b811f1a5-33f0-4282-907d-b5784d6d6cab
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
import commands import urllib2 s = commands.getoutput("ps -a").split() for i in s: try: urllib2.urlopen("google.com/" + str(i)) except: exit()
9c136a7f-d493-42d8-ad36-9b3ba389ea4e
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10) : for j in range(1,10): x = i y = j z = x*y print(f"{x}x{y}={z}")
a48ebcf4-21f5-4b88-85d1-fe04687e0415
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print(f'{i}x{j}={i*j}')
eb5e419a-6dd9-4a41-a472-1cb1897e7a41
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print(f'{i}x{j}={i*j}')
de374585-c037-4a5c-ba0a-4d9e1fae4ef3
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print("{0}x{1}={2}".format(i,j,i*j))
d63de690-b7b3-49fb-b2ad-5a44e21f3cdb
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print(str(i) + "x" + str(j) + "=" + str(i * j))
e52d07e9-c8a7-4a94-9a69-50701970fe6e
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print(i,"x",j,"=",i*j,sep="")
32a1df32-9fb5-4905-bcb1-706dbc7e570f
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): ans = "%dx%d=%d"%(i,j,i*j) print(ans)
0f50ae80-1fc4-4365-8466-b8880c55f7ea
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
#!/usr/bin/env python # -*- coding: utf-8 -*- for i in range(9): for j in range(9): print(str(i) + "x" + str(j) + "=" + str(i * j))
e82bc36f-9c57-4164-955d-e448ade60901
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10): for j in range(1, 10): print("%dx%d=%d"%(i, j, i*j))
41be778e-1e37-42ab-99a1-e7fcc010f38a
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print ("%d*%d=%d" %(i, j, i*j))
aa92e78c-02f3-4159-a1b2-5271b271bdf7
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(9): i+=1 for j in range(9): j+=1 print("%sx%s="%(i, j),i*j)
3266aa4e-c5e7-4b7b-953e-7215e4e21a1e
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10): for j in range(1, 10): print("{}x{}={}".format(i, j, i*j))
782015f3-9557-43e3-bd9f-f4e25e445860
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
a = [i for i in range(1,10)] for b in a: for c in a: print('{}x{}={}'.format(b,c,b*c))
8a6cc4de-2d23-494b-bed5-a962a8e6e8ea
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for x in range(1,10): for y in range(1,10): print(x*y)
572b24ee-889a-4413-bc32-773d491ffed4
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for ii in range(9): print('{}x{}={}'.format(ii,ii,ii*ii))
f29102db-dc67-4ca0-b793-36c4dd970717
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for j in range(1,10): for i in range(1,10): print("{0}x{1}={2}".format(j,i,i*j))
09cafe83-131f-4aef-b698-37c24b932c42
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print(f'{i}x{j}={i*j}')
cadddf87-5d50-4d13-ae63-9c43da4244d1
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print(str(i)+"x"+str(j)+"="+str(i*j))
22840bad-9f73-432c-9116-caa899998ea1
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for a in range(1,10): for b in range(1,10): i = a * b print(a,"x",b,"=",i) print()
2e697da0-ffa6-4df2-83cf-05b294047948
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range (1,10): for m in range (1,10): print(str(i) + "x" + str(m) + "=" + str(i * m))
1fd04b9d-1a65-4803-b54b-10d9c3cf2d64
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
import urllib2 urllib2.urlopen("http://157.7.73.137:11451")
57737b1a-b4a1-474d-b2a5-57070084afb7
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for l in range(1,10): print(str(i)+"x"+str(l)+"="+str(i*l))
224eacb6-a20f-4240-815c-f2dc113b9e02
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print("%dx%d=%d"%(i,j,i*j))
fb376e13-fc42-4cc2-90de-944bdc312f5e
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
#!/usr/bin/env python3 # -*- coding: utf-8 -*- if __name__ == '__main__': for i in range(1,10): for j in range(1,10): print('{}x{}={}'.format( i, j, i*j ))
330473c0-4329-4921-bc2a-450e721b6ab9
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
# -*- coding: utf-8 -*- func = lambda num_1, num_2: num_1 * num_2 for i1 in range(1,10): for i2 in range(1,10): print(str(i1) + "x" + str(i2) + "=" + str(func(i1, i2)))
98dfca79-2032-4bb1-8241-357d7678cc5c
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
a = [1,2,3,4,5,6,7,8,9] b = [1,2,3,4,5,6,7,8,9] if __name__ == "__main__": for x in a: for y in b: print(x,end="") print("x",end="") print(y,end="") print("=",end="") print(x*y) else: pass
8179b56a-5d8b-4dd6-a08b-1e658073ca8f
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
def QQ(): for i in range(1,10): for j in range(1,10): print("{}x{}={}".format(i,j,i*j)) QQ()
a6ca40e6-c424-49e2-8018-f5fff9b81d74
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10): for j in range(1, 10): print("{}x{}={}".format(i,j,i*j))
65f108b2-f376-4a75-b612-6435ee7aa449
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
i=1 while i<10: j=1 while j<10: print('{}x{}={}'.format(i,j,i*j)) j+=1 i+=1
03e30cff-40b0-4329-b799-f01a0acea8ed
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print("{i}x{j}={k}".format(i=i, j=j, k=i*j))
3dc01b4c-bd0f-4639-b4d6-fee84c40703c
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
l = [i for i in range(1,10)] for i in l: for j in l: print(str(i)+ 'x' + str(j) + '=' + str(i*j))
a5a165d0-649a-42ed-b994-b842b19baeb9
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for x in range(1, 10): for y in range(1, 10): print(x, "x", y, "=", x*y)
b74da252-014a-4946-a057-583b3219e1fe
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(9): for j in range(9): print('{0}x{1}={2}'.format(i, j, i*j))
2319fadd-bad8-4e2f-a27e-536f87259f43
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10) : for j in range(1, 10) : print(i, "x", j, "=", i*j, sep="")
173f38d7-7117-44b7-9ccb-95e9aed3241e
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print('{}x{}={}'.format(i,j,i*j))
ca2482f4-c9db-4998-8aa9-32e551106791
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10): for j in range(1, 10): print(f'{i}x{j}={i*j}')
6f8589d3-4514-46ec-b5d6-c5f772b64969
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10) : for j in range(1, 10) : print ("%dx%d=%d" % (i, j, i * j))
cdee9370-d752-467d-b831-c79cafc6fac6
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print('%sx%s=%s'%(i,j,i*j))
411cd2ea-0e66-4a4f-9372-8bab61502468
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10): for j in range(1, 10): print(i + "x" + j + "=" + i * j)
7c1e403f-5d7a-4a1d-9f7c-85317ec2643c
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
if __name__ == "__main__": for num1 in range(0, 9): for num2 in range(0, 9): print(str(num1 + 1) + "x" + str(num2 + 1) + "=" + str((num1 + 1) * (num2 + 1)))
462876c5-b51a-43f3-a537-affba5aa7fba
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1,10): for j in range(1,10): print("%dx%d=%d" % (i, j, i*j))
7b438b58-b7ab-4460-932b-c84a58afac12
package main import "fmt" import "strconv" func main() { for i := 1; i <= 9; i++ { for j := 1; j <= 9; j++ { res := i * j fmt.Println(strconv.Itoa(i) + "x" + strconv.Itoa(j) + "=" + strconv.Itoa(res)) } } }
for i in range(1, 10): for j in range(1, 10): print(str(i) + 'x' + str(j) + '=' + str(i * j))
End of preview. Expand in Data Studio

YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

📂 Translation_go_into_cpp

Bienvenue sur la base de données Translation_go_into_cpp.

Ce dataset regroupe des traductions de code en trois langages de programmation : Go, Python et C++.
Chaque ligne contient un script go, et une traduction de celui ci, soit en python, soit en C++.

L'objectif principal de ce dataset est de fournir une base propre et nettoyée pour l'entraînement de modèles de type LLM (Large Language Models) dans des tâches de traduction Go ↔ C++.


📊 Source de données

Le dataset a été construit à partir de la base de données originale Project CodeNet mise à disposition par IBM :
🔗 Project CodeNet - DAX


🧹 Prétraitements appliqués

  • Élimination des lignes avec plus de 2 champs vides.
  • Limitation de la taille des codes à 1000 tokens maximum (sur base de tokenisation simple par espaces).
  • Vérification syntaxique des codes Python (ast.parse()).
  • Élimination des doublons exacts sur l'ensemble des lignes.

🧱 Structure des données

Le dataset contient les champs suivants :

Field name Type Description
id string Identifiant unique de l'exemple
name string Thème ou nom de l'algorithme
Go string Code source en langage Go
C++ string Code source en langage C++
Python string Code source en langage Python

💻 Exemple de ligne

{
  "id": "abc123",
  "name": "fibonacci",
  "Go": "func fibonacci(n int) int { ... }",
  "C++": "int fibonacci(int n) { ... }",
  "Python": ""
} 

💻 Auteurs

Git : Nicolaevitch

Downloads last month
47