Skip to content

Commit 882042d

Browse files
committed
add day 51
1 parent c8d0509 commit 882042d

File tree

5 files changed

+26
-0
lines changed

5 files changed

+26
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ Motivate yourself to code daily till 60 days, and see the magic! Coding will bec
7777
| [Day 47](./day47) | [Singly Linked List](./day47) | [http://codetoexpress.tech/dc/day47/](http://codetoexpress.tech/dc/day47/) | **Intermediate** |
7878
| [Day 48](./day48) | [Doubly Linked List](./day48) | [http://codetoexpress.tech/dc/day48/](http://codetoexpress.tech/dc/day48/) | **Intermediate** |
7979
| [Day 49](./day49) | [MiddleMost Node Search](./day49) | [http://codetoexpress.tech/dc/day49/](http://codetoexpress.tech/dc/day49/) | **Intermediate** |
80+
| [Day 50](./day49) | [Nth From Last](./day50) | [http://codetoexpress.tech/dc/day50/](http://codetoexpress.tech/dc/day50/) | **Intermediate** |
81+
| [Day 51](./day51) | [Circular List](./day51) | [http://codetoexpress.tech/dc/day51/](http://codetoexpress.tech/dc/day51/) | **Intermediate** |
8082

8183
## [More Problems](./BONUS/README.md)
8284

day51/JavaScript/circularLis.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// To Be Added

day51/README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
![cover](./cover.png)
2+
3+
# Day 51 - Circular List
4+
5+
Ques) Given a Linked List, write a function `isCircular()` which returns true if the list is circular, false if it is not.
6+
7+
### Circular Linked List
8+
9+
Circular linked list is a linked list where all nodes are connected to form a circle. A circular linked list can be a singly circular linked list or doubly circular linked list.
10+
11+
Basically, there is no NULL at the end, rather the "last" element points again to the first element.
12+
13+
[ques](./ques.png)
14+
15+
## Solution
16+
17+
## JavaScript Implementation
18+
19+
### [Solution](./JavaScript/nthFromEnd.js)
20+
21+
```js
22+
// To Be Added
23+
```

day51/cover.png

132 KB
Loading

day51/ques.png

830 KB
Loading

0 commit comments

Comments
 (0)