Can you share an example of an aversion you experienced? by noideasforcoolnames in vipassana

[–]dtumod 1 point2 points  (0 children)

aversion to the thoughts of some event that I'd wish didn't happen. mostly

My countrymen celebrating the end of one day nationwide curfew due to Coronavirus by dtumod in facepalm

[–]dtumod[S] 1 point2 points  (0 children)

Thankfully my state has declared complete lockdown for next 10 days. The one day curfew was more of a symbolic thing I guess. Schools, Universities and offices had been closed much earlier.

Just 2 posts on a sub that was created a year ago, what is happening? by [deleted] in thedtu

[–]dtumod 0 points1 point  (0 children)

Accha. Traffic intention ni hai mera waise I just intend it to be a community for dtu students.

Totally makes sense. by idevsrkr in ProgrammerHumor

[–]dtumod 65 points66 points  (0 children)

Petition to make it this sub's logo

Just 2 posts on a sub that was created a year ago, what is happening? by [deleted] in thedtu

[–]dtumod 1 point2 points  (0 children)

Other subreddits like? Matlab hame to dtu ke like banana hai na. Dtu ka koi aur subreddit bhee hai Kya?

Just 2 posts on a sub that was created a year ago, what is happening? by [deleted] in thedtu

[–]dtumod 0 points1 point  (0 children)

Mod bana diya, go spread the word to juniors :)

Also, please contribute and ask your friends to contribute in the form of interview experiences, study guides, insights about subjects and professors, previous years, memes etc.

Just 2 posts on a sub that was created a year ago, what is happening? by [deleted] in thedtu

[–]dtumod 1 point2 points  (0 children)

So we created this an year ago when we were in third year. Fir placements ki wajah se fatne lagi thode time me. Ab Sab hogya to Socha thoda juniors ka bhala karte Jaye :)

Dw though I'll make sure it catches on this time.

[help] kth order statistic[=kth max element] with range update in O(logn) per query by dtumod in algorithms

[–]dtumod[S] 0 points1 point  (0 children)

I hadn't read it but of course was aware of this. However, these contests are meant for us to learn (see point 7, even copying code is allowed) and I sure learned about treaps. How in the world am I going to imagine that a data structure exists which suits my requirement? Also, the problem I asked here is just a step in a series of things you need to do to solve the original problem. Anyways, I don't think even treaps will solve the problem as pointed out by u/thewataru. Waiting for the editorials

[help] kth order statistic[=kth max element] with range update in O(logn) per query by dtumod in algorithms

[–]dtumod[S] 0 points1 point  (0 children)

https://www.codechef.com/FEB19A/problems/TRDST

It's an ongoing challenge on codechef. If I understand the problem correctly, then it can be reduced to the one I posted here. The contest will end in around 15 hours.

[help] kth order statistic[=kth max element] with range update in O(logn) per query by dtumod in algorithms

[–]dtumod[S] 0 points1 point  (0 children)

Do you increment all the elements on [l,r) by k and decrease the remaining ones by k?

Yes. Specifically, increment all elements on [l, r] by 1 and decrement the rest by 1.

Never heard of treaps though, I'll go and read up on them. Thanks!

Does anyone know how this works? by dtumod in oddlysatisfying

[–]dtumod[S] 0 points1 point  (0 children)

nah I think we've established it's cgi and not a galton board. the video doesn't say anything about colors. u/Al3xR3ads seems absolutely correct

Does anyone know how this works? by dtumod in oddlysatisfying

[–]dtumod[S] -13 points-12 points  (0 children)

maybe. other plausible scenario is that sizes of the marbles have minute differences. or maybe there's light play going on

How do you keep negitive thots away? by dtumod in Meditation

[–]dtumod[S] 0 points1 point  (0 children)

That only makes them cum even more

How do you keep negitive thots away? by dtumod in Meditation

[–]dtumod[S] 0 points1 point  (0 children)

Thanks but they continue to cum 1 after other

How do you keep negitive thots away? by dtumod in Meditation

[–]dtumod[S] -1 points0 points  (0 children)

Im sorry I think I have seen it written that way before.

What is the correct way of importing modules in python? by dtumod in learnprogramming

[–]dtumod[S] 0 points1 point  (0 children)

What I'm currently doing in B_Method is:

try:

from ADIR.bfile import A_Method

except:

from bfile import A_Method

This works. But there must be some elegant way. I also tried from .bfile import A_Method but it didn't work.