Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 1.61 KB

Problems.md

File metadata and controls

35 lines (24 loc) · 1.61 KB

- Important Notes -

  1. Problems in this file from leetcode.
  2. you must try to solve the problem first then, read my Solution :)

Assignment

  • Create insert at middle (single linked list) method.
  • Create delete from beginning (single linked list) method.
  • Create delete from end (single linked list) method.

The Solution

optional

  • try Create insert and delete in double linked list .
  • display double linked list.

Problems

  1. RotateList

  2. PartitionList

  3. Remove Dublicates From Sorted list

  4. Remove Nth Node From End The List