• 0 Posts
  • 4 Comments
Joined 1 year ago
cake
Cake day: June 14th, 2023

help-circle


  • I unsubscribed after reading Madison’s thread. Anyone who’s gotten stuck in a toxic work environment knows just how crushing it is mentally. Constant low-level anxiety, feelings of dread, and the inability to even decompress off the clock due to intruding thoughts, replayed arguments, feelings of being gaslit, and the knowledge that it’s all going to happen again tomorrow. Combine that with the sexual assault allegations and it’s not surprising at all that she’d self harm.

    If even 10% of her story is true we’re looking at systemic failures in the entire management chain both to recognize and triage toxic behavior, and to demonstrate professionalism and lead by example.


  • This is interesting. Naively I’d expect that each number in a shuffled array of length n has a 1/n chance of ending up in the correct position, so there ought to be on average 1 correctly placed number regardless of the array length. I might be neglecting a correlation here, where each incorrectly placed number decreases the odds for the remaining numbers. Assuming the above though, the whole problem becomes recursive, since we’d be left with an unsorted array of length n-1 on average. The expected number of sorts would then just be n. For the time complexity, we’d have O(n) for the original shuffle, plus O(n-1) for the next, and so on, yielding O(n^2) overall.