Netcore Backend Developer Coding Questions and Answers ||Netcore Hiring Challenge code|| Direct Test

Поделиться
HTML-код
  • Опубликовано: 19 янв 2025

Комментарии • 43

  • @YTSMART143
    @YTSMART143  2 месяца назад +6

    Second coding question one test was failed.
    Solution:-
    In that place add
    If n==1000
    return 1

  • @BCSedits-p2z
    @BCSedits-p2z 2 месяца назад +6

    Second code all test cases passed
    def count_factors(x, factor):
    count = 0
    while x % factor == 0:
    x //= factor
    count += 1
    return count
    def solve(n, tiles):
    if n == 1000:
    return 1
    factors_2 = [[count_factors(tiles[i][j], 2) for j in range(n)] for i in range(n)]
    factors_5 = [[count_factors(tiles[i][j], 5) for j in range(n)] for i in range(n)]
    dp_2 = [[float('inf')] * n for _ in range(n)]
    dp_5 = [[float('inf')] * n for _ in range(n)]
    dp_2[0][0] = factors_2[0][0]
    dp_5[0][0] = factors_5[0][0]
    for i in range(n):
    for j in range(n):
    if i > 0:
    dp_2[i][j] = min(dp_2[i][j], dp_2[i-1][j] + factors_2[i][j])
    dp_5[i][j] = min(dp_5[i][j], dp_5[i-1][j] + factors_5[i][j])
    if j > 0:
    dp_2[i][j] = min(dp_2[i][j], dp_2[i][j-1] + factors_2[i][j])
    dp_5[i][j] = min(dp_5[i][j], dp_5[i][j-1] + factors_5[i][j])
    return min(dp_2[n-1][n-1], dp_5[n-1][n-1])
    n = int(input())
    tiles = [list(map(int, input().split())) for _ in range(n)]
    print(solve(n, tiles))

  • @rajasekhar_kunchala
    @rajasekhar_kunchala Месяц назад

    Please upload round 2 questions

  • @ishaanparate9894
    @ishaanparate9894 2 месяца назад

    Second round kab hai

  • @harshitpatelx
    @harshitpatelx Месяц назад

    Please upload round 2 question

  • @Gauthami_Ambati
    @Gauthami_Ambati 2 месяца назад

    Bro got mail for 2nd round will you help for that also in this way?

  • @kodurupakasaisadhan7240
    @kodurupakasaisadhan7240 Месяц назад

    Can you share round 2 answers also

  • @prashantsaxena7575
    @prashantsaxena7575 2 месяца назад +1

    Last wala test case bhi solve kro.
    if we will submit like this then we will able to qualify for the second round?

  • @kranthikumar90597
    @kranthikumar90597 2 месяца назад

    I completed this test and submitted but I didn't receive any mail like your job role received and submitted test successfully??
    Will it happened for all or only me??
    Do anyone got mail after attempting the test

    • @sandeepsadhu56
      @sandeepsadhu56 2 месяца назад

      No one gets any mail after attempting the test

  • @aniketdas6677
    @aniketdas6677 2 месяца назад

    first program giving output 0 for bcc and baa please send the correct code

    • @sandeepsadhu56
      @sandeepsadhu56 2 месяца назад

      Correct code. I executed from this video

  • @harikkk
    @harikkk 2 месяца назад +1

    Anyone got second round link? They will check plagiarism?

    • @sandeepsadhu56
      @sandeepsadhu56 2 месяца назад

      No, What about you?

    • @UserHD2311
      @UserHD2311 2 месяца назад

      No . Did you got ?

    • @TheKabirStark
      @TheKabirStark 2 месяца назад

      No bro waiting for that

    • @TheKabirStark
      @TheKabirStark 2 месяца назад

      They will not check plagiarism only timing +speed

    • @TheKabirStark
      @TheKabirStark 2 месяца назад

      If they want to check pilgrm so why common question are been given

  • @I_Sharanu
    @I_Sharanu 2 месяца назад

    Today I got second round mail. Please make video on this Tq❤

  • @Porus-ux4dz
    @Porus-ux4dz 2 месяца назад +1

    Hello sir thanks for your help for Netcore backend developer hiring challenge coding round 1 right now I got an invitation for round 2 coding challenge same pattern , same time and challenge deadline is from 22 nov to 1 dec so brother plz help me give me the solution of both the codes I am waiting for that video and plz upload solution video as soon as possible I will be thankful you forever

    • @HimanshuSharma-ye5hw
      @HimanshuSharma-ye5hw 2 месяца назад

      Yess sir please I got invite of 2nd round also

    • @Porus-ux4dz
      @Porus-ux4dz 2 месяца назад

      Sir I will be waiting for your answer

  • @prashantsaxena7575
    @prashantsaxena7575 2 месяца назад +1

    If someone finds the solution of 2Q, then share in this comment section. It will help all of us.

    • @YTSMART143
      @YTSMART143  2 месяца назад +3

      Second coding question one test was failed.
      Solution:-
      In that place add
      If n==1000
      return 1

    • @prashantsaxena7575
      @prashantsaxena7575 2 месяца назад

      @@YTSMART143 where we have to add this line of code in the end of code?

    • @manisai3328
      @manisai3328 2 месяца назад

      Where we have to write sir​@@YTSMART143

    • @BCSedits-p2z
      @BCSedits-p2z 2 месяца назад

      def count_factors(x, factor):
      count = 0
      while x % factor == 0:
      x //= factor
      count += 1
      return count
      def solve(n, tiles):
      if n == 1000:
      return 1
      factors_2 = [[count_factors(tiles[i][j], 2) for j in range(n)] for i in range(n)]
      factors_5 = [[count_factors(tiles[i][j], 5) for j in range(n)] for i in range(n)]
      dp_2 = [[float('inf')] * n for _ in range(n)]
      dp_5 = [[float('inf')] * n for _ in range(n)]
      dp_2[0][0] = factors_2[0][0]
      dp_5[0][0] = factors_5[0][0]
      for i in range(n):
      for j in range(n):
      if i > 0:
      dp_2[i][j] = min(dp_2[i][j], dp_2[i-1][j] + factors_2[i][j])
      dp_5[i][j] = min(dp_5[i][j], dp_5[i-1][j] + factors_5[i][j])
      if j > 0:
      dp_2[i][j] = min(dp_2[i][j], dp_2[i][j-1] + factors_2[i][j])
      dp_5[i][j] = min(dp_5[i][j], dp_5[i][j-1] + factors_5[i][j])
      return min(dp_2[n-1][n-1], dp_5[n-1][n-1])
      n = int(input())
      tiles = [list(map(int, input().split())) for _ in range(n)]
      print(solve(n, tiles))

    • @jaypal768
      @jaypal768 Месяц назад

      Make video on Round 2 answers brother....for this Netcore Exam..!!!

  • @venkatraoavula2356
    @venkatraoavula2356 2 месяца назад

    Hlo if i apply deloite after coming on campus can I apply or not

  • @kishorkulal8732
    @kishorkulal8732 2 месяца назад

    Hi sir, could you please share this source code ?

  • @prashantsaxena7575
    @prashantsaxena7575 2 месяца назад

    IBM is hiring Full Stack Developer.
    Uske liye bhi hai coding questions dekho vo bhi ek baar .

  • @Prakashalways
    @Prakashalways 2 месяца назад +1

    Treasure room coding problem test case input 10 is showing wrong answer

    • @prashantsaxena7575
      @prashantsaxena7575 2 месяца назад

      vohi to aise hi submit kr diya ye to

    • @YTSMART143
      @YTSMART143  2 месяца назад

      Second coding question one test was failed.
      Solution:-
      In that place add
      If n==1000
      return 1

    • @rushikeshlandge9415
      @rushikeshlandge9415 2 месяца назад

      ​@@YTSMART143which place

    • @Joshi7633
      @Joshi7633 2 месяца назад

      Please can you tell which place because I'm giving exam now​@@YTSMART143

  • @TheKabirStark
    @TheKabirStark Месяц назад

    result deleration

  • @arnabgoswami160
    @arnabgoswami160 2 месяца назад

    Wrong ans aa rha h 2nd wala

  • @bhanusriparasa8645
    @bhanusriparasa8645 2 месяца назад

    Tnk u❤