Earlier quoted context omitted.
Nobody can do this on their own. You don't get to do this by having a great aptitude for high school maths and then being exposed to one or two more concepts that just intuitively click - which is enough to be competitive at the level you describe, though not enough to make the US Olympiad team. You get the level of understanding necessary to create this blog post by already having worked through several textbooks an…
The picture says 95% are unable to solve this - I wonder what the correct percentage is. Closer to 99.999% I would guess, based on your explanation.
The emoji problem (2022)
21–30 of 71 posts
Re: The emoji problem (2022)
#22Re: The emoji problem (2022)
#23Re: The emoji problem (2022)
#24Re: The emoji problem (2022)
#25It's year 2025, why doesn't the author use actual fruit emoji for variable names?
While current year is 2025, the year the language was made in probably isnt
The reasons are complicated but, many people prefer unicode normalization so that different forms of what appear to be the same word are considered the same word. People argue whether or not this is important but it can certainly be argued that it would be frustrating to get an error like
let café = 1;
café += 1; // error, unknown identifier 'café'
The error happens in non-normalizing languages because those to idenifiers are not the same unicode.But, choosing a normalization affects emoji as well. Worse, when new ones are added the normalization rules can change.
Re: The emoji problem (2022)
#26Earlier quoted context omitted.
you seem to be missing this idea that mathematics must be doable alone, individually this appears to be what sets mathematics appart from science? I mean, it's not like Euler, or Poincaré, and so on, are really there with you when "doing math" point being, mathematics is not a team game. but everything else is??
When I'm teaching congruence or the Gauss method to solve equation systems, I tell my students: " You can solve the midterm alone or with the ghost of Gauss sit on the side chair. "
Pity I'm by far the weakest link in such team-ups. :)
Re: The emoji problem (2022)
#27Re: The emoji problem (2022)
#28I remember the problem when it first appeared, we had a good laugh at the number theory seminar :)
Re: The emoji problem (2022)
#29There is a great quora answer for this one: https://www.quora.com/How-do-you-find-the-positive-integer-s...
Re: The emoji problem (2022)
#30It's year 2025, why doesn't the author use actual fruit emoji for variable names?
Unfortunately most modern languages like Rust and JS follow the XID_Start/XID_Continue recommendation (not very well-motivated imo) which excludes all emoji characters from identifiers.