Skip to content

Commit

Permalink
add day 51
Browse files Browse the repository at this point in the history
  • Loading branch information
MadhavBahl committed Feb 28, 2019
1 parent c8d0509 commit 882042d
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -77,6 +77,8 @@ Motivate yourself to code daily till 60 days, and see the magic! Coding will bec
| [Day 47](./day47) | [Singly Linked List](./day47) | [http://codetoexpress.tech/dc/day47/](http://codetoexpress.tech/dc/day47/) | **Intermediate** |
| [Day 48](./day48) | [Doubly Linked List](./day48) | [http://codetoexpress.tech/dc/day48/](http://codetoexpress.tech/dc/day48/) | **Intermediate** |
| [Day 49](./day49) | [MiddleMost Node Search](./day49) | [http://codetoexpress.tech/dc/day49/](http://codetoexpress.tech/dc/day49/) | **Intermediate** |
| [Day 50](./day49) | [Nth From Last](./day50) | [http://codetoexpress.tech/dc/day50/](http://codetoexpress.tech/dc/day50/) | **Intermediate** |
| [Day 51](./day51) | [Circular List](./day51) | [http://codetoexpress.tech/dc/day51/](http://codetoexpress.tech/dc/day51/) | **Intermediate** |

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

Expand Down
1 change: 1 addition & 0 deletions day51/JavaScript/circularLis.js
@@ -0,0 +1 @@
// To Be Added
23 changes: 23 additions & 0 deletions day51/README.md
@@ -0,0 +1,23 @@
![cover](./cover.png)

# Day 51 - Circular List

Ques) Given a Linked List, write a function `isCircular()` which returns true if the list is circular, false if it is not.

### Circular Linked List

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.

Basically, there is no NULL at the end, rather the "last" element points again to the first element.

[ques](./ques.png)

## Solution

## JavaScript Implementation

### [Solution](./JavaScript/nthFromEnd.js)

```js
// To Be Added
```
Binary file added day51/cover.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added day51/ques.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 882042d

Please sign in to comment.