<div class="text-justify"> <center><h2>My Coding Quiz #5 馃懆鈥嶐煉火煕狅笍馃З</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://files.peakd.com/file/peakd-hive/eniolw/23z7NJX3U18bZT5JwoCJc3Sv1fi5AP7Ah8ZT56LmMZPzdyAHRd5YJ5oaJ2H4ScA1jNN8p.png" alt="Quiz"></center> <br><center><h3>What's your choice?</h3></center> <p><b>Solution to the <a href="/@eniolw/my-coding-quiz-4">previous quiz</a>:</b> <b>14</b>. Lines 1 and 2 define a pair of <code>lambda</code> functions. Lambda is a keyword in the Python language for creating short functions intended to be used in-line, which enriches the language with <i>functional programming</i>.</p> <p>If you didn't know, the reason for naming these functions <i>Lambda</i> is in honor of the <a href="https://en.wikipedia.org/wiki/Lambda_calculus">Lambda Calculus</a>, which was invented by theoretical computer scientist <i>Alonzo Church</i> to mathematically ground the theory of computation, something <i>Alan Turing</i> would do as well, but using a totally different model known as <i>Turing machines</i>.</p> <p>Let's go back to the solution. It all makes sense when these functions are called in line 3 in a slightly obscure way, which is evidently intentional: <code>res = f1(f2(-4), 8)</code>. From here, we first resolve the call to the function <code>f2</code>, defined in line 2. This receives <b>-4</b> and returns its square, that is, <b>16</b>.</p> <p>Then we solve the call to function <code>f1</code>, defined in line 1, which receives 16 and 8 as arguments. It executes the operation <code>16 - 8 / 4</code> which produces <b>14</b> (don't fall into the operator precedence trap, where <code>8 / 4</code> should be executed first because it is a division). An unnecessary rounding with <code>round</code> is applied to this value.</p> <p>So <b>14</b> is the value assigned to <code>res</code> and printed at the end. It seems that only @zuerich managed to solve the quiz correctly this time. Congratulations!</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>, <a href="/created/hive-153850">Hive Learners</a> and others.</p> <hr> <center><h2>Mi Quiz de Programaci贸n #5 馃懆鈥嶐煉火煕狅笍馃З</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://files.peakd.com/file/peakd-hive/eniolw/23z7NJX3U18bZT5VyfRpHwdozj6HQnouXjLU8ZMTx77G7LLFjrqA4NqLVuhsXeSJuJyqn.png" alt="Quiz"></center> <br><center><h3>驴Cu谩l es tu elecci贸n?</h3></center> <p><b>Soluci贸n al <a href="/@eniolw/my-coding-quiz-4">quiz anterior</a></b>: <b>14</b>. Las l铆neas 1 y 2 definen un par de funciones <code>lambda</code>. Lambda es una palabra clave en el lenguaje Python para crear funciones cortas destinadas a ser utilizadas de manera in-line, lo que enriquece el lenguaje con <i>programaci贸n funcional</i>.</p> <p>Si no lo sab铆as, la raz贸n para llamar a estas funciones <i>Lambda</i> es en honor al <a href="https://es.wikipedia.org/wiki/C%C3%A1lculo_lambda">C谩lculo lambda</a>, que fue inventado por el inform谩tico te贸rico <i>Alonzo Church</i> para fundamentar matem谩ticamente la teor铆a de la computaci贸n, algo que <i>Alan Turing</i> har铆a tambi茅n, pero usando un modelo totalmente diferente conocido como <i>m谩quinas de Turing</i>.</p> <p>Volvamos a la soluci贸n. Todo tiene sentido cuando estas funciones se llaman en la l铆nea 3 de una manera un poco oscura, lo cual es evidentemente intencional: <code>res = f1(f2(-4), 8)</code>. A partir de aqu铆, primero resolvemos la llamada a la funci贸n <code>f2</code>, definida en la l铆nea 2. Esta recibe <b>-4</b> y devuelve su cuadrado, es decir, <b>16</b>.</p> <p>Luego resolvemos la llamada a la funci贸n <code>f1</code>, definida en la l铆nea 1, que recibe 16 y 8 como argumentos. Ejecuta la operaci贸n <code>16 - 8 / 4</code> que produce <b>14</b> (no caigas en la trampa de precedencia de operadores, donde <code>8 / 4</code> se debe ejecutar primero porque es una divisi贸n). Se aplica un redondeo innecesario con <code>round</code> a este valor.</p> <p>Entonces <b>14</b> es el valor asignado a <code>res</code> e impreso al final. Parece que solo @zuerich logr贸 resolver el cuestionario correctamente esta vez. 隆Felicidades!</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>, <a href="/created/hive-153850">Hive Learners</a> y otras.</p> </div>
author | eniolw |
---|---|
permlink | my-coding-quiz-5 |
category | hive-153850 |
json_metadata | "{"image":["https://files.peakd.com/file/peakd-hive/eniolw/23z7NJX3U18bZT5JwoCJc3Sv1fi5AP7Ah8ZT56LmMZPzdyAHRd5YJ5oaJ2H4ScA1jNN8p.png","https://files.peakd.com/file/peakd-hive/eniolw/23z7NJX3U18bZT5VyfRpHwdozj6HQnouXjLU8ZMTx77G7LLFjrqA4NqLVuhsXeSJuJyqn.png"],"thumbnails":["https://images.ecency.com/DQmNyLDw74txVF22QEEXbGPLZnpmgTgychT5GLmJZFBiGt5/quiz_img_en.png","https://images.ecency.com/DQmNPN547BAVvNw1KPWiuQ8AJtPSK4Rjp9Qb293kNyH1MiL/quiz_img_es.png"],"tags":["python","programming","coding","software","technology","neoxian","proofofbrain","creativecoin","spanish","hive-153850"],"description":"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 simple and fun way.","app":"ecency/3.0.33-vision","format":"markdown","users":["eniolw","zuerich"]}" |
created | 2023-07-03 09:09:15 |
last_update | 2023-07-07 19:18:30 |
depth | 0 |
children | 7 |
last_payout | 2023-07-10 09:09:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 6.716 HBD |
curator_payout_value | 6.594 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,625 |
author_reputation | 255,223,074,416,427 |
root_title | "My Coding Quiz #5" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 124,995,083 |
net_rshares | 30,701,642,383,644 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drifter1 | 0 | 1,025,786,073 | 2.8% | ||
kevinwong | 0 | 2,863,930,978 | 0.42% | ||
justtryme90 | 0 | 1,421,701,563 | 70% | ||
eric-boucher | 0 | 14,829,879,153 | 2.8% | ||
juanmiguelsalas | 0 | 818,983,449 | 1.68% | ||
thecryptodrive | 0 | 642,116,711 | 1.12% | ||
roelandp | 0 | 325,553,234,510 | 35% | ||
cloh76 | 0 | 4,031,959,643 | 2.8% | ||
stea90 | 0 | 1,238,852,597 | 1% | ||
joshglen | 0 | 823,096,041 | 5.6% | ||
pipokinha | 0 | 63,682,251,553 | 100% | ||
akipponn | 0 | 4,341,436,908 | 35% | ||
sunshine | 0 | 202,628,746,653 | 35% | ||
neddykelly | 0 | 14,419,345,853 | 85% | ||
lordvader | 0 | 48,584,827,314 | 5.6% | ||
rmach | 0 | 21,261,405,890 | 35% | ||
lemouth | 0 | 1,319,697,589,473 | 45% | ||
netaterra | 0 | 48,763,800,054 | 2.8% | ||
alaqrab | 0 | 522,436,471 | 2.8% | ||
lamouthe | 0 | 5,546,413,281 | 70% | ||
tfeldman | 0 | 5,498,562,168 | 2.8% | ||
sergiomendes | 0 | 2,139,858,618 | 2.8% | ||
metabs | 0 | 7,267,789,835 | 70% | ||
mcsvi | 0 | 128,671,392,165 | 50% | ||
lk666 | 0 | 1,809,824,523 | 2.8% | ||
cnfund | 0 | 11,100,174,941 | 5.6% | ||
justyy | 0 | 38,066,744,044 | 5.6% | ||
michelle.gent | 0 | 3,313,217,848 | 1.12% | ||
curie | 0 | 459,932,237,839 | 5.6% | ||
modernzorker | 0 | 3,549,915,912 | 3.92% | ||
moretea | 0 | 1,829,009,093 | 5.6% | ||
techslut | 0 | 160,148,428,289 | 28% | ||
steemstem | 0 | 1,318,612,772,425 | 70% | ||
dashfit | 0 | 578,450,611 | 2.8% | ||
tristancarax | 0 | 691,449,635 | 2.8% | ||
edb | 0 | 50,468,215,421 | 50% | ||
yadamaniart | 0 | 3,109,262,198 | 2.8% | ||
bigtakosensei | 0 | 1,289,534,149 | 1.4% | ||
walterjay | 0 | 428,155,984,018 | 35% | ||
valth | 0 | 12,131,646,690 | 35% | ||
metroair | 0 | 25,449,273,381 | 5.6% | ||
driptorchpress | 0 | 2,081,323,975 | 1.4% | ||
voter | 0 | 5,181,196,120 | 100% | ||
sardrt | 0 | 1,237,057,024 | 10% | ||
dna-replication | 0 | 2,744,070,695 | 70% | ||
steemitboard | 0 | 12,964,499,149 | 5% | ||
mariaalmeida | 0 | 17,347,600,185 | 100% | ||
boynashruddin | 0 | 950,011,756 | 5.6% | ||
gifmaster | 0 | 53,377,523,960 | 100% | ||
steemiteducation | 0 | 1,220,665,894 | 2.8% | ||
dhimmel | 0 | 363,602,506,027 | 17.5% | ||
oluwatobiloba | 0 | 3,147,749,789 | 70% | ||
detlev | 0 | 21,719,391,171 | 1.68% | ||
chasmic-cosm | 0 | 866,393,417 | 2.8% | ||
dimarss | 0 | 4,275,052,880 | 20% | ||
pastzam | 0 | 181,637,244,365 | 20% | ||
lugaxker | 0 | 823,566,558 | 34.65% | ||
federacion45 | 0 | 8,823,354,545 | 2.8% | ||
amberyooper | 0 | 569,449,462 | 2.8% | ||
gamersclassified | 0 | 3,139,097,175 | 2.8% | ||
iansart | 0 | 10,702,149,389 | 2.8% | ||
forykw | 0 | 10,006,332,140 | 2.8% | ||
mobbs | 0 | 100,057,286,471 | 35% | ||
eliel | 0 | 7,045,186,439 | 2.8% | ||
jerrybanfield | 0 | 18,433,666,333 | 5.6% | ||
rt395 | 0 | 1,946,967,316 | 1.5% | ||
bitrocker2020 | 0 | 9,676,004,231 | 0.84% | ||
jga | 0 | 52,715,112,076 | 100% | ||
maxdevalue | 0 | 55,406,418,620 | 5.6% | ||
sustainablyyours | 0 | 29,987,448,868 | 35% | ||
helo | 0 | 13,567,009,697 | 35% | ||
arunava | 0 | 24,167,240,343 | 2.24% | ||
schoolforsdg4 | 0 | 1,057,400,050 | 5% | ||
samminator | 0 | 51,453,799,025 | 35% | ||
zerotoone | 0 | 1,123,369,029 | 2.8% | ||
enjar | 0 | 40,833,230,781 | 5.04% | ||
mahdiyari | 0 | 1,871,275,363,293 | 80% | ||
lorenzor | 0 | 1,341,719,751 | 50% | ||
firstamendment | 0 | 86,483,271,088 | 50% | ||
sam99 | 0 | 13,833,455,270 | 21% | ||
aboutyourbiz | 0 | 1,063,363,659 | 5.6% | ||
derosnec | 0 | 562,885,251 | 2.8% | ||
alexander.alexis | 0 | 42,187,850,128 | 70% | ||
professorbromide | 0 | 110,568,453,179 | 100% | ||
dandesign86 | 0 | 15,443,756,101 | 8% | ||
jayna | 0 | 7,425,749,040 | 1.12% | ||
deanlogic | 0 | 1,408,019,827 | 2.8% | ||
hhayweaver | 0 | 1,144,279,443 | 1.4% | ||
techken | 0 | 2,209,259,728 | 2.8% | ||
princessmewmew | 0 | 7,732,138,070 | 2.8% | ||
joeyarnoldvn | 0 | 481,114,156 | 1.47% | ||
diabolika | 0 | 972,329,563 | 2.8% | ||
ufv | 0 | 3,006,808,420 | 50% | ||
gunthertopp | 0 | 75,424,481,163 | 1.4% | ||
pipiczech | 0 | 2,366,277,475 | 5.6% | ||
touchman | 0 | 175,754,693,615 | 100% | ||
empath | 0 | 4,052,098,604 | 2.8% | ||
eturnerx | 0 | 32,922,855,197 | 1.7% | ||
flatman | 0 | 2,912,653,924 | 5.6% | ||
zammie | 0 | 2,880,454,075 | 100% | ||
minnowbooster | 0 | 1,066,498,506,884 | 20% | ||
lenasveganliving | 0 | 961,064,330 | 2.8% | ||
howo | 0 | 2,228,069,762,702 | 70% | ||
tsoldovieri | 0 | 7,372,958,553 | 35% | ||
steemwizards | 0 | 4,224,934,998 | 5.6% | ||
neumannsalva | 0 | 4,599,416,607 | 2.8% | ||
stayoutoftherz | 0 | 146,303,061,176 | 1.4% | ||
abigail-dantes | 0 | 25,950,038,435 | 70% | ||
coindevil | 0 | 2,884,593,859 | 4.48% | ||
syh7758520 | 0 | 2,449,379,783 | 80% | ||
zonguin | 0 | 3,016,460,703 | 17.5% | ||
investingpennies | 0 | 21,040,085,707 | 5.6% | ||
mamalikh13 | 0 | 17,125,155,301 | 5.6% | ||
prapanth | 0 | 1,029,912,533 | 2.8% | ||
martibis | 0 | 2,664,040,145 | 1.68% | ||
jasonbu | 0 | 21,441,644,218 | 80% | ||
val.halla | 0 | 2,869,753,262 | 10% | ||
travelingmercies | 0 | 701,203,669 | 5.6% | ||
redrica | 0 | 2,041,507,962 | 2.8% | ||
horpey | 0 | 27,387,163,584 | 50% | ||
pepskaram | 0 | 594,251,943 | 2.8% | ||
iamphysical | 0 | 827,539,402 | 90% | ||
hdmed | 0 | 838,768,185 | 5.6% | ||
sunisa | 0 | 1,383,616,762 | 2.8% | ||
lalupita | 0 | 44,328,639,196 | 20% | ||
dipom98 | 0 | 1,184,501,157 | 2.8% | ||
zest | 0 | 1,003,920,540 | 35% | ||
aaronleang | 0 | 7,946,986,582 | 25% | ||
zyx066 | 0 | 5,695,649,661 | 1.68% | ||
chrisdavidphoto | 0 | 1,089,024,025 | 1.68% | ||
revo | 0 | 11,274,657,961 | 5.6% | ||
azulear | 0 | 1,343,409,333 | 100% | ||
psicoluigi | 0 | 796,173,882 | 50% | ||
nerdnews | 0 | 991,752,994 | 5.6% | ||
rafaelaquino | 0 | 19,296,393,952 | 100% | ||
wilians | 0 | 548,137,818 | 35% | ||
rocky1 | 0 | 796,825,818,019 | 0.84% | ||
stickchumpion | 0 | 708,102,538 | 2.8% | ||
noloafing | 0 | 703,872,877 | 17.5% | ||
thelordsharvest | 0 | 5,148,423,267 | 5.6% | ||
vera-vaders-ea | 0 | 504,179,434 | 5.6% | ||
aidefr | 0 | 7,521,879,757 | 35% | ||
torico | 0 | 1,491,272,865 | 1.84% | ||
procryptix | 0 | 32,963,171,631 | 100% | ||
therealwolf | 0 | 36,632,698,136 | 2.8% | ||
fatman | 0 | 9,012,782,983 | 2% | ||
votehero | 0 | 6,423,616,852 | 1.4% | ||
inthenow | 0 | 19,048,016,481 | 20% | ||
minnowpowerup | 0 | 882,737,424 | 2.8% | ||
splash-of-angs63 | 0 | 3,710,910,257 | 70% | ||
cryptononymous | 0 | 1,938,965,982 | 2.8% | ||
braveboat | 0 | 21,275,178,265 | 40% | ||
meno | 0 | 25,923,884,776 | 2.8% | ||
bigdizzle91 | 0 | 800,095,678 | 2.8% | ||
toocurious | 0 | 535,160,084 | 2.8% | ||
helyorsini | 0 | 617,442,049 | 2.8% | ||
hanggggbeeee | 0 | 486,492,454 | 2.8% | ||
technicalside | 0 | 22,948,625,314 | 24% | ||
steemed-proxy | 0 | 1,098,767,154,895 | 5.6% | ||
fatkat | 0 | 1,495,525,549 | 2.79% | ||
doifeellucky | 0 | 18,279,075,547 | 2.8% | ||
peaceandwar | 0 | 881,593,823 | 2.8% | ||
enzor | 0 | 2,266,443,545 | 35% | ||
marcoriccardi | 0 | 1,054,221,398 | 5.6% | ||
bartosz546 | 0 | 6,272,671,929 | 2.8% | ||
tazbaz | 0 | 559,344,561 | 2.8% | ||
kiaazad | 0 | 41,657,398,635 | 100% | ||
dreamm | 0 | 3,056,601,485 | 50% | ||
dandays | 0 | 14,839,265,835 | 1.4% | ||
battebilly | 0 | 908,570,455 | 2.8% | ||
notb4mycoffee | 0 | 3,313,484,643 | 5.6% | ||
silverwhale | 0 | 1,483,011,122 | 5.04% | ||
dejan.vuckovic | 0 | 854,072,846 | 2.8% | ||
alvinauh | 0 | 1,306,799,299 | 30% | ||
lottje | 0 | 612,414,932 | 70% | ||
myach | 0 | 762,318,492 | 4.48% | ||
sunsea | 0 | 4,280,493,384 | 2.8% | ||
postpromoter | 0 | 1,449,158,021,326 | 70% | ||
bluefinstudios | 0 | 3,833,691,838 | 1.68% | ||
steveconnor | 0 | 4,740,735,224 | 2.8% | ||
sankysanket18 | 0 | 1,685,962,663 | 35% | ||
dbddv01 | 0 | 2,571,128,111 | 17.5% | ||
dranren | 0 | 2,010,589,252 | 100% | ||
zmx | 0 | 559,908,320 | 2.8% | ||
skippyza | 0 | 486,146,038 | 5.6% | ||
nicole-st | 0 | 3,596,764,241 | 2.8% | ||
smartsteem | 0 | 137,963,120,507 | 2.8% | ||
jasimg | 0 | 695,003,443 | 100% | ||
travoved | 0 | 5,341,303,501 | 50% | ||
aboutcoolscience | 0 | 887,708,083 | 70% | ||
afifa | 0 | 625,220,672 | 10% | ||
sandracarrascal | 0 | 501,461,201 | 50% | ||
skycae | 0 | 723,443,602 | 5.6% | ||
sgt-dan | 0 | 29,550,302,969 | 50% | ||
kenadis | 0 | 18,937,469,255 | 70% | ||
madridbg | 0 | 27,364,566,632 | 70% | ||
robotics101 | 0 | 20,772,842,828 | 70% | ||
marcolino76 | 0 | 590,644,234 | 2.8% | ||
onemedia | 0 | 1,129,125,621 | 5.6% | ||
lpv | 0 | 3,014,707,099 | 8.75% | ||
punchline | 0 | 16,408,742,815 | 5.6% | ||
howiemac | 0 | 623,720,961 | 2.8% | ||
ahmadmangazap | 0 | 4,593,241,936 | 2.8% | ||
apon318 | 0 | 487,435,858 | 5.6% | ||
tomatom | 0 | 583,838,888 | 2.8% | ||
danaedwards | 0 | 751,799,316 | 5.6% | ||
r00sj3 | 0 | 169,579,879,541 | 35% | ||
sco | 0 | 19,205,080,457 | 70% | ||
anikekirsten | 0 | 1,083,222,012 | 35% | ||
ennyta | 0 | 982,818,324 | 50% | ||
brotherhood | 0 | 19,906,754,128 | 5.6% | ||
juecoree | 0 | 6,839,974,220 | 49% | ||
gordon92 | 0 | 861,704,479 | 2.8% | ||
stahlberg | 0 | 1,290,047,478 | 2.8% | ||
jaro-art | 0 | 3,877,360,207 | 100% | ||
cordeta | 0 | 1,030,680,564 | 5.6% | ||
reizak | 0 | 498,030,165 | 2.24% | ||
carn | 0 | 3,573,493,505 | 5.04% | ||
eliaschess333 | 0 | 28,301,314,715 | 100% | ||
branbello | 0 | 2,696,431,567 | 35% | ||
hetty-rowan | 0 | 1,812,196,928 | 2.8% | ||
ydavgonzalez | 0 | 2,338,825,677 | 10% | ||
intrepidphotos | 0 | 469,895,894,955 | 52.5% | ||
fineartnow | 0 | 3,898,555,226 | 2.8% | ||
hijosdelhombre | 0 | 41,069,181,896 | 40% | ||
mathowl | 0 | 28,131,341,706 | 100% | ||
yoghurt | 0 | 1,764,145,823 | 5.6% | ||
steemvault | 0 | 2,175,899,471 | 5.6% | ||
steem4all | 0 | 1,327,354,694 | 2.8% | ||
communitybank | 0 | 4,442,082,309 | 5.6% | ||
shinedojo | 0 | 715,810,995 | 5.6% | ||
fragmentarion | 0 | 16,345,848,262 | 70% | ||
utube | 0 | 4,856,096,545 | 5.6% | ||
jigstrike | 0 | 894,409,809 | 2.8% | ||
baycan | 0 | 982,518,843 | 2.8% | ||
m1alsan | 0 | 1,046,462,434 | 2.8% | ||
dynamicrypto | 0 | 3,019,720,768 | 1% | ||
neneandy | 0 | 6,485,040,901 | 5.6% | ||
pab.ink | 0 | 46,186,063,084 | 35% | ||
real2josh | 0 | 661,181,182 | 35% | ||
soufiani | 0 | 860,862,337 | 2.24% | ||
sportscontest | 0 | 5,782,373,374 | 5.6% | ||
videosteemit | 0 | 1,282,028,631 | 5.6% | ||
gribouille | 0 | 3,319,338,569 | 70% | ||
pandasquad | 0 | 12,498,557,355 | 5.6% | ||
kingabesh | 0 | 1,416,424,068 | 35% | ||
miguelangel2801 | 0 | 787,790,618 | 50% | ||
mproxima | 0 | 1,922,035,493 | 2.8% | ||
fantasycrypto | 0 | 4,836,699,582 | 5.6% | ||
didic | 0 | 1,940,579,127 | 2.8% | ||
careassaktart | 0 | 1,231,980,763 | 1.68% | ||
jossduarte | 0 | 1,678,044,916 | 2.8% | ||
felixgarciap | 0 | 488,351,621 | 2.8% | ||
emiliomoron | 0 | 10,577,638,418 | 35% | ||
yjcps | 0 | 5,636,445,233 | 100% | ||
galam | 0 | 662,721,006 | 24.5% | ||
dexterdev | 0 | 2,887,818,712 | 35% | ||
nwjordan | 0 | 859,611,797 | 5.6% | ||
themonkeyzuelans | 0 | 494,087,107 | 2.8% | ||
photohunt | 0 | 3,796,915,128 | 5.6% | ||
geopolis | 0 | 4,683,996,982 | 70% | ||
ajfernandez | 0 | 779,243,745 | 100% | ||
robertbira | 0 | 7,583,457,039 | 17.5% | ||
atomcollector | 0 | 2,584,237,961 | 1.4% | ||
alexdory | 0 | 10,618,362,995 | 70% | ||
takowi | 0 | 107,389,616,294 | 5.6% | ||
sargewhale | 0 | 841,356,388 | 100% | ||
irgendwo | 0 | 18,706,586,903 | 5.6% | ||
vegan.niinja | 0 | 521,698,095 | 2.8% | ||
flugschwein | 0 | 3,669,947,811 | 59.5% | ||
charitybot | 0 | 5,049,312,402 | 100% | ||
cyprianj | 0 | 80,899,474,680 | 70% | ||
kieranstone | 0 | 1,567,567,445 | 1.84% | ||
movement19 | 0 | 642,506,574 | 2.5% | ||
melvin7 | 0 | 40,669,469,227 | 35% | ||
francostem | 0 | 9,754,242,673 | 70% | ||
russellstockley | 0 | 1,563,131,301 | 1.4% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
chrislybear | 0 | 15,156,440,406 | 50% | ||
steempampanga | 0 | 544,598,454 | 2.8% | ||
croctopus | 0 | 1,398,730,752 | 100% | ||
jjerryhan | 0 | 2,105,751,382 | 2.8% | ||
michelmake | 0 | 69,728,009,966 | 50% | ||
zipporah | 0 | 2,753,100,155 | 1.12% | ||
leomarylm | 0 | 1,754,075,408 | 2.8% | ||
randumb | 0 | 1,231,035,132 | 5.6% | ||
superlotto | 0 | 16,537,512,517 | 5.6% | ||
positiveninja | 0 | 1,120,692,678 | 2.8% | ||
miroslavrc | 0 | 625,546,998 | 1.4% | ||
foxyspirit | 0 | 569,132,257 | 2.8% | ||
bscrypto | 0 | 14,251,942,435 | 2.8% | ||
vonaurolacu | 0 | 1,811,021,341 | 2.8% | ||
movingman | 0 | 677,848,525 | 20% | ||
delpilar | 0 | 934,959,443 | 25% | ||
scottshots | 0 | 543,196,845 | 0.28% | ||
tomastonyperez | 0 | 16,934,603,962 | 50% | ||
paypalbis | 0 | 915,122,370 | 100% | ||
rodrigocassio | 0 | 896,515,480 | 100% | ||
bil.prag | 0 | 2,317,470,405 | 0.28% | ||
silviomangum29 | 0 | 896,484,585 | 100% | ||
elvigia | 0 | 10,965,981,932 | 50% | ||
safrizal.mus | 0 | 1,307,782,782 | 75% | ||
sanderjansenart | 0 | 5,308,822,712 | 2.8% | ||
viagens | 0 | 898,918,194 | 100% | ||
vittoriozuccala | 0 | 2,181,692,975 | 2.8% | ||
laxam | 0 | 5,441,045,735 | 100% | ||
qberry | 0 | 3,854,588,527 | 2.8% | ||
strosalia | 0 | 10,315,826,303 | 80% | ||
frissonsteemit | 0 | 1,236,823,963 | 2.8% | ||
broncofan99 | 0 | 9,353,516,956 | 20% | ||
rambutan.art | 0 | 1,946,457,258 | 5.6% | ||
greddyforce | 0 | 3,652,561,239 | 2.07% | ||
flyerchen | 0 | 647,715,452 | 2.8% | ||
braaiboy | 0 | 10,565,605,011 | 2.8% | ||
gadrian | 0 | 379,544,409,898 | 52.5% | ||
c0wtschpotato | 0 | 590,290,766 | 2.8% | ||
fotogruppemunich | 0 | 4,232,582,072 | 1.4% | ||
therising | 0 | 96,534,201,128 | 5.6% | ||
cryptocoinkb | 0 | 2,184,290,371 | 2.8% | ||
gifty-e | 0 | 709,578,104 | 80% | ||
scruffy23 | 0 | 20,122,122,119 | 50% | ||
de-stem | 0 | 38,664,440,870 | 69.3% | ||
imcore | 0 | 863,640,386 | 10% | ||
serylt | 0 | 3,236,575,900 | 68.6% | ||
gogreenbuddy | 0 | 161,048,638,727 | 5.6% | ||
lilacse | 0 | 9,203,445,249 | 100% | ||
josedelacruz | 0 | 4,739,658,764 | 50% | ||
achimmertens | 0 | 7,004,259,492 | 2.8% | ||
lorenzopistolesi | 0 | 10,482,614,677 | 2.8% | ||
kgakakillerg | 0 | 18,276,662,422 | 10% | ||
charitymemes | 0 | 533,704,655 | 100% | ||
mariusfebruary | 0 | 785,439,601 | 2.24% | ||
outtheshellvlog | 0 | 883,465,580 | 2.8% | ||
sawyn | 0 | 664,157,771 | 2.8% | ||
petertag | 0 | 546,372,884 | 4.2% | ||
calebotamus | 0 | 4,032,992,918 | 100% | ||
erickyoussif | 0 | 603,998,738 | 100% | ||
meanbees | 0 | 29,613,237,513 | 100% | ||
michaelwrites | 0 | 932,338,427 | 35% | ||
prayzz | 0 | 16,446,711,089 | 20% | ||
indigoocean | 0 | 1,315,073,364 | 2.8% | ||
primersion | 0 | 312,568,514,513 | 20% | ||
deholt | 0 | 4,096,036,813 | 59.5% | ||
solominer | 0 | 972,310,944,496 | 10% | ||
robmolecule | 0 | 21,850,546,236 | 10% | ||
anneporter | 0 | 2,741,269,934 | 21% | ||
steem.services | 0 | 1,036,903,065 | 1.12% | ||
netzisde | 0 | 1,104,798,975 | 2.8% | ||
diabonua | 0 | 5,470,316,283 | 2.8% | ||
bushradio | 0 | 634,500,538 | 5.6% | ||
pladozero | 0 | 32,968,877,489 | 10% | ||
minerthreat | 0 | 3,685,460,859 | 2.8% | ||
nateaguila | 0 | 142,324,992,464 | 5% | ||
stevenwood | 0 | 3,035,114,682 | 1.86% | ||
temitayo-pelumi | 0 | 6,272,893,396 | 70% | ||
andrick | 0 | 856,559,288 | 50% | ||
doctor-cog-diss | 0 | 55,942,190,325 | 70% | ||
trisolaran | 0 | 1,572,957,951 | 2.8% | ||
musicvoter2 | 0 | 516,277,322 | 1% | ||
realkiki85 | 0 | 5,083,339,479 | 100% | ||
marcuz | 0 | 2,458,587,749 | 35% | ||
cooltivar | 0 | 1,406,391,098 | 1.12% | ||
acont | 0 | 11,934,698,578 | 50% | ||
uche-nna | 0 | 6,044,714,824 | 4.48% | ||
drawmeaship | 0 | 8,224,865,144 | 50% | ||
vietthuy | 0 | 823,076,017 | 50% | ||
hardaeborla | 0 | 1,074,749,360 | 12.5% | ||
barbz | 0 | 102,726,704,456 | 100% | ||
citizendog | 0 | 5,214,875,288 | 5.6% | ||
yougotavote | 0 | 3,310,925,070 | 100% | ||
we-are-lucky | 0 | 224,315,364 | 0.7% | ||
cheese4ead | 0 | 4,490,276,349 | 2.8% | ||
jd4e | 0 | 3,713,758,226 | 50% | ||
mafufuma | 0 | 7,443,468,329 | 1% | ||
gaottantacinque | 0 | 318,242,318 | 100% | ||
cryptojiang | 0 | 129,590,662,289 | 100% | ||
nathyortiz | 0 | 782,987,059 | 2.8% | ||
nattybongo | 0 | 35,081,222,895 | 70% | ||
drsensor | 0 | 995,634,161 | 36% | ||
roozeec | 0 | 493,644,227 | 10% | ||
revueh | 0 | 2,030,442,924 | 35% | ||
qila | 0 | 540,122,681 | 5.6% | ||
ilovecryptopl | 0 | 924,298,740 | 4.48% | ||
purelyscience | 0 | 536,710,580 | 35% | ||
esteliopadilla | 0 | 493,913,111 | 100% | ||
bflanagin | 0 | 7,385,193,555 | 2.8% | ||
ubaldonet | 0 | 1,719,314,096 | 100% | ||
armandosodano | 0 | 12,531,007,122 | 2.8% | ||
yourmind | 0 | 15,119,694,520 | 100% | ||
acousticguitar | 0 | 14,324,070,718 | 50% | ||
marivic10 | 0 | 490,853,933 | 1.4% | ||
acidtiger | 0 | 1,250,508,797 | 2.8% | ||
goblinknackers | 0 | 73,298,823,888 | 7% | ||
zuerich | 0 | 951,076,764,873 | 20% | ||
bambinaacida | 0 | 2,396,217,233 | 50% | ||
reinaseq | 0 | 7,251,053,692 | 100% | ||
vixmemon | 0 | 1,678,407,557 | 4.2% | ||
honeycup-waters | 0 | 624,336,101 | 2.8% | ||
yaelg | 0 | 1,154,791,329 | 1.68% | ||
kylealex | 0 | 4,662,804,143 | 10% | ||
gasaeightyfive | 0 | 648,029,617 | 100% | ||
cubapl | 0 | 4,162,859,595 | 35% | ||
orlandogonzalez | 0 | 3,162,986,080 | 25% | ||
cleanplanet | 0 | 36,222,716,563 | 1.68% | ||
otp-one | 0 | 2,994,771,220 | 35% | ||
fran.frey | 0 | 4,168,786,174 | 50% | ||
perpetuum-lynx | 0 | 2,163,043,676 | 68.6% | ||
hanshotfirst-sm | 0 | 490,920,622 | 5.6% | ||
thelittlebank | 0 | 21,216,189,036 | 2.8% | ||
pboulet | 0 | 120,510,468,587 | 56% | ||
javyeslava.photo | 0 | 604,454,569 | 2.24% | ||
marcocasario | 0 | 200,001,932,258 | 100% | ||
josesalazar200 | 0 | 600,990,600 | 5.6% | ||
starstrings01 | 0 | 75,754,082,150 | 12.5% | ||
stem-espanol | 0 | 19,625,725,768 | 100% | ||
voter003 | 0 | 33,521,756,785 | 16% | ||
voter000 | 0 | 33,789,745,240 | 74.8% | ||
cribbio | 0 | 1,169,460,877 | 100% | ||
cliffagreen | 0 | 4,796,455,766 | 10% | ||
aleestra | 0 | 12,150,332,428 | 80% | ||
palasatenea | 0 | 3,026,714,555 | 2.8% | ||
the.success.club | 0 | 3,399,196,043 | 2.8% | ||
javier.dejuan | 0 | 540,507,211 | 70% | ||
amansharma555 | 0 | 595,961,049 | 100% | ||
naty16 | 0 | 507,847,266 | 1.25% | ||
meanroosterfarm | 0 | 1,404,915,382 | 35% | ||
merlin7 | 0 | 11,340,715,751 | 5.6% | ||
brianoflondon | 0 | 60,845,454,263 | 1.4% | ||
priyanarc | 0 | 83,832,238,266 | 60% | ||
giulyfarci52 | 0 | 1,703,965,031 | 50% | ||
esthersanchez | 0 | 4,785,917,749 | 60% | ||
pauliinasoilu | 0 | 517,974,160 | 2.8% | ||
kristall97 | 0 | 28,185,468,823 | 100% | ||
steemcryptosicko | 0 | 10,827,562,224 | 1.12% | ||
certain | 0 | 1,384,280,001 | 0.67% | ||
alvin0617 | 0 | 493,755,376 | 2.8% | ||
multifacetas | 0 | 1,227,569,184 | 2.8% | ||
cakemonster | 0 | 3,826,393,733 | 5.6% | ||
themightysquid | 0 | 3,812,003,869 | 100% | ||
cowpatty | 0 | 1,476,048,598 | 35% | ||
stem.witness | 0 | 4,220,861,482 | 70% | ||
witkowskipawel | 0 | 981,949,347 | 2.8% | ||
hiddendragon | 0 | 643,498,733 | 38% | ||
chipdip | 0 | 786,233,418 | 10% | ||
pandapuzzles | 0 | 8,020,656,323 | 100% | ||
theskmeister | 0 | 520,930,225 | 100% | ||
autobodhi | 0 | 1,010,775,009 | 5.6% | ||
mechanicalowl | 0 | 653,859,956 | 50% | ||
regularowl | 0 | 1,168,327,296 | 50% | ||
morarnagringa | 0 | 1,234,617,709 | 100% | ||
robmojo | 0 | 996,705,221 | 7% | ||
solox | 0 | 1,017,960,757 | 5.6% | ||
double-negative | 0 | 529,792,913 | 20% | ||
tigerrkg | 0 | 49,229,345,497 | 100% | ||
priyandaily | 0 | 4,627,415,585 | 40% | ||
michaias | 0 | 2,124,398,271 | 75% | ||
jacuzzi | 0 | 29,658,675,280 | 12.5% | ||
vaultec | 0 | 5,015,041,098 | 12% | ||
aqua.nano | 0 | 1,160,503,921 | 100% | ||
steemegg | 0 | 1,051,564,429 | 2.8% | ||
ragnarhewins90 | 0 | 486,388,580 | 10% | ||
jtm.support | 0 | 5,471,624,750 | 70% | ||
edithbdraw | 0 | 807,231,930 | 2.8% | ||
crowdwitness | 0 | 82,586,857,908 | 35% | ||
apokruphos | 0 | 9,399,817,804 | 3% | ||
markwannabee | 0 | 483,558,014 | 100% | ||
hairgistix | 0 | 3,215,679,070 | 2.8% | ||
peter-bot | 0 | 693,364,553 | 100% | ||
dfacademy | 0 | 2,455,433,636 | 2.8% | ||
bluemaskman | 0 | 635,333,788 | 2.8% | ||
steemean | 0 | 10,107,116,149 | 5% | ||
raynen | 0 | 3,980,840,761 | 100% | ||
proxy-pal | 0 | 1,312,349,430 | 5.6% | ||
quentinvb | 0 | 484,174,280 | 100% | ||
deveney | 0 | 482,721,851 | 100% | ||
deriyon | 0 | 487,788,233 | 100% | ||
thelogicaldude | 0 | 1,039,968,033 | 1.12% | ||
medro-martin | 0 | 13,008,962,089 | 95% | ||
aaronkroeblinger | 0 | 110,912,916,680 | 50% | ||
cryptofiloz | 0 | 9,273,624,266 | 5.6% | ||
dawnoner | 0 | 1,681,405,994 | 0.56% | ||
jackramsey | 0 | 890,442,535 | 3.92% | ||
filosof103 | 0 | 1,111,877,026 | 2.8% | ||
concreteshallows | 0 | 1,348,456,990 | 100% | ||
photographercr | 0 | 2,609,436,000 | 1.12% | ||
eliana-art | 0 | 1,064,777,762 | 100% | ||
epicdice | 0 | 926,720,665 | 0.84% | ||
edencourage | 0 | 6,350,370,931 | 50% | ||
robibasa | 0 | 28,286,605,856 | 10% | ||
akumagai | 0 | 20,969,685,030 | 100% | ||
justlee87 | 0 | 2,248,206,250 | 100% | ||
banvie | 0 | 58,193,719,177 | 100% | ||
beerlover | 0 | 1,983,839,997 | 1.68% | ||
newtrailers | 0 | 1,066,752,834 | 5.6% | ||
tinyhousecryptos | 0 | 484,633,279 | 5% | ||
rtron86 | 0 | 4,666,014,408 | 50% | ||
tggr | 0 | 1,329,969,493 | 2.8% | ||
aicu | 0 | 1,547,588,183 | 5.6% | ||
thesoundof | 0 | 1,742,021,680 | 100% | ||
afarina46 | 0 | 1,950,435,249 | 35% | ||
hutty | 0 | 3,634,773,103 | 100% | ||
waraira777 | 0 | 2,171,420,985 | 35% | ||
imbartley | 0 | 830,383,148 | 26.25% | ||
mind.force | 0 | 1,204,257,024 | 1.4% | ||
aicoding | 0 | 582,349,089 | 2.8% | ||
alypanda | 0 | 655,118,117 | 100% | ||
capp | 0 | 9,369,352,368 | 50% | ||
tokensink | 0 | 3,176,464,184 | 5.6% | ||
beta500 | 0 | 3,913,699,500 | 5.6% | ||
nazer | 0 | 2,720,717,646 | 35% | ||
whangster79 | 0 | 160,649,915,028 | 5% | ||
stem.alfa | 0 | 3,537,903,104 | 100% | ||
madisonelizabeth | 0 | 653,185,509 | 100% | ||
precarious | 0 | 487,049,283 | 50% | ||
steemstem-trig | 0 | 5,770,821,236 | 70% | ||
baltai | 0 | 6,365,337,210 | 2.8% | ||
therealyme | 0 | 5,704,174,346 | 0.42% | ||
dmoonfire | 0 | 30,762,363,935 | 71% | ||
atheistrepublic | 0 | 6,311,047,830 | 2.8% | ||
ibt-survival | 0 | 36,433,960,676 | 10% | ||
darthsauron | 0 | 1,492,249,371 | 10% | ||
jennyferandtony | 0 | 1,383,734,593 | 100% | ||
sarahandsam | 0 | 15,395,767,782 | 100% | ||
xerxes.alpha | 0 | 3,167,483,475 | 100% | ||
hjmarseille | 0 | 2,103,001,946 | 49% | ||
steemdiamond | 0 | 720,236,738 | 5.6% | ||
abachon | 0 | 935,466,217 | 5.6% | ||
zerotwo | 0 | 55,694,578,609 | 100% | ||
appics.tutorial | 0 | 36,101,244,454 | 100% | ||
curacer | 0 | 4,262,171,260 | 50% | ||
zirky | 0 | 2,650,140,918 | 4.76% | ||
gloriaolar | 0 | 3,502,092,165 | 3.75% | ||
lightpaintershub | 0 | 661,534,933 | 1% | ||
bilpcoinbpc | 0 | 758,719,147 | 5% | ||
davidlionfish | 0 | 12,815,229,367 | 50% | ||
peterale | 0 | 3,020,862,138 | 2.8% | ||
yunnie | 0 | 754,890,349 | 100% | ||
hive-127039 | 0 | 497,293,235 | 25% | ||
andreina57 | 0 | 690,212,615 | 35% | ||
monica-ene | 0 | 14,083,747,719 | 12.5% | ||
fengchao | 0 | 161,285,109,152 | 20% | ||
fsm-core | 0 | 11,776,413,936 | 50% | ||
educationhive | 0 | 1,744,062,412 | 2.8% | ||
laruche | 0 | 644,367,698 | 0.16% | ||
stemsocial | 0 | 570,708,359,728 | 70% | ||
kronias | 0 | 20,832,348,649 | 25% | ||
ubasi | 0 | 139,335,524,085 | 20% | ||
greenforever | 0 | 1,897,866,665 | 30% | ||
peterpanpan | 0 | 742,264,439 | 1.12% | ||
veeart | 0 | 597,188,753 | 50% | ||
globalcurrencies | 0 | 3,705,949,049 | 100% | ||
holoferncro | 0 | 4,455,706,124 | 10% | ||
the100 | 0 | 4,941,304,717 | 2.8% | ||
hiveonboard | 0 | 3,418,602,970 | 2.1% | ||
emrysjobber | 0 | 1,479,720,368 | 50% | ||
noelyss | 0 | 25,421,393,996 | 35% | ||
jsalvage | 0 | 2,114,923,160 | 35% | ||
quinnertronics | 0 | 16,566,473,281 | 7% | ||
ksam | 0 | 1,308,700,289 | 2.5% | ||
anafae | 0 | 598,446,386 | 1.12% | ||
hivecoffee | 0 | 707,121,947 | 5.6% | ||
mercurial9 | 0 | 70,548,986,089 | 100% | ||
recoveryinc | 0 | 3,259,462,020 | 5% | ||
gohive | 0 | 15,732,582,935 | 100% | ||
sevenoh-fiveoh | 0 | 968,068,760 | 2.8% | ||
lis0426csm | 0 | 5,332,230,624 | 100% | ||
treefiddybruh | 0 | 1,731,348,268 | 2.8% | ||
aabcent | 0 | 12,980,914,906 | 4.48% | ||
davideazul | 0 | 510,381,427 | 5.6% | ||
altleft | 0 | 18,953,303,602 | 0.05% | ||
omarrojas | 0 | 2,813,463,753 | 2.8% | ||
noalys | 0 | 925,124,839 | 2.8% | ||
borniet | 0 | 1,099,169,004 | 2.8% | ||
evagavilan2 | 0 | 895,660,430 | 2.8% | ||
gonklavez9 | 0 | 1,276,833,422 | 70% | ||
mattbee | 0 | 603,271,047 | 100% | ||
apendix1994 | 0 | 3,754,200,886 | 90% | ||
koshwe | 0 | 1,434,716,110 | 50% | ||
chubb149 | 0 | 1,670,931,482 | 8.4% | ||
cosplay.hadr | 0 | 1,221,924,675 | 5.6% | ||
hadrgames | 0 | 1,255,564,866 | 5.6% | ||
rawecz | 0 | 711,494,272 | 5.6% | ||
maar | 0 | 667,170,753 | 70% | ||
bubblegif | 0 | 2,044,589,671 | 2.8% | ||
meritocracy | 0 | 62,706,248,749 | 0.56% | ||
jmsansan | 0 | 3,764,359,937 | 2.8% | ||
blukei | 0 | 638,755,220 | 6.25% | ||
dcrops | 0 | 42,221,939,686 | 2.8% | ||
pimpstudio-cash | 0 | 766,788,805 | 100% | ||
bruno-kema | 0 | 14,155,432,751 | 12.5% | ||
krishu.stem | 0 | 341,136,261 | 100% | ||
samrisso | 0 | 3,510,808,176 | 5% | ||
cescajove | 0 | 2,780,006,757 | 12.5% | ||
hive-126300 | 0 | 490,221,872 | 100% | ||
eturnerx-dbuzz | 0 | 33,643,059,900 | 56.9% | ||
traderhive | 0 | 13,527,817,287 | 5.6% | ||
tawadak24 | 0 | 2,631,720,195 | 2.8% | ||
eturnerx-honey | 0 | 5,338,240,055 | 14.9% | ||
ausbit.dev | 0 | 530,884,417 | 2.8% | ||
vaipraonde | 0 | 9,181,556,495 | 100% | ||
arunbiju969 | 0 | 553,105,020 | 14% | ||
mahirabdullah | 0 | 13,433,591,129 | 25% | ||
farleyfund | 0 | 5,636,953,556 | 100% | ||
limn | 0 | 934,138,302 | 2.8% | ||
maylenasland | 0 | 771,469,404 | 6.25% | ||
wynella | 0 | 1,090,582,024 | 2.8% | ||
tomtothetom | 0 | 1,492,019,790 | 10% | ||
nyxlabs | 0 | 806,199,788 | 3.5% | ||
dodovietnam | 0 | 3,188,635,473 | 2.8% | ||
mayorkeys | 0 | 3,859,389,010 | 30% | ||
oahb132 | 0 | 1,203,548,530 | 35% | ||
failingforwards | 0 | 3,300,716,737 | 2.8% | ||
medch | 0 | 630,748,495 | 1.68% | ||
drricksanchez | 0 | 14,167,931,794 | 2.8% | ||
riandeuk | 0 | 26,360,460,512 | 100% | ||
trouvaille | 0 | 650,915,221 | 2.8% | ||
wendyburger | 0 | 6,059,391,233 | 5% | ||
joseluis91 | 0 | 832,185,920 | 5.6% | ||
miroslaviv | 0 | 2,254,183,738 | 2.8% | ||
m0rt0nmattd | 0 | 3,164,188,308 | 100% | ||
maxelitereturned | 0 | 891,830,167 | 35% | ||
emybaby | 0 | 843,423,976 | 5.6% | ||
mayllerlys | 0 | 484,344,687 | 50% | ||
trippymane | 0 | 1,768,969,496 | 5.6% | ||
nfttunz | 0 | 8,812,106,293 | 0.56% | ||
hive-defender | 0 | 2,574,907,562 | 100% | ||
princessbusayo | 0 | 1,998,216,438 | 2.5% | ||
key-defender.shh | 0 | 543,122,641 | 100% | ||
okluvmee | 0 | 2,639,233,575 | 2.8% | ||
atexoras.pub | 0 | 1,291,829,426 | 2.8% | ||
merit.ahama | 0 | 1,992,820,772 | 1.68% | ||
luisestaba23 | 0 | 914,277,918 | 50% | ||
nozzy | 0 | 6,816,214,987 | 100% | ||
krrizjos18 | 0 | 3,114,544,031 | 35% | ||
holovision.stem | 0 | 145,632,371 | 100% | ||
twicejoy | 0 | 728,560,177 | 2.8% | ||
mirteg | 0 | 1,418,758,518 | 5.6% | ||
sarashew | 0 | 3,914,487,622 | 5.6% | ||
hukepuk | 0 | 12,840,962,157 | 100% | ||
podping | 0 | 8,068,335,986 | 1.4% | ||
davidbright | 0 | 491,312,747 | 2.8% | ||
drhueso | 0 | 1,303,304,744 | 2.8% | ||
pinkfloyd878 | 0 | 4,698,379,465 | 100% | ||
offia66 | 0 | 1,237,249,103 | 25% | ||
lycanskiss | 0 | 2,112,346,123 | 100% | ||
mayberlys | 0 | 2,145,809,192 | 50% | ||
irivers | 0 | 272,995,942 | 100% | ||
miko67 | 0 | 500,563,692 | 2.8% | ||
jaydr | 0 | 1,730,357,297 | 2.8% | ||
trezzahn | 0 | 732,473,944 | 2.8% | ||
laviesm | 0 | 5,815,191,715 | 50% | ||
jimah1k | 0 | 694,025,206 | 5.6% | ||
danokoroafor | 0 | 520,034,392 | 2.8% | ||
tanzil2024 | 0 | 667,529,070 | 1% | ||
torz18 | 0 | 3,957,221,085 | 100% | ||
aries90 | 0 | 47,838,032,043 | 5.6% | ||
finch97 | 0 | 16,127,083,559 | 100% | ||
rencongland | 0 | 580,334,260 | 2.8% | ||
cugel | 0 | 3,693,669,025 | 5% | ||
martinthemass | 0 | 602,994,323 | 100% | ||
chuiiiiiiii | 0 | 1,651,988,348 | 69% | ||
spirit09 | 0 | 52,997,492,609 | 100% | ||
acantoni | 0 | 1,604,137,351 | 5% | ||
migka | 0 | 4,102,279,046 | 90% | ||
iradeorum | 0 | 546,500,072 | 100% | ||
kingz1337 | 0 | 1,325,623,019 | 100% | ||
axelx12 | 0 | 1,774,791,886 | 100% | ||
yorguis | 0 | 2,252,683,372 | 90% | ||
lazy-panda | 0 | 5,436,883,010,803 | 25% | ||
abdul-qudus | 0 | 463,784,735 | 2.8% | ||
zirkonov | 0 | 3,146,702,957 | 90% | ||
riansilva | 0 | 800,083,171 | 50% | ||
anonymous02 | 0 | 507,004,373 | 5.6% | ||
orangeandwater | 0 | 1,996,151,174 | 100% | ||
txracer | 0 | 2,159,306,127 | 100% | ||
h3m4n7 | 0 | 553,323,623 | 2.8% | ||
mistural | 0 | 739,939,833 | 5.6% | ||
jude9 | 0 | 3,422,952,981 | 17.5% | ||
kingz1338 | 0 | 752,197,781 | 100% | ||
kingz1339 | 0 | 751,847,951 | 100% | ||
simonm32 | 0 | 1,749,757,776 | 90% | ||
yixn | 0 | 43,632,271,549 | 2.8% | ||
tanray | 0 | 1,615,875,268 | 100% | ||
alt3r | 0 | 1,251,520,577 | 4.31% | ||
mcookies | 0 | 532,215,481 | 2.8% | ||
waivio.curator | 0 | 1,573,165,862 | 2.99% | ||
raph1 | 0 | 3,667,452,058 | 100% | ||
pompeylad | 0 | 6,048,334,626 | 100% | ||
simsahas | 0 | 2,563,921,275 | 5.6% | ||
iumac03 | 0 | 620,864,415 | 2.8% | ||
drexlord | 0 | 641,947,413 | 1.4% | ||
aichanbot | 0 | 2,079,476,746 | 5.6% | ||
eirth | 0 | 6,165,876,877 | 100% | ||
ehizgabriel | 0 | 715,050,431 | 35% | ||
zerothree | 0 | 50,489,905,201 | 100% | ||
skimanner | 0 | 17,418,697,681 | 100% | ||
crypt0gnome | 0 | 1,105,888,470 | 1.12% | ||
zerofour | 0 | 34,243,081,492 | 100% | ||
checkyzk | 0 | 27,497,557,387 | 98% | ||
deadleaf | 0 | 4,271,858,620 | 100% | ||
albuslucimus | 0 | 1,248,891,894 | 2.8% | ||
marlonfund | 0 | 1,053,923,057 | 100% | ||
gi-de-on | 0 | 1,046,983,422 | 30% | ||
netvalar | 0 | 5,342,842,843 | 50% | ||
lukasbachofner | 0 | 1,985,482,310 | 2.8% | ||
zerozerozero | 0 | 65,389,027,622 | 100% | ||
zerozeroone | 0 | 18,502,964,398 | 100% | ||
sam9999 | 0 | 4,138,855,663 | 35% | ||
benwickenton | 0 | 2,693,833,094 | 5.6% | ||
hopestylist | 0 | 4,082,246,930 | 6.25% | ||
dyptre | 0 | 684,726,019 | 2.8% | ||
annabeth | 0 | 801,027,669 | 5.6% | ||
blackdaisyft | 0 | 17,109,088,541 | 50% | ||
gone-hive | 0 | 944,600,686 | 12.5% | ||
dondido | 0 | 17,936,259,221 | 5.6% | ||
doodleaday | 0 | 36,306,721,804 | 50% | ||
balabambuz | 0 | 718,225,458 | 2.8% | ||
hive-learners | 0 | 680,730,471 | 25% | ||
draconiac | 0 | 487,726,451 | 100% | ||
the420syndicate | 0 | 1,089,017,775 | 100% | ||
bhdc | 0 | 2,073,625,368 | 5.6% | ||
b8l | 0 | 2,109,604,572 | 100% | ||
archangel21 | 0 | 660,008,053 | 5.6% | ||
street.curator | 0 | 960,687,936 | 50% | ||
matilei | 0 | 1,250,636,583 | 5.6% | ||
niglys | 0 | 2,823,779,803 | 12.5% | ||
olujay | 0 | 6,669,161,606 | 12.5% | ||
mugueto2022 | 0 | 565,297,293 | 20% | ||
windail1 | 0 | 2,124,360,742 | 100% | ||
jaylatour | 0 | 579,425,403 | 5.6% | ||
nazom | 0 | 829,901,163 | 35% | ||
onos-f | 0 | 562,667,786 | 2.5% | ||
kryptofire | 0 | 1,850,826,444 | 8% | ||
mr-rent | 0 | 4,026,792,456 | 75% | ||
youdontknowme | 0 | 1,192,139,441 | 6.25% | ||
adaezeinchrist | 0 | 1,072,170,862 | 12.5% | ||
sbtofficial | 0 | 4,502,812,112 | 2.8% | ||
nwothini335 | 0 | 696,514,919 | 35% | ||
protokkol | 0 | 2,265,234,503 | 100% | ||
mukadder | 0 | 606,200,017 | 2.8% | ||
vagabond42069 | 0 | 1,515,445,844 | 35% | ||
vragolana | 0 | 773,138,888 | 2.8% | ||
cindynancy | 0 | 1,419,986,788 | 35% | ||
gejami | 0 | 5,576,713,140 | 100% | ||
daje10 | 0 | 10,746,308,846 | 50% | ||
era131 | 0 | 453,428,229 | 5.6% | ||
cleanyourcity | 0 | 11,877,662,566 | 1.68% | ||
sc000 | 0 | 1,377,751,118 | 5.6% | ||
cardcompounding | 0 | 1,907,158,483 | 100% | ||
vankushfamily | 0 | 676,334,229 | 35% | ||
cryptoshotsdoom | 0 | 8,234,107 | 10% | ||
tuba777 | 0 | 1,562,696,243 | 35% | ||
smariam | 0 | 2,411,925,986 | 25% | ||
minas-glory | 0 | 3,563,346,190 | 2.8% | ||
clpacksperiment | 0 | 2,903,410,663 | 2.8% | ||
the-grandmaster | 0 | 3,734,424,044 | 2.8% | ||
the-burn | 0 | 3,741,754,013 | 2.8% | ||
moremoney28 | 0 | 1,364,663,274 | 12.5% | ||
hive-195880 | 0 | 1,793,140,616 | 5% | ||
peniel2010 | 0 | 4,348,155,170 | 50% | ||
hive-179513 | 0 | 1,943,068,029 | 50% | ||
ninjakitten | 0 | 16,318,884,659 | 100% | ||
abu78 | 0 | 5,149,235,011 | 24.5% | ||
reverio | 0 | 1,106,241,956 | 5% | ||
gunting | 0 | 3,088,824,848 | 100% | ||
txerritxoa | 0 | 87,619,694,972 | 20% | ||
lettinggotech | 0 | 1,313,752,265 | 2.8% | ||
cyclopshive | 0 | 4,387,288,036 | 50% |
I started running the code of your quizzes instead of guessing because they're harder than they look. But there's one important thing I learned about Python: while values have a type, variables don't. They're just references to a value object. This is more logical and convenient than the variable types that other languages have, in my opinion. I didn't even know you could initialize variables with a type.
author | edb |
---|---|
permlink | re-eniolw-rx7zqe |
category | hive-153850 |
json_metadata | {"tags":"hive-153850"} |
created | 2023-07-03 12:23:03 |
last_update | 2023-07-03 12:34:48 |
depth | 1 |
children | 1 |
last_payout | 2023-07-10 12:23:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.014 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 409 |
author_reputation | 35,653,564,934,000 |
root_title | "My Coding Quiz #5" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 124,998,226 |
net_rshares | 70,093,095,570 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dustsweeper | 0 | 69,946,080,455 | 8.19% | ||
stemgeeks | 0 | 147,015,115 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% |
It's great that it made you think and you're learning things. That's part of the point! I'll talk more about the type issue in the next quiz.
author | eniolw |
---|---|
permlink | re-edb-202373t114521864z |
category | hive-153850 |
json_metadata | {"tags":"hive-153850","app":"ecency/3.0.33-vision","format":"markdown+html"} |
created | 2023-07-03 15:45:21 |
last_update | 2023-07-03 15:45:21 |
depth | 2 |
children | 0 |
last_payout | 2023-07-10 15:45:21 |
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 | 141 |
author_reputation | 255,223,074,416,427 |
root_title | "My Coding Quiz #5" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,002,820 |
net_rshares | 0 |
Por aqu铆 mi respuesta: -5.0 <class 'float'>
author | rafaelaquino |
---|---|
permlink | re-eniolw-rx8yqr |
category | hive-153850 |
json_metadata | {"tags":["hive-153850"],"app":"peakd/2023.6.5"} |
created | 2023-07-04 00:59:15 |
last_update | 2023-07-04 00:59:15 |
depth | 1 |
children | 1 |
last_payout | 2023-07-11 00:59:15 |
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 | 45 |
author_reputation | 110,423,639,605,208 |
root_title | "My Coding Quiz #5" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,016,352 |
net_rshares | 0 |
Ok, ya veremos!
author | eniolw |
---|---|
permlink | re-rafaelaquino-202374t01734147z |
category | hive-153850 |
json_metadata | {"tags":["hive-153850"],"app":"ecency/3.0.33-vision","format":"markdown+html"} |
created | 2023-07-04 04:17:33 |
last_update | 2023-07-04 04:17:33 |
depth | 2 |
children | 0 |
last_payout | 2023-07-11 04:17:33 |
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 | 15 |
author_reputation | 255,223,074,416,427 |
root_title | "My Coding Quiz #5" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,019,947 |
net_rshares | 0 |
<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-5-20230704t054352358z |
category | hive-153850 |
json_metadata | {"app":"STEMsocial"} |
created | 2023-07-04 05:43:51 |
last_update | 2023-07-04 05:43:51 |
depth | 1 |
children | 0 |
last_payout | 2023-07-11 05:43:51 |
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,918,229,493,305 |
root_title | "My Coding Quiz #5" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,021,717 |
net_rshares | 0 |
I would guess -5, class int
author | zuerich |
---|---|
permlink | re-eniolw-rx7v06 |
category | hive-153850 |
json_metadata | {"tags":["hive-153850"],"app":"peakd/2023.6.5"} |
created | 2023-07-03 10:40:54 |
last_update | 2023-07-03 10:40:54 |
depth | 1 |
children | 1 |
last_payout | 2023-07-10 10:40:54 |
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 | 27 |
author_reputation | 170,924,009,565,596 |
root_title | "My Coding Quiz #5" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 124,996,405 |
net_rshares | -16,363,983,962 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -7,010,831,804 | -0.25% | ||
stemgeeks | 0 | 147,250,298 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
scamforest | 0 | -1,830,480,427 | -2.5% | ||
samuraiscam | 0 | -7,669,922,029 | -2.5% |
Ok, we'll see ;)
author | eniolw |
---|---|
permlink | re-zuerich-202373t114539264z |
category | hive-153850 |
json_metadata | {"tags":["hive-153850"],"app":"ecency/3.0.33-vision","format":"markdown+html"} |
created | 2023-07-03 15:45:39 |
last_update | 2023-07-03 15:45:39 |
depth | 2 |
children | 0 |
last_payout | 2023-07-10 15:45:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.042 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 255,223,074,416,427 |
root_title | "My Coding Quiz #5" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 125,002,827 |
net_rshares | 192,713,525,661 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
zuerich | 0 | 192,713,525,661 | 4% |