Compare commits
7 Commits
069719907f
...
2c3369644b
Author | SHA1 | Date |
---|---|---|
Aryan Jain | 2c3369644b | |
Leithen | 3e5b5a51d1 | |
Aryan Jain | 4227d58915 | |
Aryan Jain | 2ebddb746a | |
Aryan Jain | 58c53e8da3 | |
Aryan Jain | 2d8a4603ec | |
Aryan Jain | 2c077e70d5 |
|
@ -74,14 +74,17 @@ jobs:
|
|||
fail-fast: false
|
||||
steps:
|
||||
- name: Checkout
|
||||
if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }}
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: ${{ needs.get-changed-files.outputs.fetch-depth }}
|
||||
- name: Setup Ruby v2.6
|
||||
if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }}
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 2.6
|
||||
- name: Install awesome_bot
|
||||
if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }}
|
||||
run: |
|
||||
gem install awesome_bot
|
||||
- name: Set output
|
||||
|
@ -101,6 +104,7 @@ jobs:
|
|||
|
||||
echo "FILEPATH=${file_path}" >> "$GITHUB_OUTPUT"
|
||||
- name: "Check URLs of file: ${{ matrix.file }}"
|
||||
if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }}
|
||||
run: |
|
||||
awesome_bot "${{ matrix.file }}" --allow-redirect --allow-dupe --allow-ssl || true;
|
||||
- uses: actions/upload-artifact@v4
|
||||
|
|
|
@ -140,6 +140,9 @@
|
|||
* [An Executable Data Structures Cheat Sheet for Interviews](https://algodaily.com/lessons/an-executable-data-structures-cheat-sheet)
|
||||
* [Big-O Cheat Sheet](http://bigocheatsheet.com)
|
||||
* [Big O Notation Cheat Sheet](https://algodaily.com/lessons/big-o-notation-cheat-sheet)
|
||||
* [Data Structure and Algorithms Striver's 79 last moment dsa sheet ace interviews](https://takeuforward.org/interview-sheets/strivers-79-last-moment-dsa-sheet-ace-interviews)
|
||||
* [Data Structure and Algorithms Striver's A2Z DSA Sheet for FAANG](https://takeuforward.org/strivers-a2z-dsa-course/strivers-a2z-dsa-course-sheet-2)
|
||||
* [Data Structure and Algorithms Striver's sde sheet top coding interview problems](https://takeuforward.org/interviews/strivers-sde-sheet-top-coding-interview-problems)
|
||||
* [Data Structures and Algorithms Cheat Sheet - Cheatography](https://cheatography.com/burcuco/cheat-sheets/data-structures-and-algorithms/)
|
||||
* [Data structures and algorithms study cheatsheets for coding interviews](https://www.techinterviewhandbook.org/algorithms/study-cheatsheet/)
|
||||
|
||||
|
|
Loading…
Reference in New Issue