From 12df71de540b560751a8b081b8e3fa3e7b1f4cd3 Mon Sep 17 00:00:00 2001 From: Raisa Ghosh Date: Sun, 2 Oct 2022 18:20:12 +0530 Subject: [PATCH] Added the documentation for the program under the algorithms/C/linked-lists folder that can add an element at a given position in the linked list. Documentation added under docs/en/README.md . Added on 2nd October,2022 - by RaisaGhosh - https://github.com/RaisaGhosh --- docs/en/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/en/README.md b/docs/en/README.md index 65b4a7cf..e001e5aa 100644 --- a/docs/en/README.md +++ b/docs/en/README.md @@ -3,6 +3,8 @@ ## Lists - [Singly linked list](./Lists/singly-linked-list.md) - [Doubly linked list](./Lists/doubly-linked-list.md) +- [Add element at any position in a singly linked list](./Lists/add-element-at-any-position-in-a-singly-linked-list.md) + ## Sorting