#dsa
Read more stories on Hashnode
Articles with this tag
Array int[] nums = new int[n]; int[] nums = { 4, 3, 1, 2 }; nums.Length // Length of the array for(int i = 0; i < nums.Length; i++) { nums[i] } //...
Problem https://leetcode.com/problems/climbing-stairs/ You are climbing a staircase. It takes n steps to reach the top. Each time you can either climb...
You can keep it handy while solving problems. It will save you time from looking into syntax and help you to focus more on the aspect of...