#sorted array
Explore tagged Tumblr posts
doctahchang · 1 year ago
Text
obsessed with the fact that chakotay's maquis ship was called 'val jean'. are all maquis obsessed with les mis. was it an obligatory read. did the guy name it himself. why the spelling error. did he secretly ship javert and valjean. because that would explain a lo- [gunshot]
37 notes · View notes
aphel1on · 5 months ago
Text
Tumblr media
Rereading this part of mdzs for no particular reason (😇) and laughing so hard bc
- Ppl really overstate the degree to which post-rez wwx is just a silly goofy innocent twink like. here he is spouting off a yllz style torture fantasy in his head unprompted. BRO'S STILL GOT IT
- he hated xue yang SO much from the moment he heard about him lmfao!! the diff between his attitude on XY vs his attitude on any other antagonist he meets post-rez is always interesting to me. i mean the first thing wwx heard of him is "oh yeah people somewhat blame you for his evil acts bc he was using the techniques you developed also oh yeah he rebuilt your doomsday weapon that you thought you destroyed and no one had to worry about anymore". tbh i do think wwx felt somewhat responsible
- "this little punk is out here doing disproportionate retribution on people >:( what if I did disproportionate retribution on HIM" ok, not getting into debate on the jianghu's opinion on the morality of torture, or whether it can be considered proportionate to anything. from MY perspective it's rly funny
- "Rip to people who don't run off in singleminded bloody revenge on the ppl who hurt their family out of consideration of their remaining family, but I'm different." + specifically referring to this as "dragging an opponent down with you". Never considered it from this angle before but wwx is pretty clearly reminded of the massacre of the Jiangs while empathizing with Chang Ping here. The subconscious(?) recognition from wwx that his revenge was destructive to himself and his loved ones I also find really interesting
8 notes · View notes
alkarinque · 2 years ago
Text
i enjoyed Trees in Paradise: A California History soo much
Tumblr media Tumblr media Tumblr media
104 notes · View notes
eeveekitti · 1 year ago
Text
Tumblr media
day 10: worm grass
its late and simple but im suffering Art Block okay
27 notes · View notes
orcelito · 2 months ago
Text
Got jumpscared by my own full legal name showing up in my email notifications bc I forgot I emailed my code to myself today just in case my VM ends up stopping working again (I got nervous & didn't wanna lose my progress lol)
Goldfish level memory retention
& the funny thing is that the email itself is just. This
Tumblr media
Full Legal Name code • hi
#speculation nation#title 'code' email is just 'hi'. with the .c file attached of course#honestly i had a very productive day in lab today. i got the core structure of the program down and made sure it all worked#testing it with One of the sorting algorithms. and it worked!!#the lab is to code functions for different kinds of sorts. like bubble sort selection sort and uhh. some other shit idr rn#and have the functions take timestamps from before and after they run the sorts to calculate the elapsed time#and we have to run this for array sizes of like. 10 50 500 etc etc up to like 50000 or smth? if i remember right.#and then once all that's done we take the output and graph the time elapsed for each type of sort/search per array sizes#so today at lab i made the random array generator function. a swap function. the execution function. bubble sort. and main.#main calls the execution function passing in the array sizes. execution(10); execution(50); etc#execution defines the array of that size. then calls the random number generator to populate the array. then passes it to the sort functions#tested with my one bubble sort function. which finished in like 0.00003 seconds or smth for array size 10#BUT taking the time stamps was tricky. there are a lot of ways to do that. and time(); in c is in full seconds#i ended up asking the TA if he had a recommendation for what to use bc theres a LOT of time functions out there#and full seconds isnt precise enough for this purpose. & he recommended clock()!!#records number of clock ticks which is NOT the same as seconds. but when u divide it by uh. forgetting it rn but it's a constant#that will turn it into actual seconds. clock tics per sec?? smth like that.#so anyways very productive 👍 i just need to set main up to call execution function for all the different array sizes#and then write all the functions for the different sorts/searches. but i have the core structure down with the bubble sort function#(specifically with the time stamps and the print function after) that i will copy-paste for all the other functions#and then inside them i put the basic code. none of it's complicated. all can be found on the internet easy.#SO!!!!! honestly i think itd take me less than an hour to finish. tho plotting out that graph is going to be annoying#something like 6 sizes per 5 sort/search functions. painstakingly copy pasting each one into excel or smth lol#but yea im content with how much ive gotten done. yippee!!!!#now i just need to finish my web programming lab before sunday night. blehhhhh
2 notes · View notes
pretend-pretend-vampire · 6 months ago
Text
if I could figure out how to make a button that would take you to a random post tagged with a certain tag on a specific blog on tumblr I would make a random spc generator SO fast
3 notes · View notes
hauxicrook · 1 year ago
Text
Tumblr media
6 notes · View notes
thornsent · 7 months ago
Text
anyway god willing the gf will be down to play sea of thieves soon so I can go back to sailing the high seas as a trans + intersex pirate who actually looks like me :')
5 notes · View notes
skybristle · 10 months ago
Text
fun bh fact again: sparks is ambidextrous
4 notes · View notes
jaevy · 2 years ago
Text
Seeing people in the comp sci discords so confidently wrong is a little… scary
Like broooo why are you trying to help other people????? Look at your own code first your ass is NOT gonna live past the easy as hell example test cases
3 notes · View notes
unfortunate-development · 1 year ago
Text
i think every single chore should be as easy and rewarding for me as laundry is
3 notes · View notes
tinchicus · 20 days ago
Text
Esta funcion nos permite ordenar todos los elementos en un array. Espero les sea de utilidad!
0 notes
justnshalom · 2 months ago
Text
Mastering Array Manipulation in JavaScript: A Guide for Amazon Interview
Introduction Arrays are one of the most fundamental data structures in JavaScript, and mastering array manipulation is crucial for any developer. If you are preparing for an Amazon interview, you must have a solid understanding of array operations, as they are commonly asked in technical interviews. In this guide, we will explore the key concepts of array manipulation in JavaScript and provide…
0 notes
orcelito · 1 month ago
Text
Started working on my C lab. Remembered how good of a position I left myself in after last week, so yay!! It won't take too much effort to finish.
I'm not gonna finish before lab tho, both bc I dont really have time (whoops I dragged my feet with starting it this morning) but also I realized. Well the sort functions are self-explanatory. Randomly generate an array and then sort it, timing how long each sort takes to do it. But then the search functions... *what* are we supposed to be searching???? That's. Not stated in the document. So I'm gonna ask the TA about that.
#speculation nation#also i think binary search needs them to be sorted already??? so uh. whats the deal here#but i got the bubble sort function done. gotta put in the code for insertion and selection sorts using the bones from the bubble sort#aka i copy pasted all the time stamp and print shit from the bubble sort to build off of. bc it's the same for these too#just that middle part. the loops themselves. those are different. but i can also find those online easy#also the professor literally Gave us the code in class. but im gonna double check them with online stuff too#just in case. since i wrote them down and he wrote them down on the board. several steps where mistakes could be made#the searches probably wont be difficult either. theyre still taking the same time stamps and printing thing from the sorts#just. searching instead. but *what* are they searching... thats what i need to know.#adding in the increased array sizes will be easy peasy. bc i just need to call the execution function additional times for each array size#then the code will do the rest.#graphing all of this output will take some time But so long as i can find out what im fuckin searching early in the class#i could still finish before the end of lab. plus i think i only really need my code checked off#like i gotta get my lab checked off before i can turn it in. which is why i have to have it done b4 the end of lab#even tho the lab is technically due at 11 pm tonight.#and i have to turn in my code And the graph i make from its output... but i dont Think the graph has to be checked off?? idk.#i'll ask i guess. either way i still feel like i'll finish with plenty of time. i got this 👍
1 note · View note
ladyofthebookcase · 6 months ago
Text
average rain deer ride
youtube
and here it is on youtube
23 notes · View notes
relto · 6 months ago
Text
gotta love that all the php docs you can find tell you that calling oci_new_descriptor will let you create an empty lob object, which keeps failing, and then i find a random bug report from 2006 about this exact thing not working and it turns out this function does in fact NOT create a valid lob object.
1 note · View note