The journey from studying commerce to working at ShareChat as a Software Engineer!I am back with a new article after a long time! But this time the article is not about a new Android library, fundamentals or anything technical at all. Today in this article I will talk about my journey from opting for commerce in higher secondary t...Dec 10, 2022·12 min read
Developing REST APIs with KtorPhoto by Compare Fibre on Unsplash As developers, we deal with REST APIs on daily basis, as mobile/frontend developers, to consume these APIs and as Backend developers to develop these APIs. As an Android dev, I was always curious about backend techn...Sep 14, 2021·3 min read
Find duplicate element in an Array! Part- IIHashing method For part one solution using sorting method check here. In previous article we checked that how we can find duplicate element in our array using sorting technique. In this article we will see how we can optimise our code and reduce the ...Feb 24, 2021·3 min read
Find duplicate element in an Array!Sorting Method Problem Statement Given an array of integers nums containing n + 1 integers where each integer is in the range [1, n] inclusive. There is only one repeated number in nums, return this repeated number. Example 1: Input: nums = [1,3,4,...Feb 24, 2021·2 min read