Not Safe For Brain
56 subscribers
306 photos
4 videos
12 files
337 links
Download Telegram
its always some cocksuckers who get offended on dumb shit and ruin a good manhwa for everyone.
https://comick.cc/comic/00-true-education was one of the best manhwa out there, but was put on hold after ch 125 becoz some bitches took work of fiction too deep inside their ass 🤬
now its continuing but author dropped last arc and did not continue where he left off
Today I wrote a code for finding digital root of a number for college assignment, I wrote the code for it using the description of digital root given in the question itself. Here is what I wrote
int dr(int n)
{
int sum = 0;
while(n)
{
sum += n % 10;
n /= 10;
}
return (sum / 10 == 0) ? sum : dr(sum);
}


but while searching internet for more details about digital root I came across this
int digital_root(int Z)
{
return --Z % 9 + 1;
}


sometimes codes like this makes me realise how computer science is a sub field of mathematics (which I am terrible at) and makes me question my carrier choice
When will I retire
> its weekend
> have English extra class at 8 am
> The English teacher is unable to connect to wifi
> she starts telling how women are exploited because she is not able to connect to wifi
If Life is a async loop then I am on await since 2020, stuck with no callback to resume back to normalcy
This media is not supported in your browser
VIEW IN TELEGRAM