A surprise for everyone here just open this link ๐๏ธ get everything for your practice don't miss this
https://drive.google.com/drive/folders/1aeAAl5C-HdkXzQMxLjpbkbNuCdytAsdW
https://drive.google.com/drive/folders/1IYTKzuGY6GxAujrQA-Tucv-KBt6v2RQq
https://drive.google.com/drive/folders/1aeAAl5C-HdkXzQMxLjpbkbNuCdytAsdW
https://drive.google.com/drive/folders/1IYTKzuGY6GxAujrQA-Tucv-KBt6v2RQq
If someone is getting access to docs let me know before asking because you can't see some data
Docs link is in description
Docs link is in description
Sunday i will take test depending upon your response only without response no tests nothing
https://interview.leetcode.com/interview/detail/9v5GyT/ To minimize technical difficulties during the interview, please use a computer with a camera and microphone. Also, update to the latest version of Chrome.
Java Hyd Team
https://interview.leetcode.com/interview/detail/9v5GyT/ To minimize technical difficulties during the interview, please use a computer with a camera and microphone. Also, update to the latest version of Chrome.
One question is from MySQL by mistake you can avoid that question
Java Hyd Team
Do you guys need good Lpa or 3lpa is enough if yes ping us so that we can refer you for good package in next 10-15 day's
Out of 141 people 41 people voted for salary more than 3lpa ( good package) and you guy's are not joining for interview what you guy's are expecting
Java Hyd Team pinned ยซhttps://interview.leetcode.com/interview/detail/9v5GyT/ To minimize technical difficulties during the interview, please use a computer with a camera and microphone. Also, update to the latest version of Chrome.ยป
package com.Aman;import java.util.Scanner;public class Staircase { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print("Input: n = "); int n = sc.nextInt(); sc.close(); System.out.println("Output: " + countWays(n)); }nth stair static int countWays(int n){ if(n == 1) return 1; if (n == 2) return 2; return countWays(n - 1) + countWays(n - 2); }}