Chirag Ramachandra

Chirag Ramachandra

Follow
homeMain Websitenewsletter
Tag

problem solving skills

#problem-solving-skills

More content

Read more stories on Hashnode


Articles with this tag

Data Structure | Introduction

Jan 11, 20216 min read

Data Structures are a collection of values, the relationship between them and the functions or operations that can be applied to the data. What are...

Data Structure | Introduction

Problem Solving | Reverse a string

Jan 10, 20211 min read

Given a string, return a new string with the reversed order of characters. Examples: reverse('apple') === 'leppa' reverse('hello') ===...

Problem Solving | Reverse a string

Problem Solving | Fizz Buzz Problem

Jan 10, 20211 min read

Question: Write a program that prints the numbers from 1 to n. But for multiples of three, print "Fizz" instead of the number, and for the multiples...

Problem Solving | Fizz Buzz Problem

Problem Solving | Big O Notation

Jan 10, 20215 min read

What is Big O Notation ? Why do we need it ? TL;DR Big O is the objective way to measure the code we write. We can use this to determine which code...

Problem Solving | Big O Notation