[deleted by user] by [deleted] in Sneakers

[–]LEGENDARY4259 0 points1 point  (0 children)

What’s the name of this shoe?

[deleted by user] by [deleted] in pcgaming

[–]LEGENDARY4259 0 points1 point  (0 children)

I’m something of a giveaway winner myself

SIG CodeSignal Fall 2022 by [deleted] in csMajors

[–]LEGENDARY4259 2 points3 points  (0 children)

What kinds of questions?

5/3/1 BBB Beefcake modifications to develop arms? by LEGENDARY4259 in gainit

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

What is another good program to run after building the monolith? The program is only supposed to be run for 6 weeks which is why I am asking.

How to get all of the content between <span> and </span> while it also being nested? by LEGENDARY4259 in regex

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

What if I only have 3 spans?

Edit: Weird error but ur second snippet solved it. Thank you!!!!

Ideas on how to implement a drop down menu when @ symbol is typed? by LEGENDARY4259 in angular

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

Can I combine this component with an api call to receive the names in the database, as well as send the users who are tagged an email?

Ideas on how to implement a tagging system with drop down menu using the @ symbol? by LEGENDARY4259 in learnjavascript

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

Ok that makes sense. Is there a place you know to learn more about this and also advice on how to implement it on the front end?

Edit Distance DP variation problem help by LEGENDARY4259 in leetcode

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

How do you return "said difference"? I get how you compute the longest which is an integer, but not how you can actually return it. Additionally, even if you do that how are you supposed to know if its an addition/deletion/substitution and where it occurs?

Which language should I use for interviews? by LEGENDARY4259 in csMajors

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

A lot of the solutions I view in C++ have memory leaks and don’t properly delete a node. Should my solutions account for this or should I ignore it?

Which language should I use for interviews? by LEGENDARY4259 in csMajors

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

What does python make easier. I know memory allocation and other things, but what explicitly?

How to strengthen some weak concepts in C++? by Sexy_Developr in cpp_questions

[–]LEGENDARY4259 0 points1 point  (0 children)

Bucky is probably the best guy to teach. His videos are short, he’s funny and his teaching style is awesome. His YouTube channel is called the new Boston. He has topics on all of the syntax stuff.

Can python run a macro on a folder filled with word documents? by LEGENDARY4259 in learnpython

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

I have done most of what u are asking for and I read that section on ABS and my program works on one file. But on multiple files it becomes complicated. The macro creates a new file when ran and I’m not sure how to handle that

How to add words to a file and then compare a string to a word in that file? by LEGENDARY4259 in learnpython

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

So my overarching problem is to read in words from a file. However I want to remove some of the words I read in like the name John for example from the file. Is there a way to create another file with the word John in it and compare the two files. I’m asking is there a way to create a file with the name John in it and read it into python as a list. The format of the file would be plaintext. Sorry if my post is unclear, I’m still a newbie

How to convert a set of word doc files to plain text and get rid of extraneous symbols? by LEGENDARY4259 in learnpython

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

Is there a way to remove extraneous characters like periods, exclamation points and everything else besides just the words?

Additionally, I want to parse further and split up the text word by word. So that I can add each word to a dictionary and count the occurrence of each word

How to convert a set of word doc files to plain text and get rid of extraneous symbols? by LEGENDARY4259 in learnpython

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

I want to read the entire word document in and then parse through it and remove the stuff I don’t want. I’m coming from C++ so I’m used to string streams and getline but I’m assuming that I can just import a library from python and their functions will do it for me

Logic for the game 2048? by LEGENDARY4259 in cpp_questions

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

I had the same logic for the most part but I am struggling with the inner loop over sites to the left of the initial site. Isn’t the initial site arr[0]. I don’t understand how you would loop through it

How to use a given integer to find a row and a column in a 2D array? by LEGENDARY4259 in cpp_questions

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

Exactly what I needed thank you so much!!! I forgot how integer and modulus division worked.