AfterAcademy Tech
Given an array arr[] consists of 0, 1, 2, 3, 4,.....n. But one of the numbers is missing in it. Write a program to find the number that is missing from the array.
10 Aug 2020
Sorting is a process of arranging items systematically. There are several ways to sort a list of items. A very useful sorting algorithm in all of the sorting algorithms is quicksort. Given an array of integers arr[], write a program to sort the array in ascending order using Quick Sort.
MVC architecture has become an extremely common and favoured design pattern for creating web applications. Let us explore more and learn why is it so famous and preferred in the world of web design.
Given two integers n and k, Write a program to return all possible combinations of k numbers out of 1 2 3 ... n. Elements in a combination must be in a non-descending order. The combinations themselves must be sorted in ascending order, i.e., the combination with the smallest first element should be printed first.
There are N children standing in a line with some rating value. You want to distribute a minimum number of candies to these children such that: Each child must have at least one candy. The children with higher ratings will have more candies than their neighbours. Write a program to calculate the minimum candies you must give.
Docker is a platform enabling the creation and use of a containerized app which increases application portability in an efficient way. Read the blog to know more.
Docker is an excellent platform that increases app portability in a very efficient manner. We will be discussing how to get started with Docker for beginners.
Deno is this new thing everyone is hyped about. Many say Node is redundant now. Is it? Well, No. But read this blog to find out more!
Middlewares are a set of functions in Javascript which are executed when a request is made to the web-server. We will be discussing the basics of middleware and how to code them in this blog.
npm is the standard package manager for Nodejs. This blog provides an introduction to npm and also how to publish your own package