Skip to content

Latest commit

 

History

History
53 lines (42 loc) · 2 KB

README.md

File metadata and controls

53 lines (42 loc) · 2 KB

DSA with GO

This repository contains a simple implementation of a DSA in Go.

Code Overview

Pattrens

Input: num = 4
Output:
* * * *
* * * *
* * * *
* * * *
Input: num = 4
Output:
*
* *
* * *
* * * *

Singly Linked List

Doubly Linked List

  • InsertAtStart - Insert a value at the beginning of the list.
  • IsEmpty - Check if the list is empty.
  • Count - Count the nodes in the list.
  • Find - Find the value by index in list.