python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to extract the currency from the free text with the currency on the right given a text like "19€99"
*I have the function presented below to extract prices from free text. In the process of onboarding a new client, they have items aimed at the French market where prices sometimes have the currency sy...

baoule_sama
Votes: 0
Answers: 1
Backtracking problem managing figures on a board
I have a problem which must be solved using backtracking, but i cannot figure out how to do it. So, i have a board and some figures (rectangles and squares). I know the dimensions for every figure and...

user14617379
Votes: 0
Answers: 0
Boost Graph Library: Deleting an edge while using an iterator
Currently I am trying to implement a Girvan Newman Algorithm for a class project using boost graph library in c++.
At the moment, edges and vertices are being added fine, but I am having an issue remo...

Nicole Sood
Votes: 0
Answers: 1
Print recursive * pattern
I have trouble printing the * pattern.
They should have 2 functions: printStars() and printLine(). printStars(int n), is used to print a line of n stars; the second one, printLines(int m), is to print...
Thien Nguyen
Votes: 0
Answers: 1