📜  纳加罗面试经历

📅  最后修改于: 2022-05-13 01:58:33.189000             🧑  作者: Mango

纳加罗面试经历

我参加了 2019 年 10 月在 Nagarrow 的一次面试。我面临编码轮次。他们接受了系统轮次。在系统回合中,有以下三个问题。

  • 打印给定数组中第二大的数字。
    方法如:Public int secoundhighest(int inpute1, int[] input2)
  • 从输入字符串中获取字符串编码和解码长度。
    方法如: Public Int 返回编码(字符串输入)
    例子:
    input: "ABC";
    Output: 123;
    
    input: "12345";
    Output: ABCDE;
  • 从任何单个数字中查找 HCF 和 LCM 可能性长度对
    例子:
    If you pass 4 its output should be like
    {0, 1}, {1, 0}, {1, 1}, {1, 2}, {2, 1}, {2, 3}, {1, 4}
    Find out length of pairs.