From 04deef7eb68ae5c4af629e7f0421f9fbba998eeb Mon Sep 17 00:00:00 2001 From: "aleksandra.valerianova" Date: Mon, 24 Nov 2025 14:32:40 +0200 Subject: [PATCH 1/2] Added links checker --- .github/workflows/links_checker.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/links_checker.yml diff --git a/.github/workflows/links_checker.yml b/.github/workflows/links_checker.yml new file mode 100644 index 0000000..c55877a --- /dev/null +++ b/.github/workflows/links_checker.yml @@ -0,0 +1,23 @@ +name: LinksChecker + +on: + # Triggers the workflow on push or pull request events but only for the "master" branch + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + links-checker-job: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v4 + + - name: Call the action jetbrains-academy/links-checker-action + uses: jetbrains-academy/links-checker-action@main + with: + dir: ./ \ No newline at end of file From a5a70adb78ab74c04a2a9dcac57b0d962fe467db Mon Sep 17 00:00:00 2001 From: "aleksandra.valerianova" Date: Mon, 24 Nov 2025 14:39:11 +0200 Subject: [PATCH 2/2] Another link is corrected --- .../numpy.char Module/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NumPy/Arrays of String and Unicode Values/numpy.char Module/task.md b/NumPy/Arrays of String and Unicode Values/numpy.char Module/task.md index ab94f50..3769806 100644 --- a/NumPy/Arrays of String and Unicode Values/numpy.char Module/task.md +++ b/NumPy/Arrays of String and Unicode Values/numpy.char Module/task.md @@ -1,6 +1,6 @@ ## `numpy.char` Module -[`numpy.chararray`](https://numpy.org/doc/stable/reference/generated/numpy.chararray.html) used to provide a view of arrays of string and [unicode](https://docs.python.org/3/howto/unicode.html) values. +[`numpy.chararray`](https://numpy.org/doc/stable/reference/generated/numpy.char.array.html) used to provide a view of arrays of string and [unicode](https://docs.python.org/3/howto/unicode.html) values. However, the `chararray` class currently exists only for backwards compatibility, and it is not recommended for new development. Starting from numpy 1.4, if one needs arrays of strings, it is recommended to use arrays of `dtype` [`object_`](https://numpy.org/doc/stable/reference/arrays.scalars.html#numpy.object_),