Compare commits

...

7 Commits

Author SHA1 Message Date
Aryan Jain 2c3369644b
Merge 4227d58915 into 3e5b5a51d1 2024-11-19 21:22:55 +00:00
Leithen 3e5b5a51d1
Skip check if file is not .yml or .md (#11760) 2024-11-19 16:22:42 -05:00
Aryan Jain 4227d58915
Update free-programming-cheatsheets.md 2024-10-17 03:07:28 +05:30
Aryan Jain 2ebddb746a
Update free-programming-cheatsheets.md 2024-10-17 03:05:02 +05:30
Aryan Jain 58c53e8da3
Update free-programming-cheatsheets.md 2024-10-17 03:01:23 +05:30
Aryan Jain 2d8a4603ec
Update free-programming-cheatsheets.md 2024-10-17 02:59:32 +05:30
Aryan Jain 2c077e70d5
Update free-programming-cheatsheets.md
Added Strivers Cheatsheet 
- A2Z dsa Sheet
- SDE sheet
- 79 Last Moment problems
2024-10-17 02:12:35 +05:30
2 changed files with 7 additions and 0 deletions

View File

@ -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

View File

@ -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/)