fix: replace imgur URLs with s3 URLs for files with potential conflict (#36049)
* fix: replace imgur with s3 for files with potential conflict (cherry picked from commit 4ec62c0e29a64b0288eade45fb510f25c622945a) * fix/remote extra link Co-Authored-By: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> * fix: revert change
This commit is contained in:
@@ -7,27 +7,27 @@ Suppose you are given a list or an array of items. You are searching for a parti
|
||||
|
||||
Find the number 13 in the given list.
|
||||
|
||||

|
||||

|
||||
|
||||
You just look at the list and there it is!
|
||||
|
||||

|
||||

|
||||
|
||||
Now, how do you tell a computer to find it.
|
||||
|
||||
A computer cannot look at more than the value at a given instant of time. So it takes one item from the array and checks if it is the same as what you are looking for.
|
||||
|
||||

|
||||

|
||||
|
||||
The first item did not match. So move onto the next one.
|
||||
|
||||

|
||||

|
||||
|
||||
And so on...
|
||||
|
||||
This is done till a match is found or until all the items have been checked.
|
||||
|
||||

|
||||

|
||||
|
||||
In this algorithm, you can stop when the item is found and then there is no need to look further.
|
||||
|
||||
|
Reference in New Issue
Block a user