CoolFace
Datasetpublic

TheRealSamuel/LeetCodeProblem

sourceHugging Faceupdated 2mo agoView on Hugging Face
0likes564downloads
1{2    "id": 2639,3    "name": "separate_the_digits_in_an_array",4    "difficulty": "Easy",5    "link": "https://leetcode.com/problems/separate-the-digits-in-an-array/",6    "date": "2023-01-21 00:00:00",7    "task_description": "Given an array of positive integers `nums`, return _an array _`answer`_ that consists of the digits of each integer in _`nums`_ after separating them in **the same order** they appear in _`nums`. To separate the digits of an integer is to get all the digits it has in the same order. For example, for the integer `10921`, the separation of its digits is `[1,0,9,2,1]`. **Example 1:** ``` **Input:** nums = [13,25,83,77] **Output:** [1,3,2,5,8,3,7,7] **Explanation:** - The separation of 13 is [1,3]. - The separation of 25 is [2,5]. - The separation of 83 is [8,3]. - The separation of 77 is [7,7]. answer = [1,3,2,5,8,3,7,7]. Note that answer contains the separations in the same order. ``` **Example 2:** ``` **Input:** nums = [7,1,3,9] **Output:** [7,1,3,9] **Explanation:** The separation of each integer in nums is itself. answer = [7,1,3,9]. ``` **Constraints:** `1 <= nums.length <= 1000` `1 <= nums[i] <= 105`",8    "public_test_cases": [9        {10            "label": "Example 1",11            "input": "nums = [13,25,83,77]",12            "output": "[1,3,2,5,8,3,7,7] "13        },14        {15            "label": "Example 2",16            "input": "nums = [7,1,3,9]",17            "output": "[7,1,3,9] "18        }19    ],20    "private_test_cases": [21        {22            "input": [23                20825,24                8339,25                50556,26                6691,27                62174,28                799,29                17166,30                18464,31                1536,32                76769,33                95028,34                21405,35                15133,36                43281,37                19181,38                17165,39                45198,40                2699,41                98,42                58543,43                85881,44                76904,45                37054,46                52783,47                93652,48                94673,49                55544,50                35898,51                60649,52                18455,53                92323,54                76386,55                91272,56                71156,57                68141,58                87965,59                81447,60                19305,61                61245,62                89556,63                29401,64                55580,65                55833,66                61294,67                65929,68                32656,69                3757,70                98308,71                59729,72                71734,73                70920,74                17005,75                60001,76                36846,77                96345,78                84733,79                40787,80                73439,81                99916,82                81940,83                77286,84                50922,85                17748,86                90335,87                42513,88                44960,89                17528,90                38475,91                12342,92                580,93                63837,94                82405,95                65479,96                61617,97                15685,98                48386,99                10513,100                78914,101                10362,102                86992,103                75216,104                50987,105                88994,106                67581,107                12107,108                20353,109                99,110                48931,111                72832,112                69709,113                13838,114                53863,115                51072,116                44639,117                45233,118                23079,119                49597,120                57771,121                25048,122                62919,123                19229,124                75535,125                49811,126                79190,127                42148,128                18843,129                79784,130                62141,131                37436,132                53349,133                39409,134                68223,135                7608,136                37727,137                88321,138                49012,139                29325,140                31249,141                33874,142                2955,143                75814,144                14566,145                39553,146                20691,147                72207,148                95231,149                80593,150                91854,151                22036,152                70460,153                17705,154                40721,155                16541,156                36302,157                56041,158                16147,159                315,160                82072,161                95869,162                1269,163                54258,164                31738,165                72674,166                94997,167                7483,168                24717,169                65209,170                12422,171                41620,172                87282,173                74295,174                24414,175                37676,176                91432,177                87385,178                50945,179                55624,180                18716,181                75388,182                11794,183                72988,184                95931,185                3545,186                90394,187                85423,188                20084,189                68583,190                90044,191                25290,192                68311,193                88434,194                56021,195                59992,196                26987,197                48440,198                450,199                69763,200                61186,201                78917,202                38121,203                95227,204                75928,205                21837,206                94214,207                61341,208                74576,209                98157,210                67390,211                5560,212                48238,213                1960,214                14894,215                63526,216                73304,217                11534,218                5619,219                74387,220                28569,221                66740,222                1246,223                91089,224                56728,225                62973,226                29761,227                79226,228                52397,229                42686,230                96496,231                46137,232                84882,233                77812,234                77243,235                35586,236                87232,237                46566,238                95683,239                77697,240                28897,241                11378,242                43778,243                72707,244                22531,245                15894,246                74986,247                60185,248                13675,249                47478,250                6862,251                84542,252                12914,253                7076,254                48618,255                38735,256                55111,257                75248,258                87129,259                71794,260                66730,261                71737,262                57721,263                98282,264                80913,265                74212,266                65087,267                55084,268                35491,269                18209,270                78789,271                60097,272                22961,273                78336,274                54595,275                97164,276                66202,277                89415,278                2691,279                27604,280                19702,281                7529,282                42163,283                51517,284                80988,285                66214,286                7248,287                86166,288                45482,289                37678,290                33726,291                28821,292                49859,293                59028,294                61772,295                52714,296                78173,297                59215,298                65269,299                74692,300                26292,301                10693,302                25451,303                22140,304                89449,305                86651,306                44849,307                35645,308                96756,309                81106,310                19440,311                73936,312                14323,313                3327,314                4267,315                37690,316                28664,317                17377,318                66214,319                87835,320                56724,321                47170,322                23578,323                57866,324                26963,325                17546,326                81766,327                59926,328                65091,329                36666,330                32658,331                3459,332                72851,333                68629,334                8974,335                13730,336                10188,337                191,338                27851,339                75851,340                6785,341                89626,342                51801,343                49745,344                97293,345                77147,346                40616,347                42690,348                76033,349                50307,350                10651,351                51340,352                40343,353                81015,354                46316,355                59859,356                97962,357                81602,358                86480,359                86589,360                21910,361                65829,362                26310,363                30342,364                78495,365                79559,366                40450,367                59023,368                51096,369                92814,370                55716,371                50998,372                82221,373                16296,374                26449,375                49788,376                10851,377                30091,378                24980,379                40136,380                16819,381                35581,382                33734,383                24340,384                1548,385                4746,386                13983,387                35695,388                24841,389                12476,390                21887,391                42081,392                53565,393                55145,394                25055,395                13712,396                30163,397                13954,398                53281,399                99943,400                22893,401                71502,402                91597,403                78162,404                94849,405                82989,406                612,407                91479,408                65260,409                79329,410                24576,411                1936,412                24098,413                63318,414                96087,415                63759,416                17499,417                22194,418                33305,419                64926,420                13815,421                94351,422                11003,423                68562,424                69244,425                62365,426                16823,427                27339,428                28044,429                18432,430                78697,431                46468,432                14051,433                92239,434                15133,435                51986,436                22282,437                81770,438                53289,439                15380,440                40816,441                63562,442                78964,443                92468,444                35715,445                75933,446                5720,447                29211,448                8644,449                68256,450                42605,451                22,452                44496,453                46230,454                41036,455                31853,456                24580,457                75396,458                84473,459                17770,460                31659,461                11273,462                62054,463                22606,464                96474,465                96124,466                72901,467                89555,468                62099,469                91975,470                58147,471                45770,472                63381,473                51996,474                20297,475                69727,476                39184,477                85762,478                51351,479                13087,480                6596,481                56915,482                91032,483                10739,484                35957,485                79235,486                24322,487                52337,488                91318,489                77944,490                7877,491                81125,492                8198,493                83517,494                54466,495                3075,496                32887,497                102,498                72724,499                30320,500                81562,501                15288,502                50646,503                54489,504                63716,505                21519,506                51736,507                12137,508                30905,509                87348,510                9002,511                76444,512                43394,513                82237,514                55179,515                88722,516                71858,517                65465,518                10531,519                22803,520                53803,521                90417,522                99918,523                28422,524                9595,525                81580,526                96103,527                95043,528                51926,529                72096,530                39203,531                26928,532                4674,533                49987,534                67676,535                33656,536                96243,537                56166,538                84716,539                94368,540                37483,541                85893,542                70083,543                69536,544                61869,545                72131,546                48095,547                49873,548                69052,549                15646,550                22800,551                5218,552                77568,553                34269,554                12827,555                50753,556                43692,557                86157,558                69107,559                72666,560                90659,561                43993,562                86883,563                31847,564                16330,565                90979,566                5498,567                20222,568                57541,569                66466,570                85503,571                84378,572                75265,573                39113,574                3053,575                7987,576                42963,577                90799,578                82822,579                29031,580                3165,581                34554,582                94008,583                2084,584                62574,585                35890,586                6968,587                93569,588                14201,589                32701,590                98496,591                91439,592                16555,593                33297,594                77362,595                18888,596                17773,597                11387,598                81670,599                54171,600                13522,601                20658,602                24041,603                58948,604                30551,605                1014,606                18642,607                50767,608                16158,609                93264,610                81741,611                18242,612                46820,613                48154,614                61873,615                47134,616                57914,617                30843,618                37336,619                89784,620                35535,621                70601,622                5607,623                26567,624                52023,625                78079,626                37249,627                78943,628                35958,629                83463,630                56131,631                6884,632                81358,633                92045,634                81623,635                18957,636                40570,637                39549,638                82653,639                7323,640                10804,641                52978,642                83638,643                78216,644                28713,645                57357,646                65923,647                77313,648                79644,649                2002,650                38386,651                90128,652                18288,653                87622,654                82402,655                41064,656                25580,657                33197,658                86477,659                14524,660                97899,661                38337,662                44674,663                67000,664                40689,665                60980,666                24036,667                51293,668                32724,669                38670,670                22807,671                88601,672                38657,673                31987,674                12688,675                35308,676                67908,677                44216,678                91735,679                88320,680                57208,681                88470,682                18141,683                976,684                25997,685                90852,686                89243,687                11056,688                46456,689                39996,690                12085,691                15844,692                10324,693                95112,694                72331,695                76259,696                66670,697                58392,698                17149,699                73075,700                45505,701                19143,702                32230,703                68091,704                1812,705                7432,706                65693,707                54676,708                39916,709                37229,710                45053,711                34559,712                58313,713                35513,714                80595,715                56603,716                89969,717                14691,718                15731,719                94793,720                6968,721                52714,722                26796,723                3911,724                14678,725                28461,726                5788,727                31396,728                95263,729                96926,730                94811,731                26149,732                96412,733                11326,734                75957,735                33732,736                15757,737                22130,738                31991,739                99101,740                3981,741                67812,742                46961,743                82644,744                16835,745                22065,746                78244,747                63396,748                45263,749                88404,750                34031,751                18377,752                46418,753                98689,754                75604,755                43067756            ],757            "output": [758                2,759                0,760                8,761                2,762                5,763                8,764                3,765                3,766                9,767                5,768                0,769                5,770                5,771                6,772                6,773                6,774                9,775                1,776                6,777                2,778                1,779                7,780                4,781                7,782                9,783                9,784                1,785                7,786                1,787                6,788                6,789                1,790                8,791                4,792                6,793                4,794                1,795                5,796                3,797                6,798                7,799                6,800                7,801                6,802                9,803                9,804                5,805                0,806                2,807                8,808                2,809                1,810                4,811                0,812                5,813                1,814                5,815                1,816                3,817                3,818                4,819                3,820                2,821                8,822                1,823                1,824                9,825                1,826                8,827                1,828                1,829                7,830                1,831                6,832                5,833                4,834                5,835                1,836                9,837                8,838                2,839                6,840                9,841                9,842                9,843                8,844                5,845                8,846                5,847                4,848                3,849                8,850                5,851                8,852                8,853                1,854                7,855                6,856                9,857                0,858                4,859                3,860                7,861                0,862                5,863                4,864                5,865                2,866                7,867                8,868                3,869                9,870                3,871                6,872                5,873                2,874                9,875                4,876                6,877                7,878                3,879                5,880                5,881                5,882                4,883                4,884                3,885                5,886                8,887                9,888                8,889                6,890                0,891                6,892                4,893                9,894                1,895                8,896                4,897                5,898                5,899                9,900                2,901                3,902                2,903                3,904                7,905                6,906                3,907                8,908                6,909                9,910                1,911                2,912                7,913                2,914                7,915                1,916                1,917                5,918                6,919                6,920                8,921                1,922                4,923                1,924                8,925                7,926                9,927                6,928                5,929                8,930                1,931                4,932                4,933                7,934                1,935                9,936                3,937                0,938                5,939                6,940                1,941                2,942                4,943                5,944                8,945                9,946                5,947                5,948                6,949                2,950                9,951                4,952                0,953                1,954                5,955                5,956                5,957                8,958                0,959                5,960                5,961                8,962                3,963                3,964                6,965                1,966                2,967                9,968                4,969                6,970                5,971                9,972                2,973                9,974                3,975                2,976                6,977                5,978                6,979                3,980                7,981                5,982                7,983                9,984                8,985                3,986                0,987                8,988                5,989                9,990                7,991                2,992                9,993                7,994                1,995                7,996                3,997                4,998                7,999                0,1000                9,1001                2,1002                0,1003                1,1004                7,1005                0,1006                0,1007                5,1008                6,1009                0,1010                0,1011                0,1012                1,1013                3,1014                6,1015                8,1016                4,1017                6,1018                9,1019                6,1020                3,1021                4,1022                5,1023                8,1024                4,1025                7,1026                3,1027                3,1028                4,1029                0,1030                7,1031                8,1032                7,1033                7,1034                3,1035                4,1036                3,1037                9,1038                9,1039                9,1040                9,1041                1,1042                6,1043                8,1044                1,1045                9,1046                4,1047                0,1048                7,1049                7,1050                2,1051                8,1052                6,1053                5,1054                0,1055                9,1056                2,1057                2,1058                1,1059                7,1060                7,1061                4,1062                8,1063                9,1064                0,1065                3,1066                3,1067                5,1068                4,1069                2,1070                5,1071                1,1072                3,1073                4,1074                4,1075                9,1076                6,1077                0,1078                1,1079                7,1080                5,1081                2,1082                8,1083                3,1084                8,1085                4,1086                7,1087                5,1088                1,1089                2,1090                3,1091                4,1092                2,1093                5,1094                8,1095                0,1096                6,1097                3,1098                8,1099                3,1100                7,1101                8,1102                2,1103                4,1104                0,1105                5,1106                6,1107                5,1108                4,1109                7,1110                9,1111                6,1112                1,1113                6,1114                1,1115                7,1116                1,1117                5,1118                6,1119                8,1120                5,1121                4,1122                8,1123                3,1124                8,1125                6,1126                1,1127                0,1128                5,1129                1,1130                3,1131                7,1132                8,1133                9,1134                1,1135                4,1136                1,1137                0,1138                3,1139                6,1140                2,1141                8,1142                6,1143                9,1144                9,1145                2,1146                7,1147                5,1148                2,1149                1,1150                6,1151                5,1152                0,1153                9,1154                8,1155                7,1156                8,1157                8,1158                9,1159                9,1160                4,1161                6,1162                7,1163                5,1164                8,1165                1,1166                1,1167                2,1168                1,1169                0,1170                7,1171                2,1172                0,1173                3,1174                5,1175                3,1176                9,1177                9,1178                4,1179                8,1180                9,1181                3,1182                1,1183                7,1184                2,1185                8,1186                3,1187                2,1188                6,1189                9,1190                7,1191                0,1192                9,1193                1,1194                3,1195                8,1196                3,1197                8,1198                5,1199                3,1200                8,

Showing the first 1,200 of 16036 lines. Download the file for the rest.