Posts by Lmagoncalo • 11 points
2 posts
-
0
votes1
answer126
viewsA: Email outlook using Flask
In the sent code only the sending message is being created, and the sending process is missing. It is missing the line that will send the e-mail. mail.send(msg) The function should be as follows:…
-
1
votes1
answer140
viewsA: What algorithm to use for a diff mechanism?
Usually this is done by finding the Longer Common Subsequence (also called LCS problem). The specific algorithm used by diff and by most other comparison tools is the Eugene Myer’s O(ND) Difference…