Update appNew update is available. Click here to update.
Coding Ninjas Studio contest
Beginner Contest 48
+4110 other showed interest
Contest ended
( IST)
Leaderboard
Discussion
Video SolutionNew
Contest details
Rewards
Rules & FAQs
Contest leaderboard
1
st
profile
Akash Singh
240
2
nd
profile
Sai Krishna Ravi Chandran
240
3
rd
profile
Arafath Qureshi
240
4
th
profile
Sourav Chowdhury
240
5
th
profile
Snehasis Mondal
181
inactive-left
1/2
active-left
Discussion
Go to discussion page
profile
Codestudio
Beginner Contest 48
Contests and hackathons
views
549
views
chat
4
replies
upvote
1
upvotes

Hey Ninjas!

This is a post to ask doubts and share your logic for solving questions from Beginner Contest 48! 😄
You can also view the rankings for the contest here (link).

If you face any issues during the contest, do let us know by replying below. ✌️

How was your experience in the contest or got any feedback? Let us know here (link)

upvote
1 Upvoted
Published on 29 Nov, 2023
Replies (4)
profile
Subh_08
29 Nov, 2023

My first problem answer compiled and run in IntelliJ accurately giving output for every input. But i don't know why the contest48 compiler gave error.

Here below my code :

 

 public static int theSuperMonsterHunt(int n, int d, int []a) {     // Write Your Code Here.     int ans=-1;     for(int i=0;i<n;i++){         if(isHunt(d,a[i])){             if(ans<a[i]){                 ans=a[i];             }         }     }     return ans; } public static boolean isHunt(int d,int num){     while(num>0){         int r=num%10;         if(r==d){             return false;         }         num=num/10;     }     return true; }

chat
1
replies
upvote
1
upvotes
reply
Reply
profile
Annajmussaquib Khan
30 Nov, 2023

I also faced the same problem so I wrote code in C++ and passed all test cases at the end of the contest

 

chat
0
replies
upvote
upvotes
reply
Reply
profile
Nitin Singh Rawat
30 Nov, 2023

why don't we get solutions after contest

chat
0
replies
upvote
upvotes
reply
Reply
Video solution
Contest details

Who Can Participate:

Coding Ninjas Studio is organizing this coding contest for beginner coders and is open to programmers from all across the globe. Everyone from freshers to professionals can participate.


About The Contest:

Coding Ninjas Studio contest is our weekly coding competition. In this contest, the coders compete while also improving their overall algorithmic knowledge. The coding contest helps students and professionals tackle a problem by reading the concepts one doesn’t know, and also gain practical experience by coding the solution to the problem, thus improving their skills significantly. This coding competition packs the excitement of programming with the fun of learning into one compelling challenge. Don't forget to try out a sample problem if you are new to Coding Ninjas Studio.

 

Duration Of The Programming Contest: 1.5 hours(90 mins)

Sample problem for you
Rewards

Rewards - Coding Ninjas Studio EXP

  • 1st - 1000
  • 2nd - 750
  • 3rd - 500
  • 4th-10th - 250
  • 11th-50th - 100
  • First Contest - 200
  • Participation - 100
Rules
  • You can submit solutions as many times as you'd like, there are no penalties for incorrect submissions. Only your best correct submission will be considered.
  • Those who achieve the score first will be placed higher in the ranklist in case of a tie.
  • Discussing Coding Ninjas Studio contest problems or any aspect of the problem, on any other platform on the web, on identification, could lead to disabling of respective account and banning from the community.
  • Please do not discuss strategy, suggestions, or tips in the comments during a live contest. Posting questions clarifying the problem statement is ok. If you are unsure, feel free email us at parikh@codingninjas.com
  • The problems will be partially graded. You will get score for passing certain test cases.
  • Facing any kind of issues, email us at support@codingninjas.com
For any issues and inquiries mail us at
support@codingninjas.com
FAQs
Which browser should i prefer to use to participate in contest?
What kind of questions can i expect in Coding Ninjas Studio contests?
Can I leave the test in between and continue later?
What if i encounter technical issues during the test?
What is the meaning of EXP?
Can we participate in contests from mobile?
Will I receive the results of the contest? If yes, when?
Will I get the allotted time to attempt the contest if I start the contest just few mins before the event End Time?