Search Results
| Search type | Search syntax |
|---|---|
| Tags | [tag] |
| Exact | "words here" |
| Author | user:1234 user:me (yours) |
| Score | score:3 (3+) score:0 (none) |
| Answers | answers:3 (3+) answers:0 (none) isaccepted:yes hasaccepted:no inquestion:1234 |
| Views | views:250 |
| Code | code:"if (foo != bar)" |
| Sections | title:apples body:"apples oranges" |
| URL | url:"*.example.com" |
| Saves | in:saves |
| Status | closed:yes duplicate:no migrated:no wiki:no |
| Types | is:question is:answer |
| Exclude | -[tag] -apples |
| For more details on advanced search visit our help page | |
Results tagged with algorithm
Search options not deleted user 193683
An algorithm is a sequence of well-defined steps that define an abstract solution to a problem. Use this tag when your issue is related to algorithm design.
1 vote
Form a string consisting of the common letters that appear in two input strings
If both string are equal length and sort is allowed, performance can be reduced to linear o(n). const x = 'ABCD' const y = 'AHOB' function subStr(str1, str2) { str1 = str1.split(''); str2 = …
2 votes
Finding the Longest Word in a String
This is like getting biggest number algorithm. …