© 2022 Hashnode
Given two numbers 'N' and 'S' , find the largest number that can be formed with 'N' digits and whose sum of digits should be equals to 'S'. Example 1: Input: N = 2, S = 9 Output: 90 Explaination: It is the biggest number with sum of digits…
Recently, I’ve been engaged on an iOS app that makes use of SwiftUI, which is a tremendous factor that’s occurred to iOS growth in latest instances. Having already labored on declarative frameworks o…
Overview Hello folks! Hope you are learning something productive. In the previous blog, I discuss why we actually required to use Tree Data Structure when it comes to the huge data. Today, I will disc…
From the beginning of my coding career, I have known quite some people who I will refer to as ninja coders. They have this amazing thought process for solving complex problems found in competitive programming. I have wet my toes a couple of…
Are you nervous about participating in your first hackathon? Hackathons may be intimidating, especially if it's your first time. But they're actually just enjoyable and laid-back gatherings where you…
A technical interview is the only interview that is harder than an actual job. There are a lot of resources online on how to crack the coding interview. But here, I will give you my perspective and th…
Graph Usage Graph is one of the most common and important data structure. With C++ and STL I'll show you the best possible implementation for graph that you'll be able to implement and analyze in your…
Hello Coders!! Even though there are several programming languages to choose from, C++ has maintained its allure since its debut and continues to have a significant impact in the development world. Su…
Hackathons are now a regular feature of college calendars all throughout the world, not only in India. Hackathons have become so popular as a result of their rapid growth in popularity that students a…
Given an integer array nums, return true if there exists a triple of indices (i, j, k) such that i < j < k and nums[i] < nums[j] < nums[k]. If no such indices exists, return false. Example 1: Input: nums = [1,2,3,4,5] Output: true Explanat…