Blog

Notes and articles organized by topic.

Showing 12 post(s) in cs-fundamentals
cs-fundamentals

Data Structures

A data strucure a way to organize and store the data so that we can perform operations differently like insert, delete, search, traverse

Read more →
cs-fundamentals

Big O Annotation

In computer science, Big O notation O(1), O(n) is used to describe the performance or time complexity of an algorithm.- i.e how the performance scaled as the amount of data grows.

Read more →
cs-fundamentals

Data Transfer Objects

A transfer object, also known as a Data Transfer Object (DTO), is a simple Java object used to transfer data between

Read more →