this post was submitted on 21 Dec 2024
73 points (94.0% liked)
Fun Loops ▶️
788 readers
1 users here now
Posting interesting/cool/funny videos from Loops here
Thanks to @Bluefruit@lemmy.world for the icon and banner!
Discussion of and questions about Loops should go over in !loops@lemmy.world
If the loop you're posting isn't original content uploaded by the creator, prefix the title with ♻️
or [R]
(if you don't feel like typing an emoji) for "reposted". For example, ♻️ Cute dog
or [R] Cute dog
.
Note that some loopers upload their loops to multiple platforms including Loops, so you might see insta/tiktok logos on videos that aren't marked as reposts.
If you know the source for a loop marked ♻️
/[R]
, please comment with it!
Rules:
- Don't be a dick
- Don't make me add more rules
founded 6 months ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Why does the sort one work? 🤨
It doesn't, the array is still in the same order it started in, it's members are just printed to the console in numerical order.
It just prints the number 1 after 1 ms, 2 after 2 ms, 3 after 3 ms etc.
Instead of print you could add them to a second array, though. Even clear the original first for "in place" sorting; never mind the memory allocation for the lambdas.