<div class="text-justify"> <center><h2>My Coding Quiz #50 👨💻🛠️🧩</h2></center> <p>Welcome to the new installment of my series of <b>Coding Quizzes</b>, in which you will be able to test your knowledge and skills about programming and software development in a simple and fun way. If you want to learn more about it visit <a href="/@eniolw">my blog</a> here on Hive and the <a href="/@eniolw/my-coding-quiz-1">first post</a> where I introduced it.</p> <h3>Without further ado, here's the riddle...</h3> <br> <center> <img src="https://images.ecency.com/DQmVn5KJfaGwdhMbEaqSZJoCifJ2nQBkudb3VaTrcSpFLyA/imagen.png" alt="Quiz"> <h6>By @eniolw</h6> </center> <br><center><h3>What's your choice?</h3></center> <p><b>Solution to the <a href="/@eniolw/my-coding-quiz-49">previous quiz</a>:</b> <b>None</b>. This quiz is a small nod to one of my favourite games after chess: The Legend of Zelda. First we define two sets: <code>player1</code> and <code>player2</code>, each containing titles from famous video games of this franchise.</p> <p>However, it is in line 10 where we see the heart of the matter: <code>played = player1.intersection_update(player2)</code>. What the <code>intersection_update</code> method does is to select the common elements of both sets and overwrite the first one with those elements. So, if we print the content of <code>player1</code> we will see that it consists of <b>{"Majora's Mask"}</b>, as it is the only element that both sets have in common.</p> <p>Now, don't be confused by the way the two common strings were hardcoded in the script: <code>"Majoras's Mask"</code> (line 3) is exactly the same as <code>'Majora\'s Mask'</code> (line 8), because in the second one, the backslash followed by <code>'</code> is one of the many Python escape sequences and serves to use that character inside a string delimited with that same character, making the notation legal.</p> <p>But why <code>played</code> is <b>None</b> then? Because contrary to what you might think, the <code>intersection_update</code> method does not return a new set, but just updates one of the existing sets, so that method actually returns <b>None</b>. This is a misleading use, but not in vain, as it is a way to make a potential error explicit.</p> <p>Majoras's Mask, by the way, is my favourite of all the Zelda games I've played. How about you?</p> <hr> <p>If you want to blog about computer science and programming content, I invite you to join <a href="/">Hive</a> and participate in its communities, such as <a href="/created/hive-196387">STEM-social</a>, <a href="/created/hive-154226">Develop Spanish</a>, <a href="/created/hive-169321">Programming & Dev</a> and others.</p> <hr> <center><h2>Mi Quiz de Programación #50 👨💻🛠️🧩</h2></center> <p>Bienvenido a mi nueva serie de <b>Quizzes de Programación</b>, en la cual podrás poner a prueba tus conocimientos y habilidades sobre programación y desarrollo de software de una manera sencilla y divertida. Si quieres aprender más sobre ella visita <a href="/@eniolw">mi blog</a> aquí en Hive y el <a href="/@eniolw/my-coding-quiz-1">primer post</a> donde la presenté.</p> <h3>Sin más preámbulos, he aquí el acertijo...</h3> <br> <center> <img src="https://images.ecency.com/DQmPF3Qs7s2X4sSLS5Rq3VHwFpiM1CKcRjJRqUhm72S2HV6/imagen.png" alt="Quiz"> <h6>Por @eniolw</h6> </center> <br><center><h3>¿Cuál es tu elección?</h3></center> <p><b>Solución al <a href="/@eniolw/my-coding-quiz-49">quiz anterior</a>:</b> <b>None</b>. Este quiz es un pequeño guiño a uno de mis juegos favoritos después del ajedrez: The Legend of Zelda. Primero definimos dos conjuntos: <code>player1</code> y <code>player2</code>, cada uno de los cuales contiene títulos de videojuegos famosos de esta franquicia.</p> <p>Sin embargo, es en la línea 10 donde vemos el meollo del asunto: <code>played = player1.intersection_update(player2)</code>. Lo que hace el método <code>intersection_update</code> es seleccionar los elementos comunes de ambos conjuntos y sobrescribir el primero con esos elementos. Entonces, si imprimimos el contenido de <code>player1</code> veremos que consta de <b>{"Majora's Mask"}</b>, ya que es el único elemento que ambos conjuntos tienen en común. </p> <p>Ahora bien, no te dejes confundir por la forma en que las dos cadenas comunes estaban codificadas en el script: <code>"Majoras's Mask"</code> (línea 3) es exactamente igual que <code>'Majora\'s Mask'</code> (línea 8), porque en la segunda, la barra invertida seguida de <code>'</code> es una de las muchas secuencias de escape de Python y sirve para usar ese carácter dentro de una cadena delimitada con ese mismo carácter, lo que hace que la notación sea legal.</p> <p>Pero ¿por qué entonces <code>played</code> es <b>None</b>? Porque, contrariamente a lo que podría pensar, el método <code>intersection_update</code> no devuelve un nuevo conjunto, sino que simplemente actualiza uno de los conjuntos existentes, por lo que ese método en realidad devuelve <b>None</b>. Este es un uso engañoso, pero no en vano, ya que es una forma de hacer explícito un posible error.</p> <p>Majoras's Mask, por cierto, es mi favorito de todos los juegos de Zelda que he jugado. ¿Y tú?</p> <hr> <p>Si quieres bloguear sobre contenido informático y de programación, te invito a unirte a <a href="/">Hive</a> y participar en sus comunidades, tales como <a href="/created/hive-196387">STEM-social</a>, <a href="/created/hive-154226">Develop Spanish</a>, <a href="/created/hive-169321">Programming & Dev</a> y otras.</p> </div>
author | eniolw |
---|---|
permlink | my-coding-quiz-50 |
category | hive-197685 |
json_metadata | "{"image":["https://images.ecency.com/DQmVn5KJfaGwdhMbEaqSZJoCifJ2nQBkudb3VaTrcSpFLyA/imagen.png","https://images.ecency.com/DQmPF3Qs7s2X4sSLS5Rq3VHwFpiM1CKcRjJRqUhm72S2HV6/imagen.png"],"tags":["hive-197685","programming","coding","python","quiz","zelda","crypto","neoxian","proofofbrain","creativecoin","spanish"],"description":"My Coding Quiz #50 Welcome to the new installment of my series of Coding Quizzes, in which you will be able to test your knowledge and skills about programming and software development in a fun way.","app":"ecency/3.1.0-vision","format":"markdown+html","image_ratios":["1.0776","1.0776"]}" |
created | 2024-03-06 18:17:36 |
last_update | 2024-03-06 18:17:36 |
depth | 0 |
children | 1 |
last_payout | 2024-03-13 18:17:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 6.670 HBD |
curator_payout_value | 6.532 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,539 |
author_reputation | 255,504,196,782,418 |
root_title | "My Coding Quiz #50" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 131,848,964 |
net_rshares | 22,724,884,058,493 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drifter1 | 0 | 1,043,393,542 | 2.8% | ||
flemingfarm | 0 | 7,424,933,766 | 1.4% | ||
kevinwong | 0 | 5,858,774,667 | 2.8% | ||
justtryme90 | 0 | 1,377,620,493 | 70% | ||
eric-boucher | 0 | 15,354,601,725 | 2.8% | ||
juanmiguelsalas | 0 | 1,166,233,437 | 1.68% | ||
thecryptodrive | 0 | 51,570,377,302 | 1.12% | ||
kaylinart | 0 | 9,552,016,245 | 2.8% | ||
good-karma | 0 | 43,541,756,714 | 4% | ||
roelandp | 0 | 373,127,859,011 | 35% | ||
cloh76 | 0 | 4,031,959,643 | 2.8% | ||
nascimentoab | 0 | 606,395,540 | 2.8% | ||
joshglen | 0 | 725,332,772 | 5.6% | ||
rmach | 0 | 5,001,797,100 | 35% | ||
lemouth | 0 | 1,891,004,825,894 | 70% | ||
alaqrab | 0 | 565,536,838 | 2.8% | ||
lamouthe | 0 | 5,586,449,543 | 70% | ||
tfeldman | 0 | 5,498,562,168 | 2.8% | ||
seckorama | 0 | 7,833,380,130 | 3% | ||
metabs | 0 | 7,892,730,668 | 70% | ||
mcsvi | 0 | 148,710,911,532 | 50% | ||
lk666 | 0 | 2,086,317,095 | 2.8% | ||
cnfund | 0 | 12,059,979,218 | 5.6% | ||
boxcarblue | 0 | 12,439,942,672 | 2.8% | ||
justyy | 0 | 38,061,595,814 | 5.6% | ||
michelle.gent | 0 | 3,100,539,173 | 1.12% | ||
curie | 0 | 366,943,852,318 | 5.6% | ||
modernzorker | 0 | 4,031,440,341 | 3.92% | ||
techslut | 0 | 186,401,747,128 | 28% | ||
frankches | 0 | 1,509,217,521 | 24% | ||
steemstem | 0 | 1,296,408,648,731 | 70% | ||
dashfit | 0 | 479,542,448 | 2.8% | ||
tristancarax | 0 | 699,939,727 | 2.8% | ||
edb | 0 | 6,166,210,908 | 7% | ||
esteemapp | 0 | 10,696,820,493 | 4% | ||
bigtakosensei | 0 | 1,823,375,803 | 1.4% | ||
walterjay | 0 | 470,473,222,596 | 35% | ||
metroair | 0 | 27,940,073,058 | 5.6% | ||
saleg25 | 0 | 569,909,634 | 2.8% | ||
driptorchpress | 0 | 2,213,750,227 | 1.4% | ||
sardrt | 0 | 1,237,057,024 | 10% | ||
dna-replication | 0 | 2,744,070,695 | 70% | ||
boynashruddin | 0 | 853,048,378 | 5.6% | ||
steemiteducation | 0 | 1,472,228,217 | 2.8% | ||
dhimmel | 0 | 371,739,950,686 | 17.5% | ||
oluwatobiloba | 0 | 1,965,762,762 | 70% | ||
detlev | 0 | 28,905,754,109 | 1.68% | ||
chasmic-cosm | 0 | 856,035,263 | 2.8% | ||
dune69 | 0 | 671,993,966 | 5.6% | ||
lugaxker | 0 | 823,566,558 | 34.65% | ||
federacion45 | 0 | 8,681,334,324 | 2.8% | ||
amberyooper | 0 | 688,652,680 | 2.8% | ||
gamersclassified | 0 | 4,852,023,545 | 2.8% | ||
forykw | 0 | 14,115,297,983 | 2.8% | ||
xplosive | 0 | 22,789,842,383 | 75% | ||
mobbs | 0 | 183,674,668,430 | 70% | ||
eliel | 0 | 15,378,588,288 | 5.6% | ||
jerrybanfield | 0 | 18,264,207,171 | 5.6% | ||
rt395 | 0 | 2,090,748,316 | 1.5% | ||
bitrocker2020 | 0 | 11,367,503,164 | 1.12% | ||
sustainablyyours | 0 | 20,439,101,598 | 35% | ||
erick1 | 0 | 34,216,488,798 | 80% | ||
arunava | 0 | 15,220,491,927 | 2.24% | ||
schoolforsdg4 | 0 | 1,074,081,415 | 5% | ||
samminator | 0 | 49,877,886,374 | 35% | ||
drwom | 0 | 835,520,076 | 2% | ||
zerotoone | 0 | 1,123,369,029 | 2.8% | ||
enjar | 0 | 46,222,823,165 | 5.04% | ||
mahdiyari | 0 | 466,509,984,236 | 80% | ||
lorenzor | 0 | 1,356,782,769 | 50% | ||
sam99 | 0 | 12,029,486,504 | 21% | ||
aboutyourbiz | 0 | 1,104,679,555 | 5.6% | ||
amimohan | 0 | 4,722,395,513 | 100% | ||
alexander.alexis | 0 | 43,013,139,769 | 70% | ||
dandesign86 | 0 | 16,480,214,875 | 8% | ||
deanlogic | 0 | 1,434,620,988 | 2.8% | ||
techken | 0 | 1,141,828,091 | 1.4% | ||
finkistinger | 0 | 935,138,066 | 2.8% | ||
liuke96player | 0 | 0 | 25% | ||
princessmewmew | 0 | 7,998,957,770 | 2.8% | ||
grapthar | 0 | 1,268,691,016 | 4.2% | ||
joeyarnoldvn | 0 | 470,504,160 | 1.47% | ||
diabolika | 0 | 1,031,071,122 | 2.8% | ||
ufv | 0 | 3,006,808,420 | 50% | ||
gunthertopp | 0 | 77,783,501,562 | 1.4% | ||
empath | 0 | 4,312,988,675 | 2.8% | ||
minnowbooster | 0 | 872,766,372,208 | 20% | ||
howo | 0 | 2,029,016,561,425 | 70% | ||
tsoldovieri | 0 | 7,432,402,644 | 35% | ||
neumannsalva | 0 | 4,981,006,130 | 2.8% | ||
stayoutoftherz | 0 | 155,780,792,633 | 1.4% | ||
abigail-dantes | 0 | 25,950,038,435 | 70% | ||
coindevil | 0 | 3,045,236,152 | 4.48% | ||
zonguin | 0 | 3,777,018,981 | 17.5% | ||
mhel | 0 | 475,210,149 | 1.12% | ||
investingpennies | 0 | 19,520,583,577 | 5.6% | ||
martibis | 0 | 3,038,737,904 | 1.68% | ||
val.halla | 0 | 2,869,753,262 | 10% | ||
redrica | 0 | 2,075,511,798 | 2.8% | ||
pepskaram | 0 | 594,251,943 | 2.8% | ||
iamphysical | 0 | 1,695,865,854 | 90% | ||
dipom98 | 0 | 1,192,513,142 | 2.8% | ||
zest | 0 | 1,013,972,896 | 35% | ||
zyx066 | 0 | 3,004,527,298 | 1.68% | ||
chrisdavidphoto | 0 | 1,270,858,288 | 1.68% | ||
revo | 0 | 11,997,356,290 | 5.6% | ||
htotoo | 0 | 3,002,360,311 | 100% | ||
azulear | 0 | 1,700,690,461 | 100% | ||
psicoluigi | 0 | 859,046,046 | 50% | ||
risckylu | 0 | 928,955,218 | 24% | ||
wilians | 0 | 548,137,818 | 35% | ||
rocky1 | 0 | 823,700,015,872 | 0.84% | ||
stickchumpion | 0 | 1,012,888,326 | 2.8% | ||
thelordsharvest | 0 | 4,481,523,087 | 5.6% | ||
aidefr | 0 | 7,467,323,158 | 35% | ||
torico | 0 | 1,523,883,086 | 1.84% | ||
therealwolf | 0 | 29,464,385,871 | 2.8% | ||
fatman | 0 | 9,060,518,254 | 2% | ||
minnowpowerup | 0 | 801,866,865 | 2.8% | ||
cryptononymous | 0 | 1,990,734,949 | 2.8% | ||
dauerossi | 0 | 21,433,013,727 | 100% | ||
meno | 0 | 29,317,094,212 | 2.8% | ||
buttcoins | 0 | 2,276,502,171 | 1.12% | ||
hanggggbeeee | 0 | 453,552,708 | 2.8% | ||
esteem.app | 0 | 1,417,763,350 | 4% | ||
technicalside | 0 | 22,542,809,478 | 25% | ||
steemed-proxy | 0 | 1,205,336,625,521 | 5.6% | ||
fatkat | 0 | 1,495,525,549 | 2.79% | ||
investegg | 0 | 2,903,702,024 | 1.8% | ||
doifeellucky | 0 | 744,214,166 | 2.8% | ||
peaceandwar | 0 | 881,593,823 | 2.8% | ||
bhoa | 0 | 1,481,665,767 | 35% | ||
enzor | 0 | 2,294,966,847 | 35% | ||
marcoriccardi | 0 | 1,097,211,480 | 5.6% | ||
bartosz546 | 0 | 3,556,476,549 | 2.8% | ||
tazbaz | 0 | 565,851,238 | 2.8% | ||
florian-glechner | 0 | 6,459,041,238 | 0.56% | ||
marleyn | 0 | 1,649,377,777 | 24% | ||
battebilly | 0 | 782,238,854 | 2.8% | ||
caladan | 0 | 681,251,057 | 5.6% | ||
dejan.vuckovic | 0 | 762,484,109 | 1.12% | ||
alvinauh | 0 | 1,289,332,793 | 30% | ||
lottje | 0 | 612,414,932 | 70% | ||
myach | 0 | 1,035,757,812 | 4.48% | ||
sunsea | 0 | 4,625,820,506 | 2.8% | ||
eonwarped | 0 | 211,943,580,647 | 30% | ||
postpromoter | 0 | 1,660,335,893,736 | 70% | ||
mejustandrew | 0 | 834,268,671 | 2.8% | ||
omstavan | 0 | 3,740,571,490 | 50% | ||
bluefinstudios | 0 | 3,659,897,973 | 1.68% | ||
steveconnor | 0 | 5,072,499,020 | 2.8% | ||
sankysanket18 | 0 | 1,706,408,245 | 35% | ||
dbddv01 | 0 | 2,582,433,217 | 17.5% | ||
zmx | 0 | 613,336,248 | 2.8% | ||
skippyza | 0 | 484,119,872 | 5.6% | ||
nicole-st | 0 | 599,500,465 | 2.8% | ||
smartsteem | 0 | 135,832,538,036 | 2.8% | ||
smitop | 0 | 10,877,120,644 | 100% | ||
aboutcoolscience | 0 | 383,447,296,093 | 70% | ||
elisonr13 | 0 | 2,332,103,556 | 12% | ||
afifa | 0 | 661,861,068 | 10% | ||
amestyj | 0 | 92,821,256,453 | 100% | ||
sandracarrascal | 0 | 508,555,265 | 50% | ||
kenadis | 0 | 19,239,997,170 | 70% | ||
bebeomega | 0 | 864,512,799 | 2.8% | ||
madridbg | 0 | 34,155,302,116 | 70% | ||
robotics101 | 0 | 21,058,859,401 | 70% | ||
marcolino76 | 0 | 690,521,991 | 2.8% | ||
onemedia | 0 | 1,176,823,489 | 5.6% | ||
lpv | 0 | 3,047,238,712 | 8.75% | ||
auleo | 0 | 496,829,577 | 0.8% | ||
apon318 | 0 | 530,061,851 | 5.6% | ||
tomatom | 0 | 480,709,629 | 2.8% | ||
danaedwards | 0 | 745,758,509 | 5.6% | ||
r00sj3 | 0 | 9,735,381,259 | 2.8% | ||
sco | 0 | 22,428,271,036 | 70% | ||
ennyta | 0 | 993,997,127 | 50% | ||
juecoree | 0 | 3,148,966,992 | 49% | ||
gordon92 | 0 | 884,051,762 | 2.8% | ||
stahlberg | 0 | 1,290,047,478 | 2.8% | ||
gabrielatravels | 0 | 2,204,377,650 | 1.96% | ||
cordeta | 0 | 1,072,373,953 | 5.6% | ||
reizak | 0 | 498,030,165 | 2.24% | ||
eliaschess333 | 0 | 13,672,821,489 | 100% | ||
branbello | 0 | 1,373,196,130 | 35% | ||
hetty-rowan | 0 | 3,100,845,813 | 2.8% | ||
ydavgonzalez | 0 | 2,025,670,851 | 10% | ||
intrepidphotos | 0 | 18,078,472,656 | 52.5% | ||
fineartnow | 0 | 4,122,527,007 | 2.8% | ||
hijosdelhombre | 0 | 45,629,901,715 | 40% | ||
mathowl | 0 | 31,946,431,969 | 100% | ||
bobydimitrov | 0 | 504,922,961 | 4.2% | ||
yoghurt | 0 | 1,079,364,427 | 5.6% | ||
steemvault | 0 | 2,298,642,332 | 5.6% | ||
steem4all | 0 | 842,782,302 | 2.8% | ||
communitybank | 0 | 3,740,940,240 | 5.6% | ||
shinedojo | 0 | 707,806,896 | 5.6% | ||
fragmentarion | 0 | 16,406,327,318 | 70% | ||
utube | 0 | 3,868,598,433 | 5.6% | ||
jigstrike | 0 | 931,582,587 | 2.8% | ||
steemboat-steve | 0 | 798,809,242 | 2.8% | ||
neneandy | 0 | 6,479,665,665 | 5.6% | ||
pab.ink | 0 | 723,305,752 | 35% | ||
marc-allaria | 0 | 3,673,222,646 | 2.8% | ||
real2josh | 0 | 661,181,182 | 35% | ||
sportscontest | 0 | 5,501,661,824 | 5.6% | ||
videosteemit | 0 | 936,281,306 | 5.6% | ||
pandasquad | 0 | 15,232,239,016 | 5.6% | ||
tobias-g | 0 | 9,640,677,572 | 5% | ||
leoumesh | 0 | 961,185,939 | 35% | ||
lunaticpandora | 0 | 620,167,505 | 10.8% | ||
cherryng | 0 | 503,654,903 | 0.8% | ||
kingabesh | 0 | 1,426,328,462 | 35% | ||
miguelangel2801 | 0 | 796,864,349 | 50% | ||
mproxima | 0 | 2,643,692,895 | 2.8% | ||
fantasycrypto | 0 | 3,862,261,516 | 5.6% | ||
didic | 0 | 1,940,579,127 | 2.8% | ||
emiliomoron | 0 | 6,502,711,533 | 35% | ||
galam | 0 | 662,721,006 | 24.5% | ||
dexterdev | 0 | 2,887,818,712 | 35% | ||
photohunt | 0 | 4,038,226,752 | 5.6% | ||
geopolis | 0 | 4,683,996,982 | 70% | ||
ajfernandez | 0 | 773,239,357 | 100% | ||
robertbira | 0 | 7,583,457,039 | 17.5% | ||
atomcollector | 0 | 1,852,212,294 | 1.4% | ||
alexdory | 0 | 8,869,589,664 | 70% | ||
takowi | 0 | 1,304,772,222 | 5.6% | ||
irgendwo | 0 | 23,259,564,673 | 5.6% | ||
vegan.niinja | 0 | 530,967,687 | 2.8% | ||
charitybot | 0 | 5,183,612,071 | 100% | ||
cyprianj | 0 | 35,950,124,450 | 35% | ||
kieranstone | 0 | 1,657,526,050 | 1.84% | ||
bernardino | 0 | 705,837,940 | 2.8% | ||
melvin7 | 0 | 110,775,359,174 | 35% | ||
francostem | 0 | 9,754,242,673 | 70% | ||
russellstockley | 0 | 1,635,899,099 | 1.4% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
croctopus | 0 | 1,570,410,912 | 100% | ||
jjerryhan | 0 | 5,641,483,485 | 2.8% | ||
michelmake | 0 | 45,488,359,318 | 25% | ||
zipporah | 0 | 2,754,016,782 | 1.12% | ||
leomarylm | 0 | 2,146,609,802 | 2.8% | ||
superlotto | 0 | 13,980,314,395 | 5.6% | ||
positiveninja | 0 | 1,153,388,361 | 2.8% | ||
foxyspirit | 0 | 582,643,556 | 2.8% | ||
vonaurolacu | 0 | 1,653,030,631 | 2.8% | ||
movingman | 0 | 564,833,741 | 20% | ||
delpilar | 0 | 934,959,443 | 25% | ||
scottshots | 0 | 658,734,524 | 0.28% | ||
tomastonyperez | 0 | 17,118,554,130 | 50% | ||
bil.prag | 0 | 2,512,558,010 | 0.28% | ||
elvigia | 0 | 11,205,953,322 | 50% | ||
sanderjansenart | 0 | 5,522,024,645 | 2.8% | ||
comidinhas | 0 | 694,551,067 | 100% | ||
vittoriozuccala | 0 | 1,393,055,269 | 2.8% | ||
laxam | 0 | 5,545,605,036 | 100% | ||
koenau | 0 | 959,039,547 | 2.8% | ||
qberry | 0 | 4,024,023,135 | 2.8% | ||
frissonsteemit | 0 | 1,288,490,870 | 2.8% | ||
broncofan99 | 0 | 10,130,945,805 | 20% | ||
flyerchen | 0 | 1,334,522,440 | 2.8% | ||
juanmanuellopez1 | 0 | 727,544,455 | 19.2% | ||
melbourneswest | 0 | 1,022,854,427 | 2.8% | ||
ryenneleow | 0 | 6,637,630,749 | 90% | ||
gadrian | 0 | 494,404,203,039 | 52.5% | ||
c0wtschpotato | 0 | 603,336,656 | 2.8% | ||
therising | 0 | 103,603,410,731 | 5.6% | ||
jordangerder | 0 | 2,397,005,531 | 12% | ||
cryptocoinkb | 0 | 2,235,332,895 | 2.8% | ||
gifty-e | 0 | 507,170,029 | 80% | ||
scruffy23 | 0 | 20,039,667,812 | 50% | ||
de-stem | 0 | 38,664,440,870 | 69.3% | ||
serylt | 0 | 3,236,575,900 | 68.6% | ||
me2selah | 0 | 897,041,433 | 2.8% | ||
josedelacruz | 0 | 4,934,736,747 | 50% | ||
dracrow | 0 | 3,250,090,781 | 9.6% | ||
quochuy | 0 | 370,847,080,615 | 5.83% | ||
kgakakillerg | 0 | 19,218,897,116 | 10% | ||
charitymemes | 0 | 534,493,884 | 100% | ||
mariusfebruary | 0 | 721,458,061 | 2.24% | ||
outtheshellvlog | 0 | 900,644,291 | 2.8% | ||
sawyn | 0 | 664,157,771 | 2.8% | ||
we-are-one | 0 | 254,982,233 | 27.3% | ||
erickyoussif | 0 | 803,906,893 | 100% | ||
michaelwrites | 0 | 932,338,427 | 35% | ||
indigoocean | 0 | 1,182,967,540 | 2.8% | ||
primersion | 0 | 396,638,112,720 | 20% | ||
deholt | 0 | 4,096,036,813 | 59.5% | ||
anneporter | 0 | 2,741,269,934 | 21% | ||
celinavisaez | 0 | 10,427,437,612 | 30% | ||
steem.services | 0 | 1,073,618,485 | 1.12% | ||
crystalhuman | 0 | 683,645,106 | 70% | ||
pladozero | 0 | 29,949,042,735 | 10% | ||
minerthreat | 0 | 3,895,261,015 | 2.8% | ||
temitayo-pelumi | 0 | 6,629,701,408 | 70% | ||
andrick | 0 | 866,365,209 | 50% | ||
doctor-cog-diss | 0 | 68,456,706,181 | 70% | ||
dailyspam | 0 | 15,406,479,299 | 20% | ||
trisolaran | 0 | 1,572,957,951 | 2.8% | ||
marcuz | 0 | 2,311,049,241 | 35% | ||
acont | 0 | 6,168,697,735 | 50% | ||
uche-nna | 0 | 6,991,800,810 | 4.48% | ||
drawmeaship | 0 | 1,292,417,782 | 50% | ||
citizendog | 0 | 4,693,343,892 | 5.6% | ||
we-are-lucky | 0 | 246,142,587 | 0.7% | ||
cheese4ead | 0 | 4,844,901,179 | 2.8% | ||
jd4e | 0 | 3,739,870,996 | 50% | ||
mafufuma | 0 | 1,117,466,570 | 1% | ||
apshamilton | 0 | 13,325,879,772 | 0.7% | ||
carolinaelly | 0 | 2,649,921,024 | 100% | ||
nattybongo | 0 | 116,555,223,298 | 70% | ||
drsensor | 0 | 1,573,989,676 | 56% | ||
steemulant | 0 | 88,160,184 | 5.83% | ||
revueh | 0 | 2,030,442,924 | 35% | ||
ilovecryptopl | 0 | 930,034,634 | 4.48% | ||
purelyscience | 0 | 536,710,580 | 35% | ||
bflanagin | 0 | 3,024,248,567 | 2.8% | ||
ubaldonet | 0 | 4,021,424,563 | 100% | ||
armandosodano | 0 | 3,991,062,872 | 2.8% | ||
yourmind | 0 | 2,344,974,401 | 100% | ||
csy | 0 | 7,195,588,710 | 2.8% | ||
hamismsf | 0 | 4,332,055,878 | 0.7% | ||
thales7 | 0 | 649,914,941 | 5.6% | ||
zuerich | 0 | 375,159,129,701 | 10% | ||
reinaseq | 0 | 8,010,228,834 | 100% | ||
vixmemon | 0 | 1,720,471,906 | 4.2% | ||
yaelg | 0 | 1,129,523,976 | 1.68% | ||
kylealex | 0 | 4,837,829,782 | 10% | ||
arzkyu97 | 0 | 2,864,706,347 | 9.6% | ||
fran.frey | 0 | 4,214,477,344 | 50% | ||
perpetuum-lynx | 0 | 2,170,166,234 | 68.6% | ||
petrarodriguez | 0 | 117,485,238,867 | 24% | ||
thelittlebank | 0 | 19,219,917,478 | 2.8% | ||
pboulet | 0 | 129,042,415,605 | 56% | ||
javyeslava.photo | 0 | 567,815,152 | 2.24% | ||
stem-espanol | 0 | 2,669,809,794 | 100% | ||
voter003 | 0 | 2,818,824,393 | 1.1% | ||
voter000 | 0 | 2,997,289,587 | 6.5% | ||
aleestra | 0 | 13,677,362,015 | 80% | ||
rowell | 0 | 1,230,406,393 | 5.6% | ||
palasatenea | 0 | 3,526,311,527 | 2.8% | ||
pocketjs | 0 | 80,471,324 | 5.83% | ||
the.success.club | 0 | 2,620,855,221 | 2.8% | ||
javier.dejuan | 0 | 531,407,659 | 70% | ||
amansharma555 | 0 | 595,961,049 | 100% | ||
meanroosterfarm | 0 | 1,406,275,952 | 35% | ||
racarjoal | 0 | 625,588,191 | 12% | ||
merlin7 | 0 | 11,142,067,506 | 5.6% | ||
janettyanez | 0 | 919,693,194 | 4.8% | ||
brianoflondon | 0 | 86,644,373,570 | 1.4% | ||
giulyfarci52 | 0 | 1,722,948,742 | 50% | ||
esthersanchez | 0 | 1,596,493,468 | 24% | ||
maryelin | 0 | 563,078,909 | 12% | ||
kristall97 | 0 | 705,320,673 | 100% | ||
followjohngalt | 0 | 663,163,114 | 5.6% | ||
steemcryptosicko | 0 | 9,060,731,242 | 1.12% | ||
certain | 0 | 1,355,187,434 | 0.67% | ||
alvin0617 | 0 | 493,755,376 | 2.8% | ||
multifacetas | 0 | 1,800,283,142 | 2.8% | ||
cakemonster | 0 | 2,812,318,063 | 5.6% | ||
cowpatty | 0 | 1,476,048,598 | 35% | ||
stem.witness | 0 | 4,220,861,482 | 70% | ||
witkowskipawel | 0 | 1,003,097,112 | 2.8% | ||
jpbliberty | 0 | 7,564,919,113 | 1.4% | ||
autobodhi | 0 | 1,059,610,305 | 5.6% | ||
mechanicalowl | 0 | 658,743,302 | 50% | ||
regularowl | 0 | 1,177,270,905 | 50% | ||
solox | 0 | 981,150,497 | 5.6% | ||
double-negative | 0 | 520,483,704 | 20% | ||
priyandaily | 0 | 6,098,136,703 | 40% | ||
vaultec | 0 | 556,207,946,139 | 12% | ||
daniel2001 | 0 | 722,995,177 | 12% | ||
steemstorage | 0 | 6,740,418,327 | 5.6% | ||
steemegg | 0 | 1,100,633,377 | 2.8% | ||
jtm.support | 0 | 5,264,125,906 | 70% | ||
edithbdraw | 0 | 831,007,220 | 2.8% | ||
crowdwitness | 0 | 174,272,298,707 | 35% | ||
steemtelly | 0 | 1,965,363,054 | 5.83% | ||
stevieboyes | 0 | 14,165,457,183 | 90% | ||
hairgistix | 0 | 3,311,705,675 | 2.8% | ||
goodcontentbot | 0 | 808,177,464 | 15% | ||
bluemaskman | 0 | 652,954,271 | 2.8% | ||
goodcontentbot1 | 0 | 2,434,397,986 | 90% | ||
steemean | 0 | 10,107,116,149 | 5% | ||
proxy-pal | 0 | 1,452,537,046 | 5.6% | ||
deveney | 0 | 470,754,661 | 100% | ||
hashkings | 0 | 18,845,809,999 | 25% | ||
littlesorceress | 0 | 1,190,285,997 | 2.8% | ||
newton666 | 0 | 1,635,325,137 | 35% | ||
cryptofiloz | 0 | 8,960,762,074 | 5.6% | ||
dawnoner | 0 | 1,996,955,214 | 0.56% | ||
photographercr | 0 | 429,730,627 | 0.8% | ||
epicdice | 0 | 1,930,296,806 | 1.68% | ||
yiobri | 0 | 584,015,455 | 12% | ||
iamsaray | 0 | 1,478,931,276 | 2.8% | ||
yonnathang | 0 | 13,474,952,051 | 24% | ||
robibasa | 0 | 18,072,266,784 | 10% | ||
beerlover | 0 | 2,337,818,094 | 1.68% | ||
tinyhousecryptos | 0 | 470,557,804 | 5% | ||
tggr | 0 | 1,374,846,700 | 2.8% | ||
aicu | 0 | 1,577,655,406 | 5.6% | ||
zeruxanime | 0 | 13,150,046,029 | 35% | ||
afarina46 | 0 | 1,950,435,249 | 35% | ||
imbartley | 0 | 835,390,563 | 26.25% | ||
kgswallet | 0 | 1,078,990,998 | 20% | ||
tiffin | 0 | 677,802,801 | 5.6% | ||
reggaesteem | 0 | 497,366,932 | 5% | ||
bedazzled | 0 | 4,374,042,024 | 100% | ||
aicoding | 0 | 591,151,259 | 2.8% | ||
tokensink | 0 | 3,301,424,997 | 5.6% | ||
dechuck | 0 | 6,982,694,183 | 50% | ||
knightsunited | 0 | 882,462,148 | 5.6% | ||
javikun | 0 | 708,770,785 | 24% | ||
nazer | 0 | 2,778,576,059 | 35% | ||
zulfrontado | 0 | 498,009,340 | 12% | ||
saravm82 | 0 | 544,545,300 | 24% | ||
steemstem-trig | 0 | 1,464,226,932 | 70% | ||
hispapro | 0 | 491,068,140,711 | 24% | ||
baltai | 0 | 6,373,744,931 | 2.8% | ||
chris-uk | 0 | 1,214,008,567 | 2.8% | ||
dmoonfire | 0 | 32,519,095,303 | 71% | ||
mowemu | 0 | 484,126,395 | 5.6% | ||
machan | 0 | 719,298,886 | 2.8% | ||
ibt-survival | 0 | 33,962,589,165 | 10% | ||
hjmarseille | 0 | 2,166,958,314 | 49% | ||
steemdiamond | 0 | 752,591,436 | 5.6% | ||
sweetval | 0 | 14,144,499,466 | 50% | ||
zirky | 0 | 3,134,446,113 | 4.76% | ||
gloriaolar | 0 | 646,986,527 | 1.68% | ||
manic.calm | 0 | 6,874,557,296 | 100% | ||
bilpcoinbpc | 0 | 1,110,137,569 | 5% | ||
davidlionfish | 0 | 18,899,194,857 | 50% | ||
cornavirus | 0 | 556,780,394 | 5.6% | ||
andreina57 | 0 | 694,785,008 | 35% | ||
krisconkr | 0 | 507,133,683 | 2.8% | ||
stemsocial | 0 | 586,861,153,419 | 70% | ||
kodeblaccc | 0 | 752,231,170 | 2.8% | ||
the100 | 0 | 1,360,170,196 | 2.8% | ||
hiveonboard | 0 | 1,259,319,173 | 2.8% | ||
graciadegenios | 0 | 2,586,328,252 | 24% | ||
ecency | 0 | 2,103,960,066,974 | 4% | ||
georgelys | 0 | 2,940,270,643 | 24% | ||
lqch | 0 | 2,332,800,623 | 12% | ||
noelyss | 0 | 15,566,464,343 | 35% | ||
balvinder294 | 0 | 592,712,591 | 1.12% | ||
jsalvage | 0 | 1,477,205,044 | 35% | ||
quinnertronics | 0 | 10,827,143,066 | 7% | ||
anafae | 0 | 659,764,618 | 1.12% | ||
ecency.stats | 0 | 1,574,908,440 | 4% | ||
hivecoffee | 0 | 521,188,261 | 5.6% | ||
portsundries | 0 | 7,056,892,336 | 100% | ||
hive-108278 | 0 | 604,730,203 | 35% | ||
sevenoh-fiveoh | 0 | 1,103,964,389 | 2.8% | ||
lis0426csm | 0 | 3,954,878,372 | 100% | ||
visualartist | 0 | 677,032,340 | 2.8% | ||
kei2 | 0 | 657,515,354 | 2.8% | ||
edfer18 | 0 | 989,723,036 | 24% | ||
altleft | 0 | 22,693,639,016 | 0.05% | ||
noalys | 0 | 1,328,486,012 | 2.8% | ||
enyusael | 0 | 906,378,439 | 12% | ||
evagavilan2 | 0 | 7,206,885,756 | 12% | ||
gonklavez9 | 0 | 1,347,456,662 | 70% | ||
death-and-taxes | 0 | 484,951,157 | 5.6% | ||
jesuspsoto | 0 | 1,209,977,708 | 24% | ||
apeboy | 0 | 942,801,654 | 12% | ||
apendix1994 | 0 | 3,927,317,765 | 90% | ||
cosplay.hadr | 0 | 1,382,805,062 | 5.6% | ||
hadrgames | 0 | 1,424,653,104 | 5.6% | ||
rawecz | 0 | 2,801,052,757 | 24% | ||
maar | 0 | 667,170,753 | 70% | ||
meritocracy | 0 | 62,345,342,314 | 0.56% | ||
jmsansan | 0 | 4,673,483,859 | 2.8% | ||
pepeymeli | 0 | 790,453,825 | 50% | ||
jesustiano | 0 | 4,771,547,765 | 19.2% | ||
dcrops | 0 | 39,156,867,401 | 2.8% | ||
infernalcoliseum | 0 | 595,251,618 | 25% | ||
rondonshneezy | 0 | 526,382,706 | 2.8% | ||
yozen | 0 | 2,182,287,002 | 2.8% | ||
eturnerx-dbuzz | 0 | 3,023,484,521 | 10% | ||
alvarezjessica | 0 | 3,629,009,626 | 24% | ||
tawadak24 | 0 | 2,837,873,354 | 2.8% | ||
ausbit.dev | 0 | 546,748,768 | 2.8% | ||
bananass | 0 | 3,702,408,566 | 4.2% | ||
limn | 0 | 915,892,627 | 2.8% | ||
nyxlabs | 0 | 1,193,540,805 | 3.5% | ||
oahb132 | 0 | 492,982,539 | 35% | ||
failingforwards | 0 | 3,530,537,263 | 2.8% | ||
drricksanchez | 0 | 14,950,130,721 | 2.8% | ||
hexagono6 | 0 | 1,860,145,923 | 12% | ||
trouvaille | 0 | 1,828,627,286 | 2.8% | ||
maxelitereturned | 0 | 556,756,704 | 35% | ||
juecoree.stem | 0 | 481,076,318 | 70% | ||
trippymane | 0 | 1,792,119,799 | 5.6% | ||
ruffatotmeee | 0 | 1,311,339,408 | 2.8% | ||
victordumont | 0 | 1,948,929,377 | 24% | ||
norokochan | 0 | 899,428,366 | 24% | ||
nfttunz | 0 | 8,340,065,255 | 0.56% | ||
caribayarte | 0 | 2,933,429,292 | 24% | ||
yeidelyt | 0 | 877,764,818 | 24% | ||
soychalbed | 0 | 976,330,121 | 12% | ||
okluvmee | 0 | 2,650,067,897 | 2.8% | ||
atexoras.pub | 0 | 1,635,526,342 | 2.8% | ||
merit.ahama | 0 | 4,870,383,165 | 1.68% | ||
luisestaba23 | 0 | 483,383,022 | 50% | ||
holovision.cash | 0 | 4,314,558,596 | 100% | ||
krrizjos18 | 0 | 3,076,133,000 | 35% | ||
hubeyma | 0 | 836,859,150 | 2.8% | ||
mirteg | 0 | 732,454,339 | 5.6% | ||
podping | 0 | 8,642,386,870 | 1.4% | ||
davidbright | 0 | 831,487,605 | 2.8% | ||
jessicaossom | 0 | 1,394,146,752 | 2.8% | ||
beysyd | 0 | 1,171,906,574 | 12% | ||
ferbu | 0 | 2,607,983,729 | 24% | ||
drhueso | 0 | 1,439,427,098 | 2.8% | ||
annafenix | 0 | 1,047,946,719 | 12% | ||
pinkfloyd878 | 0 | 4,376,062,740 | 100% | ||
asderhz | 0 | 1,873,181,751 | 12% | ||
mairimgo23 | 0 | 5,693,103,579 | 24% | ||
laviesm | 0 | 6,222,311,244 | 50% | ||
kalivankush | 0 | 554,670,248 | 2.8% | ||
miguelstar | 0 | 1,255,154,490 | 24% | ||
seinkalar | 0 | 1,850,037,640 | 5.6% | ||
tanzil2024 | 0 | 1,050,795,544 | 1% | ||
amaillo | 0 | 660,096,399 | 4.8% | ||
aries90 | 0 | 49,568,882,547 | 5.6% | ||
franvenezuela | 0 | 837,801,182 | 12% | ||
rencongland | 0 | 593,191,042 | 2.8% | ||
cugel | 0 | 2,334,518,256 | 2.8% | ||
martinthemass | 0 | 617,601,536 | 100% | ||
acantoni | 0 | 721,376,758 | 2.8% | ||
migka | 0 | 4,497,231,727 | 90% | ||
gambit-x | 0 | 9,775,470,697 | 100% | ||
blingit | 0 | 3,607,315,752 | 2.8% | ||
barizon | 0 | 1,243,392,245 | 100% | ||
t0xicgh0st | 0 | 470,567,260 | 100% | ||
rynos-6 | 0 | 2,787,925,884 | 100% | ||
mcsherriff | 0 | 578,583,263 | 5.6% | ||
orangeandwater | 0 | 2,075,357,396 | 100% | ||
h3m4n7 | 0 | 936,129,962 | 2.8% | ||
jude9 | 0 | 511,303,054 | 17.5% | ||
kqaosphreak | 0 | 8,304,937,618 | 70% | ||
alt3r | 0 | 611,304,938 | 4.31% | ||
mcookies | 0 | 1,673,993,521 | 12% | ||
waivio.curator | 0 | 1,697,864,426 | 3.2% | ||
pompeylad | 0 | 3,968,496,946 | 100% | ||
gercripto | 0 | 1,345,775,916 | 12% | ||
ehizgabriel | 0 | 695,932,551 | 35% | ||
vickoly | 0 | 3,357,813,364 | 2.8% | ||
susurrodmisterio | 0 | 954,395,077 | 12% | ||
noctury | 0 | 680,786,944 | 2.8% | ||
esalcedo | 0 | 34,585,826,761 | 24% | ||
checkyzk | 0 | 22,829,210,624 | 98% | ||
foxlatam | 0 | 2,462,799,507 | 50% | ||
deadleaf | 0 | 4,316,909,578 | 100% | ||
stefy.music | 0 | 505,969,426 | 2.8% | ||
allentaylor | 0 | 588,115,832 | 2% | ||
benwickenton | 0 | 2,674,839,171 | 5.6% | ||
annabeth | 0 | 820,515,691 | 5.6% | ||
jerusa777 | 0 | 1,291,415,002 | 15% | ||
blockgolem | 0 | 503,635,915 | 5.6% | ||
azj26 | 0 | 4,726,207,015 | 16% | ||
balabambuz | 0 | 733,078,063 | 2.8% | ||
chesspricepool | 0 | 17,435,425,231 | 100% | ||
prosocialise | 0 | 60,108,510,641 | 35% | ||
archangel21 | 0 | 15,222,995,925 | 5.6% | ||
plicc8 | 0 | 765,883,246 | 70% | ||
belug | 0 | 3,133,430,823 | 1.68% | ||
filmmaking4hive | 0 | 2,251,572,853 | 5.6% | ||
amafable07 | 0 | 563,903,787 | 35% | ||
mugueto2022 | 0 | 552,156,687 | 20% | ||
ricardoeloy | 0 | 595,730,598 | 6% | ||
chechostreet | 0 | 2,022,006,078 | 24% | ||
jaylatour | 0 | 896,704,278 | 5.6% | ||
xclanleo | 0 | 1,821,659,918 | 25% | ||
nazom | 0 | 831,418,307 | 35% | ||
fefe99 | 0 | 499,805,803 | 100% | ||
baboz | 0 | 1,455,993,301 | 1.4% | ||
cuzimgleb | 0 | 1,712,432,026 | 70% | ||
universodaniel | 0 | 874,311,831 | 12% | ||
sbtofficial | 0 | 5,016,368,118 | 2.8% | ||
hk-curation | 0 | 59,449,456,880 | 50% | ||
vagabond42069 | 0 | 1,520,821,299 | 35% | ||
eollarvesm | 0 | 885,758,864 | 12% | ||
inibless | 0 | 725,793,405 | 35% | ||
pentaghast | 0 | 8,631,031,965 | 50% | ||
hiversbqto | 0 | 2,568,425,701 | 24% | ||
daje10 | 0 | 5,244,401,104 | 50% | ||
sc000 | 0 | 1,594,686,156 | 5.6% | ||
pinkchic | 0 | 519,776,081 | 0.84% | ||
kittykaitlin | 0 | 7,324,506,990 | 98% | ||
vankushfamily | 0 | 651,766,934 | 35% | ||
jijisaurart | 0 | 1,545,231,279 | 2.8% | ||
nahuelgameplays | 0 | 570,279,725 | 25% | ||
clpacksperiment | 0 | 2,456,141,560 | 2.8% | ||
humbe | 0 | 1,465,495,437 | 1% | ||
flywithmarlin | 0 | 867,977,802 | 12% | ||
technico | 0 | 1,069,439,562 | 2.8% | ||
fotlala | 0 | 730,186,259 | 12% | ||
bemier | 0 | 1,068,474,053 | 2.8% | ||
hikergirl | 0 | 527,902,650 | 2.8% | ||
rhemagames | 0 | 5,345,732,520 | 2.8% | ||
soylegionario | 0 | 2,977,198,616 | 5.6% | ||
cyclopshive | 0 | 2,708,729,794 | 50% | ||
dev.maverick | 0 | 961,013,050 | 5.6% | ||
mariiestefania | 0 | 2,632,821,422 | 24% | ||
vscampbell | 0 | 379,560,660 | 50% | ||
zutodoterreno | 0 | 575,492,135 | 12% | ||
queasuluz | 0 | 1,945,805,914 | 24% | ||
serenecounsel | 0 | 3,548,360,794 | 100% |
<div class='text-justify'> <div class='pull-left'> <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div> Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us! Please consider delegating to the @stemsocial account (85% of the curation rewards are returned). You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-eniolw-my-coding-quiz-50-20240307t180510689z |
category | hive-197685 |
json_metadata | {"app":"STEMsocial"} |
created | 2024-03-07 18:05:09 |
last_update | 2024-03-07 18:05:09 |
depth | 1 |
children | 0 |
last_payout | 2024-03-14 18:05:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 565 |
author_reputation | 22,919,140,450,815 |
root_title | "My Coding Quiz #50" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 131,873,515 |
net_rshares | 0 |