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:
Ahmad Abdolsaheb
2019-06-12 11:19:43 +03:00
committed by GitHub
parent fb0c6813ac
commit d24778ceb8
29 changed files with 98 additions and 97 deletions

View File

@@ -42,7 +42,7 @@ Let's say you have a C++ file called `helloWorld.cpp` ...
#### Using and IDE like CodeBlocks
It is as simple as clicking the build and run buttons, they will create a file in the project folder.
![img](https://i.imgur.com/FwZuFGy.png)
![img](https://cdn-media-1.freecodecamp.org/imgr/FwZuFGy.png)
#### Using Command Prompt
1. Open a Developer Command Prompt - For this step, you will need to have Microsoft Visual Studio or some other IDE that

View File

@@ -10,7 +10,7 @@ List elements point to its next element so all elements are ordered in sequence
How? You may ask. They do this not by indexing but using a special tool called iterators. Iterators are like special pointers
whose job is to maintain the order of the list elements kind of like the link between two train cars. Here is a nice visual
of how Lists are organized compared to Vectors and Arrays.
![img](https://imgur.com/SiU8uTe.png)
![img](https://cdn-media-1.freecodecamp.org/imgr/SiU8uTe.png)
Traversal in a list is slow as compared to Vectors and Arrays, but once a position has been found, insertion and deletion are quick.

View File

@@ -6,7 +6,7 @@ title: STL Algorithms
STL stands for Standard Template Library. It consists various containers like Vectors, Stacks, Queues etc. It also consists of some commonly used algorithms like sorting, counting etc. The image below shows the quick outline of STL. We will discuss the algorithms part.
![STL Outlook](https://i.imgur.com/daIlXQI.png "STL-Outlook")
![STL Outlook](https://cdn-media-1.freecodecamp.org/imgr/daIlXQI.png "STL-Outlook")
### References:
1. [GeeksForGeeks - STL Tutorial](https://www.geeksforgeeks.org/cpp-stl-tutorial/)