tutorial

Setup Adminer with docker for Database Management

Adminer is a web based database management tool whichcan be deployed to any server. It supports MySQL, PostgreSQL, MongoDB, MS SQl, Elasticsearch, MariaDB.

3 min read • Read
data-structures

Implement a Queue using a List.

Problem Statement: Implement a Queue with methods like Enqueue, Dequeue, Size, isEmpty using Lists in Python.

3 min read • Read
data-structures

Implement Stack using a List.

Problem Statement: Implement stack with push, pop, peek, isEmpty, size methods using a List.

3 min read • Read
data-structures

Implement a Hashmap

Problem Statement: Implement Hash Map with get, set and remove methods.

3 min read • Read