File size: 88,934 Bytes
ea204f5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 |
ID,Language,Code Snippet,Description,Complexity
1,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
2,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
3,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
4,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
5,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
6,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Hard
7,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
8,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
9,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Easy
10,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
11,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
12,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
13,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
14,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
15,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
16,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
17,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
18,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
19,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
20,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
21,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
22,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
23,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
24,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Medium
25,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
26,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
27,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
28,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
29,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Easy
30,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Easy
31,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
32,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Easy
33,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
34,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
35,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
36,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
37,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
38,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
39,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
40,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
41,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
42,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
43,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Easy
44,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
45,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
46,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
47,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
48,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
49,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Hard
50,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
51,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
52,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
53,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
54,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
55,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
56,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
57,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
58,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
59,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
60,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
61,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
62,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
63,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
64,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Hard
65,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
66,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
67,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
68,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Medium
69,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
70,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
71,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
72,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
73,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Easy
74,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
75,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
76,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
77,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
78,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Easy
79,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
80,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
81,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
82,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
83,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
84,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
85,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
86,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
87,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
88,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
89,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Hard
90,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
91,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
92,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Medium
93,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
94,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
95,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
96,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
97,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Medium
98,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
99,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
100,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
101,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
102,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
103,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Easy
104,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
105,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
106,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
107,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
108,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Easy
109,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
110,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
111,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
112,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
113,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
114,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
115,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
116,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Medium
117,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Medium
118,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
119,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
120,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
121,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
122,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
123,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
124,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
125,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
126,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
127,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
128,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
129,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
130,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
131,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Hard
132,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
133,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
134,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
135,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
136,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
137,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
138,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
139,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
140,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
141,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
142,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Easy
143,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
144,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
145,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
146,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
147,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
148,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
149,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
150,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
151,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
152,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
153,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Hard
154,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
155,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
156,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
157,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
158,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
159,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
160,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
161,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
162,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
163,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
164,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
165,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
166,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
167,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
168,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
169,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
170,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
171,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
172,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
173,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
174,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
175,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
176,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
177,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
178,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
179,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
180,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
181,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
182,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Easy
183,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
184,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
185,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
186,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Medium
187,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
188,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
189,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
190,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
191,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
192,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
193,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
194,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
195,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
196,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
197,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
198,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
199,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
200,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
201,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
202,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Medium
203,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
204,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
205,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
206,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
207,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
208,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
209,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Easy
210,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
211,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
212,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Medium
213,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
214,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
215,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
216,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
217,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
218,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
219,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
220,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
221,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Easy
222,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
223,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
224,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Hard
225,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
226,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
227,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
228,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
229,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
230,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
231,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
232,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
233,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
234,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
235,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
236,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
237,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
238,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
239,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
240,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
241,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Hard
242,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
243,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
244,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
245,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
246,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Medium
247,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
248,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
249,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
250,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Easy
251,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
252,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
253,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Medium
254,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
255,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
256,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
257,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
258,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
259,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
260,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
261,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
262,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Medium
263,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
264,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
265,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
266,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
267,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
268,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
269,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
270,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
271,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
272,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
273,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
274,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
275,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
276,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
277,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
278,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
279,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
280,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
281,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
282,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Easy
283,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
284,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
285,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Medium
286,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
287,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
288,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
289,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
290,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
291,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
292,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
293,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Medium
294,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
295,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
296,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
297,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
298,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Easy
299,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
300,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
301,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
302,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
303,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
304,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
305,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Medium
306,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
307,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
308,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
309,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
310,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
311,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
312,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
313,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
314,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
315,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
316,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
317,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
318,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
319,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
320,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
321,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
322,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
323,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
324,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
325,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
326,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
327,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
328,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
329,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
330,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
331,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
332,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
333,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Easy
334,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
335,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
336,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
337,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
338,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
339,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Easy
340,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
341,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
342,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Medium
343,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
344,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
345,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
346,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
347,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
348,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
349,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
350,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
351,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
352,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
353,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
354,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
355,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
356,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
357,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
358,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
359,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
360,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
361,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
362,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
363,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
364,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
365,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
366,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
367,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
368,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
369,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
370,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
371,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Medium
372,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
373,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
374,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
375,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
376,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
377,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
378,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
379,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
380,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
381,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Easy
382,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
383,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
384,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
385,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
386,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
387,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Medium
388,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
389,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
390,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
391,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
392,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
393,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
394,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Medium
395,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
396,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
397,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
398,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
399,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
400,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
401,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
402,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
403,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
404,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
405,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Medium
406,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
407,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
408,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
409,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
410,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
411,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
412,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
413,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
414,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
415,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
416,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
417,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
418,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Medium
419,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Easy
420,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
421,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
422,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
423,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
424,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
425,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
426,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
427,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
428,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
429,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
430,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
431,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
432,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
433,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
434,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
435,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
436,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
437,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
438,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
439,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
440,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
441,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
442,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
443,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
444,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
445,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
446,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
447,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
448,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
449,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
450,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
451,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
452,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
453,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Hard
454,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
455,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
456,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
457,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
458,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
459,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
460,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
461,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
462,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
463,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
464,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
465,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
466,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
467,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Easy
468,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
469,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
470,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
471,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
472,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
473,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
474,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
475,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
476,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
477,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
478,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Easy
479,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
480,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
481,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
482,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
483,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
484,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
485,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
486,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
487,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
488,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
489,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
490,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
491,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
492,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
493,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
494,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
495,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Hard
496,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
497,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
498,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
499,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
500,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
501,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
502,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
503,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
504,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
505,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
506,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
507,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
508,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
509,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
510,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
511,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
512,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Medium
513,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
514,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
515,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
516,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
517,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
518,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
519,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Medium
520,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
521,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
522,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
523,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
524,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Medium
525,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
526,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
527,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
528,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
529,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
530,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
531,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
532,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
533,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
534,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
535,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
536,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
537,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
538,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
539,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Easy
540,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
541,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
542,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
543,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
544,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
545,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
546,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
547,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
548,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
549,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
550,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
551,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
552,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
553,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
554,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
555,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
556,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
557,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
558,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Easy
559,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
560,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
561,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
562,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
563,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
564,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
565,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
566,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
567,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
568,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
569,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
570,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
571,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
572,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
573,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Medium
574,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
575,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
576,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
577,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
578,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
579,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
580,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
581,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
582,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
583,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
584,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
585,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
586,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
587,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
588,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
589,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
590,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
591,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
592,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
593,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
594,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
595,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Easy
596,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
597,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
598,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
599,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
600,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
601,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
602,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
603,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
604,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
605,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Easy
606,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
607,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
608,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
609,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
610,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
611,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
612,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
613,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Medium
614,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
615,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
616,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
617,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
618,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Easy
619,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
620,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
621,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
622,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Medium
623,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Medium
624,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
625,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
626,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
627,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
628,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
629,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
630,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
631,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
632,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
633,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
634,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
635,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
636,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Medium
637,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
638,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
639,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
640,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Easy
641,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
642,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
643,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
644,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
645,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
646,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
647,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
648,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Hard
649,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
650,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
651,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
652,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
653,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
654,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
655,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
656,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Easy
657,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
658,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
659,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
660,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
661,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
662,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
663,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
664,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
665,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
666,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
667,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Easy
668,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
669,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
670,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Medium
671,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
672,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
673,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
674,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Easy
675,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
676,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
677,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
678,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
679,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
680,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
681,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
682,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
683,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
684,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
685,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
686,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
687,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
688,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
689,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
690,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
691,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
692,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
693,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
694,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
695,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Medium
696,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Medium
697,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
698,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
699,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
700,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
701,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
702,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Medium
703,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
704,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Easy
705,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
706,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
707,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
708,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
709,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
710,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
711,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
712,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
713,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Medium
714,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
715,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
716,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
717,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
718,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
719,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Hard
720,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
721,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
722,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
723,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
724,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
725,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Hard
726,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
727,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
728,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
729,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
730,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
731,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
732,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
733,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
734,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
735,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
736,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
737,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
738,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Easy
739,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
740,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
741,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Medium
742,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
743,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Medium
744,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
745,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
746,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Hard
747,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Easy
748,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
749,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
750,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
751,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
752,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
753,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
754,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
755,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
756,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
757,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
758,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
759,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
760,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
761,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
762,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
763,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
764,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
765,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
766,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
767,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
768,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
769,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
770,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Medium
771,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
772,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
773,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Easy
774,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
775,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
776,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
777,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Easy
778,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
779,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Medium
780,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Easy
781,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
782,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
783,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
784,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
785,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
786,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
787,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
788,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
789,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
790,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Easy
791,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
792,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
793,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
794,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
795,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
796,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
797,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
798,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
799,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
800,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
801,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Easy
802,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Easy
803,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
804,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Easy
805,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
806,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
807,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
808,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Easy
809,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
810,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
811,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Easy
812,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
813,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
814,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
815,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
816,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Medium
817,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
818,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
819,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
820,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
821,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
822,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
823,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
824,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
825,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
826,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Hard
827,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
828,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
829,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Medium
830,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
831,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
832,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Medium
833,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Easy
834,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
835,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
836,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
837,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Hard
838,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
839,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
840,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Medium
841,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
842,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
843,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
844,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
845,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
846,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
847,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Hard
848,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
849,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
850,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
851,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
852,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
853,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
854,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
855,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
856,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
857,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
858,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Medium
859,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
860,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
861,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
862,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
863,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
864,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
865,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
866,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
867,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
868,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
869,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
870,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
871,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
872,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
873,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Hard
874,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
875,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
876,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
877,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Easy
878,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
879,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
880,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
881,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
882,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
883,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
884,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
885,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
886,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
887,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
888,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
889,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
890,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
891,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
892,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
893,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
894,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
895,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
896,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
897,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
898,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
899,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
900,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
901,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
902,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
903,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
904,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
905,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Easy
906,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Medium
907,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
908,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
909,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
910,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Easy
911,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Hard
912,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
913,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Easy
914,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
915,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
916,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
917,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Easy
918,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
919,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
920,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
921,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
922,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
923,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
924,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
925,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
926,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
927,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
928,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Medium
929,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
930,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Medium
931,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
932,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
933,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
934,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
935,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
936,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
937,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
938,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
939,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
940,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Medium
941,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
942,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
943,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
944,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Medium
945,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Easy
946,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
947,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Hard
948,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Medium
949,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
950,Ruby,"def add(a, b); a + b; end",Defines a method that adds two numbers.,Medium
951,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
952,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
953,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
954,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Medium
955,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
956,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
957,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
958,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Medium
959,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
960,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Easy
961,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
962,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
963,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
964,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
965,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Hard
966,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Medium
967,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
968,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
969,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Easy
970,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Medium
971,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
972,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Easy
973,Java,for (int i = 0; i < 5; i++) { System.out.println(i); },Prints numbers from 0 to 4.,Hard
974,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Medium
975,Python,"def add(a, b): return a + b",Defines a function that adds two numbers.,Easy
976,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
977,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Medium
978,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
979,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
980,Ruby,"puts 'Hello, World!'","Prints 'Hello, World!' to the console.",Easy
981,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Hard
982,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
983,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
984,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
985,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Medium
986,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Hard
987,JavaScript,for (let i = 0; i < 5; i++) { console.log(i); },Prints numbers from 0 to 4.,Hard
988,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Easy
989,Python,for i in range(5): print(i),Prints numbers from 0 to 4.,Hard
990,JavaScript,"function add(a, b) { return a + b; }",Defines a function that adds two numbers.,Easy
991,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Medium
992,Python,"print('Hello, World!')","Prints 'Hello, World!' to the console.",Easy
993,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Medium
994,Java,"public int add(int a, int b) { return a + b; }",Defines a method that adds two numbers.,Easy
995,Ruby,5.times { |i| puts i },Prints numbers from 0 to 4.,Hard
996,Java,"System.out.println('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
997,C++,for (int i = 0; i < 5; i++) { std::cout << i; },Prints numbers from 0 to 4.,Hard
998,C++,"std::cout << 'Hello, World!';","Prints 'Hello, World!' to the console.",Easy
999,C++,"int add(int a, int b) { return a + b; }",Defines a function that adds two numbers.,Easy
1000,JavaScript,"console.log('Hello, World!');","Prints 'Hello, World!' to the console.",Hard
|