Human Sort: When you see an unsorted list, sort it manually using your brain
@YourLocalScratchLoverКүн бұрын
ohh yea we're going down to the singular atoms, you have to wrote 1200 digits for print command and have to input the value for each letter with a space inbetween in base one using 0 width joiner
@EigenMaster2 күн бұрын
When he started to talk about those quantum nonsense I lost it 😂
@pandoktorek26972 күн бұрын
3:12 Unexpected ”;” at colum 22, line 1
@alexandregb5663 күн бұрын
Why is there a red dot on my face?
@chrisalex824 күн бұрын
16:51 hmmm... very.. interesting
@lazylavalamp80154 күн бұрын
"Already sorted" sorting algorithm: This algorithm will say symbols used for numbers are subjective and will assume the array is already sorted. So in 905147, it thinks '9' is the symbol for the lowest numerical value in the array, 0 is the 2nd lowest value and so on and assumes it's already sorted Edit: I guess I'm not the only one who thought of this lmao
@mohammadshabih52934 күн бұрын
yoh bruh same man, my uni has degree with comp science + elec engineering, and I'm so glad im doing the minor in elec engineering, I need that hands on experience, all the comp sci projects we did this year were ASS
@dewmmd5 күн бұрын
thanks, taking notes
@leepyfemboi9 күн бұрын
14:00 i always have to beg and plead for my programs to run properly 😭😭
@leepyfemboi9 күн бұрын
2:30 bro just dissed anyone who puts milk first lol
@hasanmuttaqin46410 күн бұрын
def user_sort(arr) if not isSorted: return "please enter a sorted list" return "[" + " ,".join(arr) + "]"
@neymaneyma1110 күн бұрын
Everyone just gonna ignore that he didn't run "Hello World" in Sketchpad and Cube?
@lolnationhere11 күн бұрын
9:58 wth happened with the cubes 💀
@jacklazzaro982011 күн бұрын
3:43 ice video source?
@mikeyhasfuntoo916411 күн бұрын
The people who claim that Bogo sort is the best are the same people who live in a campervan and always talk about crypto
@isweartofuckinggod12 күн бұрын
Gravity Sort? It's where you turn the whole list sideways and let the top parts of elements that overhang eachother fall.
@Peksin_Videot-Official12 күн бұрын
Fun Fact : ArnoldC is a finnish programming lanuage
@marcusvincentolviga782012 күн бұрын
ahh, trinary
@Creativestname13 күн бұрын
Sort it one at a time but displace the two surrounding values randomly when you place a value somewhere
@thepianokid937813 күн бұрын
geometry dash triggers when
@hvd9513 күн бұрын
I personally find it hard to read code in dark theme. Especially at night, it makes everything blurry. I had to increase text size a lot.
@julesharris638314 күн бұрын
λ calculus is lvl 11
@julesharris638314 күн бұрын
Lvl 11: ο 5:09
@hiLotiYT14 күн бұрын
i'm noob becuz i know only js, ruby, scratch, python, and started learning c#
@robloxminecraft914 күн бұрын
you cant type this ¥<Ax*p?ø Òe�Gÿþ*ª¬¥%+ÿ@ª%)UkI¥T
@peterpopovics879414 күн бұрын
I love you man! You’ve restored my faith that I’m not a complete idiot for preferring Light mode.
@vader56716 күн бұрын
Ah yes sorting algorithm, one of the most controversial topic in philosophy
@PaiShoFish49-bk2ru16 күн бұрын
wishful sort: go through the array once, keeping track of the minimum, maximum, and total number of elements. when you're done, make a new, idealistic version of your array. it will perfectly sort your array in O(n) time, and can actually be useful in certain cases, like if you just want an estimate of the data you're working with or if you already know that the input data has a pattern. if you did this for all those sorting algorithm animations, it would absolutely dominate.
@AtreyuKillsit16 күн бұрын
I'm working on something like ArnoldC, but instead. it's just normal phrases. For example, if you want to say print(Hello World!), you would do this. Let's begin! Say this: Hello World! Goodbye!
@gromaxe17 күн бұрын
I'd create a programming language that is a dnd character sheet and a log of campaign
@Patryk128pl17 күн бұрын
Post sort - send table elements separately via post to yourself hoping that mailman will deliver them in sorted order. If not, then repeat the process.
@raviormetal165318 күн бұрын
What about mentioning the current attempts to remove passwords alltogether using Passkeys?
@TheSenator00718 күн бұрын
Sports sort: Assign each participant in a sports event an element of the list, then use the order in which they finish to rearrange the list. If it's not sorted, repeat for another sports event
@Naglfar8318 күн бұрын
I was a huge advocate of dark themes for many years. But one fine day I noticed that I always needed to dim the lights in my room during the day to not get eyestrain after a day's work. So I said to myself: "This is stupid. It is daytime and I want AND need sunlight!" So I switched to a light theme and this works perfectly for me. I can't really tell if I am able to concentrate better, but it also hasn't got any worse. In the evening my OS automatically switches to the dark theme as it then gets much easier to read. Yes, I think dark themes look better. But that alone doesn't justify using them during the day when it makes no sense at all.
@Markty0718 күн бұрын
What about sleep sort but you make an offset to make the smallest number act like it's sleep(0) even if it's not and the largest and arbitrary amount of time not too small to get bad sorts but not too long to be annoying
@Pestisior18 күн бұрын
"We need to find a code in order to progress bro!" 0001, 0002, 0003, 0004, 0005... "Are we really doing this?"
@derAlphabet18 күн бұрын
This is one application for intelligent design that I like. Just define the list as sorted and thank the Sorter! 😅
@lilcaps19 күн бұрын
Miracle sort is on another level
@tallo_gamer_compu19 күн бұрын
maybe, ¿IT´S A JOJO REFERENCE? 10:16
@CubeCatGaming19 күн бұрын
Multiplication Sort: Create a duplicate of the list and randomize the order of numbers in the duplicate. Then, take the 1st number in the original list and multiply it by the 1st number in the duplicate list, multiply the 2nd number in the original list with the 2nd number in the duplicate list, and so on. Once this is formed, one list should remain. Check to see if that list is sorted. If not, repeat until it is. It can technically work, but the odds are very low.
@onddu225419 күн бұрын
My favourite is finding random numbers via undefined behaviour (like accessing the 10th element of a 5 long array) and checking if I happened to get the numbers of the original list sorted.
@jacklyons-n4n20 күн бұрын
I made my own programming language! its made to be very small and simple! here is a "hello world!" prompt: :prnt; ('Hello_World'!') 1 ln (_= ) :prnt; means to print, (' ') is to say something Hello_World'! is the words to say 1 ln means the prompt in one line (_= ) says that an underscore means one space
@Notsogoodguitarguy20 күн бұрын
My algorithm? Sweatsort - you hire a sweatshop full of illegal workers to sort the array. After each iteration, if it isn't sorted, dock a month's worth of pay and give it back for sorting.
@MeepChangeling20 күн бұрын
Acceptance Sort: Wherein you simply accept the order the list is in is the order the list is in and move on with your life.
@Regulardryad20 күн бұрын
Goblinsort: O(1): Step 1. Good enough, lets go break or steal something.
@AntonioCornejo-x2z20 күн бұрын
Esolang idea: the code has a reversed control code, if you make a code that shows smth like 1 print(no); 2 print(parties); 3 print(allowed); It would come out as "dewolla seitrap on"
@coolmcer5721 күн бұрын
Nice video! I've been researching the history of VPLs for a few years now and here's some interesting info I've found: * The brother of Ivan Sutherland, William Sutherland, also developed a system very similar to Sketchpad, but specifically for programming with flowcharts, in 1966. This was on the same computer as Sketchpad, the MIT TX-2. There's a demo video of it on KZbin called "Programming with On-Line Graphics". * Scratch was actually inspired by another block-based programming language, LogoBlocks, developed at MIT in 1995 to control Lego robots, which were eventually sold as the first Lego robotics kit, the RCX, in 1998. The programming language you use to control the RCX is very similar to LogoBlocks!
@Billy123a21 күн бұрын
I got too scared seeing the guy who watches ur video and didnt subscribe and i subscribed and liked instantly