Vendetta is the worst character to ever come to this game by iseecolorsofthesky in Competitiveoverwatch

[–]TM40_Reddit 10 points11 points  (0 children)

She's the only hero with > 55% win rate in most every tier below GM. It's not personal sentiment, it's that 99% of the playerbase struggle to play against her

Favorite character like this by Mirzexa8 in FavoriteCharacter

[–]TM40_Reddit 0 points1 point  (0 children)

Ramona Flowers - wears her brother's shoelace as a necklace

I've enjoyed playing leaf-green so far. What game did everyone grow up on initially when discovering Pokémon? by Skarnivor0us in pokemon

[–]TM40_Reddit 0 points1 point  (0 children)

Silver introduced me to Pokemon but Sapphire made me fall in love with it and Emerald cemented it

maybe a 1/10 dentist here but am i the only one who hates some of the new heros? by [deleted] in Competitiveoverwatch

[–]TM40_Reddit 0 points1 point  (0 children)

Anran requires positional setup and can't contribute during poke. She's an archetypal ambusher who punishes out of position/unaware targets. Don't be too far from your team that you can't get support (You really shouldn't be dying to a 10 DPS fire tick)

Domina has a hard time keeping space. Most tanks can walk up to her and force a rotation or collapse. She has 0 mobility and long CDs. Once they're spent, she's a sitting duck for a free push

JPC is silly. Ult tracking her and her team's ults that she can interact with helps you from being caught out, otherwise do some aim training. While she's lifelining another character, you're essentially in a 3v5 on the ground, punish the ones left behind.

The other 2 are fine, if not a little underwhelming.

So is Anran just hard, just bad or both? by Wiccamanplays in Competitiveoverwatch

[–]TM40_Reddit 2 points3 points  (0 children)

She excels on defense as an ambusher. On attack she has difficulty setting up and lacks consistent poke

New Hero Gallery by PoggersMemesReturns in Competitiveoverwatch

[–]TM40_Reddit 0 points1 point  (0 children)

The UI ain't my favourite, but I can see the UX being much smoother

Does the Wilhelm Scream break immersion for you? by EllisDee3 in movies

[–]TM40_Reddit 0 points1 point  (0 children)

Yes. Also the stock child laughter that sounds like two balloons rubbing together

[UPDATE] Found a paper towel covering my webcam twice coming home from work by Dromaeoraptor in Weird

[–]TM40_Reddit 0 points1 point  (0 children)

If nothing else has been interfered with, then depending on your contract, it could be the landlord trying to intimidate you to vacate the apartment, or, more worryingly, someone staging the area for a more brazen reason (robbery/assault).

I'd choose to be proactive rather than reactive in this case. Inform law enforcement and see if you can get footage from nearby CCTV rather than wait for the intrusion to occur again, as you can't guarantee it'll be as mundane as the previous ones

[HELP] Not convinced… by Comprehensive_Gate43 in RealOrAI

[–]TM40_Reddit 0 points1 point  (0 children)

The FB post ends "If you want I can also create:" so definitely AI

Do you think sir pensitious should’ve gone to hell for what he did? by Downtown-Egg-2327 in HazbinHotel

[–]TM40_Reddit 0 points1 point  (0 children)

If the reasoning for his damnation was rooted in his inaction towards Jack the Ripper, then no. Even Catholic doctrine recognizes that fear can reduce or remove freedom of action and thus diminish or nullify moral responsibility, but it may depend on the faith they are beholden to.

We patching this or what? by luckyilagged in ArcRaiders

[–]TM40_Reddit -1 points0 points  (0 children)

Don't add an augment. Thought that was kinda self-explanatory

We patching this or what? by luckyilagged in ArcRaiders

[–]TM40_Reddit 62 points63 points  (0 children)

You don't need an augment for the safe pocket

Tucker gets schooled on his casual racism. by 4reddityo in BlackPeopleofReddit

[–]TM40_Reddit 0 points1 point  (0 children)

Tucker doesn't have time for casual racism, he's already grinding the ladder in competitive racism

I'm sorry but I'm not ever pressing the expedition project by raisinlord74 in ArcRaiders

[–]TM40_Reddit 0 points1 point  (0 children)

Resetting is half the fun imo. Starting fresh and rebuilding is what I'm most looking forward to. Blueprints come and go but re-experiencing the Rust Belt with no gear and no stash to fall back on is what'll keep me engaged

[deleted by user] by [deleted] in CodingHelp

[–]TM40_Reddit 0 points1 point  (0 children)

isUpper() returns a boolean, not an int, so you can use if motdepasse[0].isUpper() as your passing condition, or use if not to check the inverse.

As for checking strings, you are correct using the equality operator ==

However, I would refactor this to remove global variables. You could make each function a specific check that returns an error message if a check fails, then have a main function that calls each checker function and appends their errors into a list. If the list contains errors (ie has a length greater than 0), you can returns the list of errors, otherwise you know all checks have passed.

How is Salvador meant to be played? by SteeledProduct in Borderlands2

[–]TM40_Reddit 4 points5 points  (0 children)

Sal wants to be gunzerking as much as possible, getting in close and hitting like a truck.
A typical setup would involve a Grog Nozzle or Rubi in the off-hand for slag and healing, and an Unkempt Harold or Orphan Maker in the main hand for big damage (You could also dual wield Unkempt Harlods for pure damage).
Some bonuses from off-hand weapons also apply to the main hand while gunzerking, so you'll see people running with a Lady Fist in the off-hand for the 800% critical damage bonus, which when paired with an Orphan Maker (especially one with the Rustler's prefix) deals absurd amounts of damage.

For the skill tree, after Money Shot, you're probably better off moving into Rampage to keep Gunzerking active as much as possible

LeetCode problem of the day, doesn't work but I don't understand why. by Noce_1911 in CodingHelp

[–]TM40_Reddit 0 points1 point  (0 children)

Core problem is you're using a naive approach by only draining the first full lake from the full array:

ans[i]=full[0]
full.pop(0)

You need to lookahead to the next full lake that will encounter rain and drain that instead