row_id
int64
0
48.4k
init_message
stringlengths
1
342k
conversation_hash
stringlengths
32
32
scores
dict
12,153
any high fiber fruit or food with low calories?
c44f4aef59bdab5876c2135b068b0bf0
{ "intermediate": 0.3913664221763611, "beginner": 0.3093690574169159, "expert": 0.2992645800113678 }
12,154
последняя карточка/обложка выглядит урезанной, не единообразной со всеми остальными, смотри скриншот:https://yadi.sk/d/ujtX2xJRF96n9A <!-- audio player --> <div class="selling-right-now"> <h3>Selling right now</h3> <div class="selling-right-now-track"> <% tracks.forEach((track, index) => { %> <div...
10de3afff0ca5fbe9bc152f9eb708224
{ "intermediate": 0.29929596185684204, "beginner": 0.40982872247695923, "expert": 0.2908753454685211 }
12,155
fix any error in the following items and make it clear o The Deep Blue and Alpha Go moment will come to asset management domain, when AI outperform the best human experts. o Similar to chess and Go, currently, the best players are human assisted by AI. The future alpha will be coming from collaboration between man and...
a23f143d8873a8fe1e42cac395ebace6
{ "intermediate": 0.24641326069831848, "beginner": 0.27539312839508057, "expert": 0.47819358110427856 }
12,156
I used this code: import time from binance.client import Client from binance.enums import * from binance.exceptions import BinanceAPIException from binance.helpers import round_step_size import pandas as pd import json import numpy as np import pytz import datetime as dt import ccxt from decimal import Decimal import r...
278521b12c247b51ae1d924be0fd56fa
{ "intermediate": 0.43918803334236145, "beginner": 0.40406325459480286, "expert": 0.1567487120628357 }
12,157
I'm working as a desktop application developer
dc14742d4324e0a2bfdbffe9f80d72ed
{ "intermediate": 0.3509271442890167, "beginner": 0.4118558168411255, "expert": 0.2372169941663742 }
12,158
I have a matrix called A, which contains one column and 2928 row , I want to sperate every 24 row of matrix A and place in one of column of Matrix B and do it until end. write the code for matlab.
baf69ecf941945d432b950ec0466b250
{ "intermediate": 0.395430326461792, "beginner": 0.1935783475637436, "expert": 0.4109913408756256 }
12,159
I have a pysaprk dataframe and one column JSON_DATA has values like {“a:1”:1, “b:2”:2, “c:3”:3}, how can I expand the column with the key in the json object? and I hope the column name will be a, b, c.
5f05c3daa091989bfdd0215d90fa8240
{ "intermediate": 0.5857862830162048, "beginner": 0.1856636106967926, "expert": 0.22855007648468018 }
12,160
pack 2 4 bits number into 1 byte, in both binary interger and byte string representation
4e45f368d1ec8344739738911d8f7a8c
{ "intermediate": 0.36218810081481934, "beginner": 0.21625465154647827, "expert": 0.42155721783638 }
12,161
can i import a abstract class in any class in java? i made a servicio.java that class is abstract
3ccb9e11765c3758937a0d9dd42c640d
{ "intermediate": 0.48480886220932007, "beginner": 0.2937983274459839, "expert": 0.22139284014701843 }
12,162
I used this code: import time from binance.client import Client from binance.enums import * from binance.exceptions import BinanceAPIException from binance.helpers import round_step_size import pandas as pd import json import numpy as np import pytz import datetime as dt import ccxt from decimal import Decimal import r...
a83b3ed4736ec0b158d7810a1abb1a4b
{ "intermediate": 0.43918803334236145, "beginner": 0.40406325459480286, "expert": 0.1567487120628357 }
12,163
I need a C++ winAPI function to get selected display current resolution
483a8bae15d7a2727dff6df5c80ec5f3
{ "intermediate": 0.7269570231437683, "beginner": 0.13706938922405243, "expert": 0.13597355782985687 }
12,164
I used this code: import time from binance.client import Client from binance.enums import * from binance.exceptions import BinanceAPIException from binance.helpers import round_step_size import pandas as pd import json import numpy as np import pytz import datetime as dt import ccxt from decimal import Decimal import r...
c5810719a3aed83eb37ae1b56dbaa217
{ "intermediate": 0.3979807496070862, "beginner": 0.33084455132484436, "expert": 0.27117466926574707 }
12,165
Есть приложение на java. Вот серверная часть: package serverUtils; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.net.InetSocketAddress; import java.nio.ByteBuffer; import java.nio.channels.*; import java.nio.charset.StandardCharsets; public class ConnectionManager { pri...
0a4e49da3b15b071a3278724c513b234
{ "intermediate": 0.2945860028266907, "beginner": 0.5462389588356018, "expert": 0.15917500853538513 }
12,166
Write a function in c that receives an int number, a bit number and a boolean. The function should set or unset the bit in the int number according to the function arguments. The important part is the function cannot use any branching of any kind. No if conditions, no '?' and ':' operators, nothing of the sort.
1c04b0543ee090b530ab36573ed3f323
{ "intermediate": 0.3739008903503418, "beginner": 0.3079330027103424, "expert": 0.3181661367416382 }
12,167
НАладь работу этих блоков: package serverUtils; import java.io.IOException; import java.nio.channels.SelectionKey; import java.nio.channels.Selector; import java.util.Iterator; public class Console { public void start() throws IOException { ConnectionManager connectionManager = new ConnectionManager(6789); connecti...
d5791aab85626f316df192c91ce8f1fa
{ "intermediate": 0.30315789580345154, "beginner": 0.4962957799434662, "expert": 0.20054630935192108 }
12,168
void circularShift(char* buff, size_t size, Context *ctx) { uint byteShift = ctx->shiftCount / 8; uint bitShift = ctx->shiftCount % 8; if (ctx->isNegShift == true) { byteShift = (size - byteShift) % size; } char* temp = (char*)malloc(size); memcpy(temp, buff, size); for (size_t i = 0...
d5692e4745624e6ef97aaa8ff40144b7
{ "intermediate": 0.33551979064941406, "beginner": 0.34016093611717224, "expert": 0.3243192732334137 }
12,169
I have a script which stores informations into users.csv file now my script saving datas with headers like user_id, username, first_name 1456693225,tyfndjddbvr,hishakh but I want to my script must save informations like index,name,id,status 1,hi,5795719742,NoneType I'll send you my script modify it after modification ...
8bebb7d609d41660ad6acd7e8a91abca
{ "intermediate": 0.46138542890548706, "beginner": 0.18336746096611023, "expert": 0.3552471399307251 }
12,170
как в react-query вернуть в data useQuery результат запроса, а не config, headers и тд
a488620f5d73f738c602944c83b668ea
{ "intermediate": 0.41311216354370117, "beginner": 0.3287544548511505, "expert": 0.2581333816051483 }
12,171
<iframe src="https://beesloveto.buzz" title="description"></iframe> how do I make that html take up the whole screen
1179e45bd14dd2a8d4879757e187d665
{ "intermediate": 0.3639231324195862, "beginner": 0.3201788365840912, "expert": 0.315898060798645 }
12,172
I get this error: you provided a `checked` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultChecked`. Otherwise, set either `onChange` or `readOnly`. input label ImageForm div div div
824c6a9ca0275bbd979ff1c5ee8de419
{ "intermediate": 0.5817070007324219, "beginner": 0.1918126791715622, "expert": 0.22648027539253235 }
12,173
с++ unreal engine 4 montage end notify lambda
f7bc2e1cf4ce841f0ea5419bd3efca79
{ "intermediate": 0.24004994332790375, "beginner": 0.42950305342674255, "expert": 0.3304470181465149 }
12,174
Write code a pinescript v4 script for above Structural Pivots Method (SPM) Small Pivots • In a rally, when we get 2 lower closes and lower lows, we get to mark Small Pivot High (sph) • In a decline, when we get 2 higher closes and higher highs, we get to mark Small Pivot Low (spl) ___________________________________...
4751efa3ee72bf6eb28600f8f2e3bdaf
{ "intermediate": 0.42009878158569336, "beginner": 0.22052794694900513, "expert": 0.3593732714653015 }
12,175
с++ unreal engine 4 montage end notify lambda
6a42012cfb77b830fd52a45509ea05ea
{ "intermediate": 0.24004994332790375, "beginner": 0.42950305342674255, "expert": 0.3304470181465149 }
12,176
请编tampermonkey脚本,对https://10.236.83.1:11080/#/done页面实现以下输出信息的一健复制功能。console.log(document.getElementsByClassName(‘ant-input ant-input-disabled’)[0]._value+’ ‘+document.getElementsByClassName(‘ant-input ant-input-disabled’)[1]._value+’ ‘+document.getElementsByClassName(‘ant-input ant-input-disabled’)[2]._value+’ ‘+docume...
3b7f34590416bf319c42818c3d1d7d03
{ "intermediate": 0.3327033817768097, "beginner": 0.37634095549583435, "expert": 0.29095566272735596 }
12,177
Write a script in react that uses antd tabs, this component has 3 tabs, hide the tab selector but always show the content, in the content put a button that selects the next tab until it reaches the last one
8a5447f46eb4cac8a75d61e4091ea7db
{ "intermediate": 0.44445765018463135, "beginner": 0.14497865736484528, "expert": 0.41056370735168457 }
12,178
I’m building a video game engine using C++ as the coding language and Vulkan for graphics. I am trying to set up a generic renderer using Vulkan that is flexible and will render objects based on a vector that is supplied to it. The renderer will also handle the creation of the window using GLFW and use GLM for all rele...
eb8e922a48a7c7390506960600439744
{ "intermediate": 0.35266053676605225, "beginner": 0.4519357681274414, "expert": 0.19540365040302277 }
12,179
ok = {32:'23'} for i in ok: print('give @s paper{CustomModelData:' + str(i) + ', display:{Name:'{"text":"' + i.get + '","color":"gray"}'}}') Где тут ошибка
d3aa5c99e1406e021d52c4fee611f862
{ "intermediate": 0.26717880368232727, "beginner": 0.5113997459411621, "expert": 0.2214214950799942 }
12,180
I’m building a video game engine using C++ as the coding language and Vulkan for graphics. I am trying to set up a generic renderer using Vulkan that is flexible and will render objects based on a vector that is supplied to it. The renderer will also handle the creation of the window using GLFW and use GLM for all rele...
83168388acaddab832839cbdc11cfd0c
{ "intermediate": 0.35266053676605225, "beginner": 0.4519357681274414, "expert": 0.19540365040302277 }
12,181
altera o script para usar pywin32 em vez de win32gui, dá erro, e imprime o resultado, além da janela windows, também no prompt: import whisper import pyaudio import wave import win32gui import time import threading import keyboard model = whisper.load_model("small") def transcribe(audio): # load audio and...
6460277e42c56be3fda4f1397d39c38f
{ "intermediate": 0.37711071968078613, "beginner": 0.4568836987018585, "expert": 0.16600559651851654 }
12,182
User hi I'm making a 2FA password set to an account using pyrogram script. from pyrogram import Client, filters from pyrogram.errors import YouBlockedUser,RPCError,FloodWait,ChatAdminRequired,PeerFlood,PeerIdInvalid,UserIdInvalid,UserPrivacyRestricted,UserRestricted,ChannelPrivate,UserNotMutualContact,PhoneNumberBann...
c78fd93eb4d78f30bf146891ec5131c3
{ "intermediate": 0.30630195140838623, "beginner": 0.3715924918651581, "expert": 0.3221055865287781 }
12,183
how do you define a function in python
ab9ccb076bee86c15e42d930034e507c
{ "intermediate": 0.26042550802230835, "beginner": 0.5592997670173645, "expert": 0.18027478456497192 }
12,184
I want to implement a moving average filter to a .mp3 file using c++, give a code where I can do that and also the command to compile it.
3eb017b26c5ac04fb09434e946f90863
{ "intermediate": 0.4652774930000305, "beginner": 0.11542080342769623, "expert": 0.41930171847343445 }
12,185
write me a script i can paste on terminal (macbook) to create in the desktop a folder called Loyer (Reçus) then in that folder, there will be folders from the year 2005 to the year 2022 included
9217409ce7f9ed6617562e96fb4893e4
{ "intermediate": 0.4057466387748718, "beginner": 0.207799032330513, "expert": 0.38645437359809875 }
12,186
can you explain to me operators in kotlin
91803fcd73caf5ba249a3cdd4f8ca64f
{ "intermediate": 0.3301781117916107, "beginner": 0.400253564119339, "expert": 0.2695682942867279 }
12,187
What libraries are needed for openg es to handle gamma correction, color range limitations, and color space?
b43ab9d6e59c959a9471c7b6fc2abfc4
{ "intermediate": 0.863027811050415, "beginner": 0.04831972345709801, "expert": 0.08865247666835785 }
12,188
Hi, I have to build a landing page html from a figma design
1fd87f593d5ce2c5bf3d0c2c41786969
{ "intermediate": 0.34995898604393005, "beginner": 0.3334715664386749, "expert": 0.3165695071220398 }
12,189
generate html contact form with modern ui which connects to nodejs back-end and a postgres db
81d9ad093b6905d96f09a57395822a10
{ "intermediate": 0.6868891716003418, "beginner": 0.13794070482254028, "expert": 0.17517006397247314 }
12,190
hi this code is giving me error Overload resolution ambiguity fun main() { val num = 5 if (num > 0 && num < 10) { println(“$num is between 0 and 10”) } else{ println("no") } }
c6e9736b9b04ae65770a0123e86f4a52
{ "intermediate": 0.3316895663738251, "beginner": 0.5815377235412598, "expert": 0.08677274733781815 }
12,191
if i have a python file located at "C:\Users\Piers\Desktop\Word Adjacency Networks\WAN.py" and i want to use cmd to run that file and print its output in a text file, how do i do that
dd52eb5f9064f58b860895e22d13271e
{ "intermediate": 0.4020075798034668, "beginner": 0.22743107378482819, "expert": 0.3705613911151886 }
12,192
best way to replicate an array in ue5 when a value in the array changes i want to make it's replicated to all clients correctly. How can I achieve this? This is my code.void UEquipmentComponent::OnRep_Equipment() { UE_LOG(LogTemp, Warning, TEXT("Has Authority %s"), (GetOwner()->HasAuthority() ? TEXT("true") : TEXT("fa...
ae1de93a2511fb930b4299fdae04e393
{ "intermediate": 0.4326036274433136, "beginner": 0.4220104217529297, "expert": 0.1453859508037567 }
12,193
hi, why do we have to use !! in readline() on kotlin?
38d6f54c4f907e526db7c03e04396318
{ "intermediate": 0.48376816511154175, "beginner": 0.30560076236724854, "expert": 0.2106311023235321 }
12,194
hi what's wrong with this code fun main() { println("enter the width of the rectangle") val widthInput = readLine()?.toInt() println("") println("enter the height of the rectangle") val heightInput = readLine()?.toInt() val area = widthInput * heightInput println("the area ...
ec7bd827d4333696770b614f9d09aeb5
{ "intermediate": 0.2783208191394806, "beginner": 0.5647478699684143, "expert": 0.1569313108921051 }
12,195
hi is this code wrong, i run it but im unable to input a number, the program will finish before im able to fun main() { println("enter the width of the rectangle") val widthInput = readLine()?.toInt() ?:0 println("") println("enter the height of the rectangle") val heightInput = readLine()?....
fdcd42214e2db26a35b9aeac19489c0d
{ "intermediate": 0.47971993684768677, "beginner": 0.3551084101200104, "expert": 0.16517165303230286 }
12,196
How to get annual dividend figures for HK stock yahoo finance python code
7dd5a16b3dbb90ddee881d67eff837b5
{ "intermediate": 0.34118688106536865, "beginner": 0.2760779857635498, "expert": 0.38273510336875916 }
12,197
hello
b4aa67dd02632173c8a0e095d30dd55d
{ "intermediate": 0.32064199447631836, "beginner": 0.28176039457321167, "expert": 0.39759764075279236 }
12,198
HI
efef6928db17607ae2c1a0d34933d30e
{ "intermediate": 0.32988452911376953, "beginner": 0.2611807882785797, "expert": 0.40893468260765076 }
12,199
Write a Python code which make a photo
00d7be0df5c564856585a58e0760d368
{ "intermediate": 0.3486185371875763, "beginner": 0.326985239982605, "expert": 0.32439619302749634 }
12,200
this inspector supports x-www-form-urlencode
f1d8ffcb2866bb4e4897fdfc4e31c056
{ "intermediate": 0.3972257077693939, "beginner": 0.296315997838974, "expert": 0.3064582943916321 }
12,201
Below is an implementation of a sequence model which can be used like transformer model for modeling language. I will ask something about this code later.
bca1acb57130c243d3bddcfea032f499
{ "intermediate": 0.32864445447921753, "beginner": 0.22998680174350739, "expert": 0.4413687288761139 }
12,202
Перепиши эту программу с процедурами или функциями: Program thirteen; const n = 3; type lesson=record vid:string[20]; naz:string[20]; fam:string[20]; end; type lessons = array[1..n] of lesson; var ls:lessons; chit:array[1..n] of string[20]; i,j,a,k,chital:integer; afam:string[20]; anaz:string[20]; f...
81e7cea57bc7a1b286177d8a49425a67
{ "intermediate": 0.3641125559806824, "beginner": 0.41595587134361267, "expert": 0.21993163228034973 }
12,203
hi how can i run kotlin on android studio, i mean in the log i dont want to run an apk
b34a62b1f5159468d3310b5c440cc2d8
{ "intermediate": 0.5407959818840027, "beginner": 0.1569046676158905, "expert": 0.3022993803024292 }
12,204
can you explain to me if, else, then in kotlin?
c6bf93b0dd5cf69824f952ed71971769
{ "intermediate": 0.30507850646972656, "beginner": 0.40033480525016785, "expert": 0.2945866882801056 }
12,205
I have 4 human face emotion classifier models implenet using mobilenet,resnet,shufflenet,squeezee net stored using .pth now I want to deploy this model using docker such that it takes images input and gives prediction output for different model which will be chosen by user (give steps with code to implement this)
6864114368c880a575a2be81f45db816
{ "intermediate": 0.3360995054244995, "beginner": 0.054164592176675797, "expert": 0.6097358465194702 }
12,206
Can you write sktipts for POSTMAN?
db50aa1971f8a901685dbac181946e2d
{ "intermediate": 0.6772778034210205, "beginner": 0.19071486592292786, "expert": 0.13200736045837402 }
12,207
public ResponseEntity<Distributions> getDistributionsV2( @Valid @UserProfileInject UserProfile userProfile, @AccountIdsMax @AccountIds @RequestHeader(value = "accountIds", required = false) Set<String> accountIds, @NotEmpty @ValidResourceType @RequestParam(value = "resourceType") Str...
e1c1e29aae1db96882735b21892383ae
{ "intermediate": 0.41421568393707275, "beginner": 0.4331359565258026, "expert": 0.15264840424060822 }
12,208
I have 4 human face emotion classifier models implenet using mobilenet,resnet,shufflenet,squeezee net stored using .pth now I want to deploy this model using docker such that it takes images input and gives prediction output for different model which will be chosen by user (give steps with code to implement this) the...
52a042f02f801d54248a8d453cdba1e6
{ "intermediate": 0.43975841999053955, "beginner": 0.34085214138031006, "expert": 0.21938946843147278 }
12,209
javascript, how to get the browser display height
a1a5a7da4efb2f23dbbd38836588cacc
{ "intermediate": 0.3432881832122803, "beginner": 0.3836483061313629, "expert": 0.2730635106563568 }
12,210
I have 4 human face emotion classifier models implenet using mobilenet,resnet,shufflenet,squeezee net stored using .pth now I want to deploy this model using huggingface such that it takes images input and gives prediction output for different model which will be chosen by user (give steps with code to implement this):...
81fa960469896cf118f913934ac70bcd
{ "intermediate": 0.3592894673347473, "beginner": 0.3509814143180847, "expert": 0.2897290587425232 }
12,211
Write a DJANGO web application that: enable Patient of an hospital to send a large zip file, associated with name and surname and patient ID to a central repository , enable a doctor to review all data inserted an can export data to local folder, and by pushing a button enable the execution of command on the zip file.
32fd503d90d37b58ff93a1fb6345e72f
{ "intermediate": 0.4313264489173889, "beginner": 0.09976406395435333, "expert": 0.46890950202941895 }
12,212
/ Round numbers in each row to two decimal places allData[row] = allData[row].map((cell) => { // Check if the cell value is a number if (!isNaN(parseFloat(cell))) { // Round the number to two decimal places return parseFloat(cell).toFixed(2); } return cell; }); i used this code to round ...
712dc653384e84e0f20b18d479db3ef3
{ "intermediate": 0.4898984134197235, "beginner": 0.3180355429649353, "expert": 0.19206605851650238 }
12,213
I used this code: import time from binance.client import Client from binance.enums import * from binance.exceptions import BinanceAPIException from binance.helpers import round_step_size import pandas as pd import json import numpy as np import pytz import datetime as dt import ccxt from decimal import Decimal import r...
0e3973cb098a7a1b86010fc950ba5660
{ "intermediate": 0.37491005659103394, "beginner": 0.40803396701812744, "expert": 0.217056006193161 }
12,215
in my webpage, have this element <div id="px">test</div>, when the user click a button, it will go to this element by <a href="#px">go</a>. Since there is a top men with height "100px", how to display this element and go down 100px
7e473e4e37f5ae3fb652cd4fa0394825
{ "intermediate": 0.4444443881511688, "beginner": 0.2345075011253357, "expert": 0.3210481107234955 }
12,216
Hi!
c9836393b5fbe09c0f66c96b78877087
{ "intermediate": 0.3230988085269928, "beginner": 0.2665199935436249, "expert": 0.4103812277317047 }
12,217
Hello!
9c1eb09ca234d4909704e7c73fc62aa7
{ "intermediate": 0.3194829821586609, "beginner": 0.26423266530036926, "expert": 0.41628435254096985 }
12,218
Transaction already closed: A batch query cannot be executed on a closed transavtion error from prisma when importing large data with nested batch queries
abd53ced0e9b37894bb9b5765f0e7a7e
{ "intermediate": 0.5463317036628723, "beginner": 0.1922435313463211, "expert": 0.2614246904850006 }
12,219
Groovy obtains the timestamp of the current time
aa23ccc2b3609ec2ab3c7b72d6365f8e
{ "intermediate": 0.4797695577144623, "beginner": 0.19978691637516022, "expert": 0.3204434812068939 }
12,220
user schema for db
827851aeff14c2e7d05ace23a478e7c9
{ "intermediate": 0.3153684735298157, "beginner": 0.3791898787021637, "expert": 0.305441677570343 }
12,221
You didn't continue your code : import time from binance.client import Client from binance.enums import * from binance.exceptions import BinanceAPIException from binance.helpers import round_step_size import pandas as pd import json import numpy as np import pytz import datetime as dt import ccxt from decimal import D...
204f267816a3b841049cb9e102c68a03
{ "intermediate": 0.441356360912323, "beginner": 0.38029319047927856, "expert": 0.17835037410259247 }
12,222
how to know the ECS bucket that has highest number of versions from the CLI
676eaaaeaf2e12090549aa1cbf0ab1d8
{ "intermediate": 0.3355388939380646, "beginner": 0.2855282723903656, "expert": 0.3789328336715698 }
12,223
please explain me how it works pcolormesh in python. I have a grid and what are the colors for every x,y cell?
58752ca8433015f126e5c8bc74d07052
{ "intermediate": 0.5815226435661316, "beginner": 0.11192411929368973, "expert": 0.3065532445907593 }
12,224
write a python3 script to reverse a linked list provided via commandline
2999a088a1d81c0759c0bdaeba553573
{ "intermediate": 0.4344910681247711, "beginner": 0.20303654670715332, "expert": 0.36247241497039795 }
12,226
class LSTMTagger(nn.Module): def __init__(self, embedding_dim, hidden_dim, vocab_size, tagset_size): super(LSTMTagger, self).__init__() self.hidden_dim = hidden_dim self.word_embeddings = nn.Embedding(vocab_size, embedding_dim) # The LSTM takes word embeddings as inputs, and outpu...
6a6ee05c8c57a46cf8901bdbd0f245c3
{ "intermediate": 0.4021318852901459, "beginner": 0.3054748475551605, "expert": 0.2923932671546936 }
12,227
Write a Python script for Windows 10 that prints all running processes and then allows the user to stop them or start new processes, or configure individual tasks. Do NOT use f-strings or Python modules that need to be installed separately (only use pre installed modules).
905af0a5dc848276b4b2651234bf834a
{ "intermediate": 0.5175010561943054, "beginner": 0.19365936517715454, "expert": 0.28883951902389526 }
12,228
帮我写一个tkinter程序 包含内容 1用户输入第一个数字位数 2 用户输入第二个数字位数 3 用户输入题目数量 4 用户输入校验答案位数 用户输入后提交跳转到 答题界面 题目根据上面用户输入的内容生成 并且提交后开始一个计时器 用户答题完毕后 再次点击提交 校验答案 并且把对错标记到每个输入框后 并且加上每题平均时间和总用时的显示
34451575c97c61d3a7813610a2a88581
{ "intermediate": 0.2666831314563751, "beginner": 0.30900946259498596, "expert": 0.4243074655532837 }
12,229
Write a c code to add 2 numbers
89bf7dfd45b747e5fe1e52e2f95b59ed
{ "intermediate": 0.30693453550338745, "beginner": 0.3137392997741699, "expert": 0.3793262243270874 }
12,230
when i use disctint in the manner below, i am missing people that once had many duplicates of, why?
3c5e06344c63da1ca7bbda68259131af
{ "intermediate": 0.44133487343788147, "beginner": 0.20458057522773743, "expert": 0.3540845215320587 }
12,231
I used this code: import time from binance.client import Client from binance.enums import * from binance.exceptions import BinanceAPIException from binance.helpers import round_step_size import pandas as pd import json import numpy as np import pytz import datetime as dt import ccxt from decimal import Decimal import r...
7cc32915689631e5f5a03e1533bd0d13
{ "intermediate": 0.34935256838798523, "beginner": 0.41441482305526733, "expert": 0.2362326830625534 }
12,232
import React from 'react'; import { yupResolver } from '@hookform/resolvers/yup'; import { isAfter, isBefore, isValid } from 'date-fns'; import { Controller, useForm } from 'react-hook-form'; import { useTranslation } from 'react-i18next'; import * as Yup from 'yup'; import { Button, DateTimePicker, MultiSelect } fro...
d68a91c71abe51b9bbab9d0bb3b51c76
{ "intermediate": 0.3849891424179077, "beginner": 0.49039435386657715, "expert": 0.12461655586957932 }
12,233
I need WebView example
036b4c8a6132b61544802b98f1dbd6bf
{ "intermediate": 0.44580528140068054, "beginner": 0.2954874038696289, "expert": 0.2587074041366577 }
12,234
#include "public.h" #include "key.h" #include "songdata.h" #include "reg52.h" #define Clk 0x070000 #define SMG_A_DP_PORT P0 //使用宏定义数码管段码口 #define RELOAD_COUNT 0xFA //宏定义波特率发生器的载入值 9600 unsigned char data val_H; //计数器高字节 unsigned char data val_L; //计数器低字节 //管脚定义 sbit BEEP=P2^5; //共阴极数码管显示0~F的段码数据 u8 gsmg_code[17]={0x...
df6d479b4eb0ac94f0e3fe3887327b7d
{ "intermediate": 0.37030264735221863, "beginner": 0.4311942160129547, "expert": 0.19850313663482666 }
12,235
HTML code to get the Picklist beside the primary Quote
f9db1b490ffb4456e13f0d0f836cbb78
{ "intermediate": 0.3554913401603699, "beginner": 0.36410167813301086, "expert": 0.2804069519042969 }
12,236
$commit doesnt exist on transaction client error , how do i add $commit when setting up transaction client
77b0225e4e3651f85e6022910288250c
{ "intermediate": 0.568166971206665, "beginner": 0.20274509489536285, "expert": 0.22908787429332733 }
12,237
explain dynamic programming in dart code snippets
a7beef1d8e753e6422ea2c9ca80c5aab
{ "intermediate": 0.27016210556030273, "beginner": 0.33140555024147034, "expert": 0.39843231439590454 }
12,238
I have matrix Called B with 26 row and 122 columns , I want the data in row of 16 change by Data of row 12 in every columns. write the code for matlab
19ed6804e7d3702d00c33854a8689103
{ "intermediate": 0.5057079195976257, "beginner": 0.18164916336536407, "expert": 0.3126428723335266 }
12,239
how do I upload a bond trade in simcorp dimension
960285d9cce37ad4a0ea0d6a7bb5ce75
{ "intermediate": 0.3715744614601135, "beginner": 0.1814032793045044, "expert": 0.4470222294330597 }
12,240
Can we copy blob content from one database server to another database server table ?
f5a9d889bae5bb42473cfd8b43df2f53
{ "intermediate": 0.3828977644443512, "beginner": 0.26934006810188293, "expert": 0.34776222705841064 }
12,241
please suggest prompts, used to Act as a Software Tester who has excellent experience about software testing and generate UAT cases according to user requirements.
9d0091ebed30081f5f1eacd4c42105fc
{ "intermediate": 0.3661326766014099, "beginner": 0.3590255081653595, "expert": 0.27484187483787537 }
12,242
I have a div like this: <div id="btn-category-group" style="height:420px;"> .... </div> I will use jquery to change the css height:fit-content. So, the height of div will extend to appropiate height based on the content of div. I will it will extend with animation effect.
d1d33aca8092a556857aec4a06539172
{ "intermediate": 0.43347230553627014, "beginner": 0.2857285439968109, "expert": 0.28079912066459656 }
12,243
import { RenderResult, act, screen, waitFor } from '@testing-library/react'; import userEvent from '@testing-library/user-event'; import { mockIpmaClient } from 'api/Client/ClientMock'; import { MarketCardVoidByTimeRange } from 'components/manualActions'; import { manualActionsEndpoints } from 'constants/manualActions...
c82123676ef5b33e7cfd66814a1efac4
{ "intermediate": 0.39765337109565735, "beginner": 0.47864848375320435, "expert": 0.12369812279939651 }
12,244
lockdown cron job linux
ae535c31f6eff5b1c12f5714f1d7879a
{ "intermediate": 0.3584286570549011, "beginner": 0.3111704885959625, "expert": 0.3304007649421692 }
12,245
В плеере (audio player) Кнопка play не работает, прогресс-бар не работает. Элементы плеера должны быть скрыты до тех пор на них не будет наведен курсор на карточку/обложку index: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta content="width=device-width, initial-scale=1.0" name="viewport"> <me...
426a18d3f9aaf224277733082cca558a
{ "intermediate": 0.25799572467803955, "beginner": 0.5962821841239929, "expert": 0.14572201669216156 }
12,246
generate html landing page for "automatic code generation" with modern ui
7462d2b483401b6f1482774dec80a1c8
{ "intermediate": 0.3108541667461395, "beginner": 0.2161998301744461, "expert": 0.47294607758522034 }
12,247
Error --- PrismaClientKnownRequestError: Invalid `tx.interpolatedQuote.create()` invocation in /home/user/Documents/projects-r/360-dev/ess-backend/ess-backend/src/Controllers/StatisticianController.ts:1085:39 1082 1083 if (quoteId) { 1084 acc.push( → 1085 tx.interpolatedQuote.create( Transaction API err...
47c8969fadb4d8884909dfe67953089b
{ "intermediate": 0.5924493074417114, "beginner": 0.21345719695091248, "expert": 0.1940934956073761 }
12,248
Есть код сервера на java. Но что если клиент пришлет файл больше, чем может вместить в себя буфер сервера? Исправь код так, чтобы эта проблема решалась корректно package serverUtils; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.net.InetSocketAddress; import java.nio.Byt...
34dc49ceffe07de39a54cf899ed37c9a
{ "intermediate": 0.3445409834384918, "beginner": 0.44155725836753845, "expert": 0.21390168368816376 }
12,249
using ReactJS get the user Ip address and Mac address and post them with a form submission to the asp.net core backend
e115ab437bd71ecfcd06010961bb266e
{ "intermediate": 0.5354111194610596, "beginner": 0.1749803125858307, "expert": 0.28960859775543213 }
12,250
tell me a programming joke
d4f01b7b70dc9307ff4aedac2cd0a0f9
{ "intermediate": 0.24252457916736603, "beginner": 0.29295438528060913, "expert": 0.46452105045318604 }
12,251
from flask import Flask, current_app, render_template from flask_sqlalchemy import SQLAlchemy from flask_admin import Admin from flask_admin.contrib.sqla import ModelView from flask_basicauth import BasicAuth from flask_httpauth import HTTPBasicAuth from werkzeug.security import generate_password_hash, check_password_h...
6a0b0e71ddb9ffe343e353597d60835a
{ "intermediate": 0.3393853008747101, "beginner": 0.5057823061943054, "expert": 0.15483231842517853 }
12,252
How do websockets work?
9b782f70a895c938160e29d49e1aeece
{ "intermediate": 0.2684578001499176, "beginner": 0.23296374082565308, "expert": 0.49857842922210693 }
12,253
这个vba的语法错误在哪 If sourceSheet.Cells(i, 50).Value = "" Then: kehu = sourceSheet.Cells(i, 40).Value Else: kehu = sourceSheet.Cells(i, 50).Value
af5279f37502c3ba385e9e98beef1f5c
{ "intermediate": 0.3589250445365906, "beginner": 0.42457064986228943, "expert": 0.21650438010692596 }
12,254
make a dockerfile for hosting a S3 container
559d49c2d6fd43bbc840efc2f9cf1456
{ "intermediate": 0.40038561820983887, "beginner": 0.2466168850660324, "expert": 0.3529975414276123 }