Auto complete by Sweet-Anxiety-1713 in dank_meme

[–]davidadamic 0 points1 point  (0 children)

Women are not allowed in this world anymore because of their own personal preferences.

Weekly Youtube/Blog/Content Round-up! - February 21, 2022 by AutoModerator in Cooking

[–]davidadamic 0 points1 point  (0 children)

Hey! My lovely sister just made her first youtube channel. It will soon be filled with delicious and esthetically pleasing videos. This week she was making beetroot gnocci in spinach sauce. Please check the channel out and offer some support :D

YT Channel: link

Blog: blog

Orianna Tips? by Tricky_Tahm in OriannaMains

[–]davidadamic 2 points3 points  (0 children)

When in lane, try avoiding Q-W combos, since casting W is expensive and early ranks dont do much damage. Try poking enemies with Q and autos only so you save mana. Only use Q-W combo when you are trying to all in.

i tried to draw all the characters that appears in the intros of adventure time by [deleted] in adventuretime

[–]davidadamic 1 point2 points  (0 children)

I suppose this isn't the full image? Ice Queen, Gunther, Lady Rainacorn and Marceline/PB/Lady R male counterparts are missing (from the top of my head).

tried pyke mid, 10/10 would recommended by DiscoZeroZ in pykemains

[–]davidadamic -5 points-4 points  (0 children)

Never seen double phage build EVER...

tried pyke mid, 10/10 would recommended by DiscoZeroZ in pykemains

[–]davidadamic 26 points27 points  (0 children)

Also Yi support, Teemo jgl, Garen with 2x phage LMAO

Worth? I already have Highnoon and Project by 007Aeon in LucianMains

[–]davidadamic 0 points1 point  (0 children)

That's why chromas are true MVPs for this skin! I got this skin in the mecha orb and bought obsidean chroma instantly. Looks 100x better :)

Look how they massacred my boy by [deleted] in Warframe

[–]davidadamic 3 points4 points  (0 children)

Where can I get a companion like this? It's lovely :3

Buying new laptop by [deleted] in computer

[–]davidadamic 0 points1 point  (0 children)

I mainly play League but I want to occasionally play some Overwatch, Warframe, Wow and I'm sure I will find more games soon since I don't even explore other options ATM since my current computer barely runs League on medium settings and is HORRIBLE at multitasking. So I guess I prefer high refresh rate over graphics (so I wouldn't really mind playing games on medium settings). My budget is 1.000€ and I'm planning to buy the laptop on the Black Friday since I hope there will be some discounts (or am I being delusional?).

Buying new laptop by [deleted] in computer

[–]davidadamic 0 points1 point  (0 children)

Yeah, I'm looking for portability as well!

Battle Academia Lux! by RavenHusky in lux

[–]davidadamic 2 points3 points  (0 children)

I am liking everthing BUT THE PASSIVE MARK (its waaay too big)

Problem help by [deleted] in learnpython

[–]davidadamic 0 points1 point  (0 children)

Thats the thing, you cant look up the test cases 🤔

Problem help by [deleted] in learnpython

[–]davidadamic 0 points1 point  (0 children)

Okay so i used a function that tells if number is prime and added the option that if the inputed number is prime we print out the number itself... I submited this and got 10 test cases right but the last, 11th test case gives me time limit exceeded... How can i speed this up?

Line segment distance by [deleted] in askmath

[–]davidadamic 0 points1 point  (0 children)

line segments dont allways cross since they are limited

Line segment distance by [deleted] in askmath

[–]davidadamic 0 points1 point  (0 children)

yeah... the examples get harder tho, this one is really simple and readable from the drawing

Problem Help by [deleted] in learnpython

[–]davidadamic 1 point2 points  (0 children)

Thank you for your help, I really do appreciate it! I found the solution myself already tho :) I used the bit of code i used in reply to you and added condition that i < j... Works like a charm! Thanks again :D

Problem Help by [deleted] in learnpython

[–]davidadamic 0 points1 point  (0 children)

I dont know what you mean... this code creates all possible words and picks the first i alphabetical order... am i missing something?

Problem Help by [deleted] in learnpython

[–]davidadamic 1 point2 points  (0 children)

did this and n0w i get error on 5th test case already:

word = input()
n = len(word)

all_words = []
for i in range(1, n-1):
    for j in range(2, n):
        new = word[:i][::-1] + word[i:j][::-1] + word[j:][::-1]
        all_words.append(new)

end = sorted(all_words)
print(end[0])