just started the dsa course of kunal, can say it is the best we can have , kunal please complete it whenever you get the time. your teaching skills are mind blowing.
hello sir I am a newbie in DSA so can you plz tell me that which topics of DSA completed by Kunal and which topics are incomplete in his DSA playlist thanks
Bhai tune uska previous video nhi dekha kya? Usme saaf saaf bol diya...wo series complete nahi karega.... Apna personal time kyu de wo...aisa bol raha tha...
Kunal please complete this DSA course. We really need this course to finish completely .... your teaching style amazing.need videos on trees, graphs, and dynamic programming and some of the algorithms also
@@chiragawasthi2261 hello sir I am a newbie in DSA so can you plz tell me that which topics of DSA completed by Kunal and which topics are incomplete in his DSA playlist thanks
# GOD Of DSA Hi I am a 11yr exp java guy was searching for some free course on youtube for DSA came accross your course and i just feel love in it...all in one place that too with java...i must say you have done very awsome work...your name will be there on this earth as long as DSA will be asked in interviews...May God Vishnu Bless You :)
HELLO KUNAL, STILL WAITING FOR COURSE VIDEOS WHICH ARE STILL NOT UPLOADED. This course is really very good. Please upload the remaining videos also....
hello sir I am a newbie in DSA so can you plz tell me that which topics of DSA completed by Kunal and which topics are incomplete in his DSA playlist thanks
please let us know when ur going to complete the dsa playlist because just few important topics are remaining to complete the DSA playlist . Please Kunal do it for us . Lots of people loving this DSA cource and ur way of explaining the concepts is just mind blowing so we just want to learn the reaining topics from u only . Literally i don't want to switch to another channer for DSA after watching ur videos, please its a request by heart please just complete those topics .
hello sir I am a newbie in DSA so can you plz tell me that which topics of DSA completed by Kunal and which topics are incomplete in his DSA playlist thanks
why did your android development community shut down? please help me out I am a first year trying to learn android development and have been watching your java DSA playlist for quite a while . I see you as my first mentor in my tech journey and hope your classroom community comes back again
bhaiya plz i genuinly beg you to complete DSA course ASAP its been a year since we started this journey and now placements are within 2 months plz bhaiya
hello sir I am a newbie in DSA so can you plz tell me that which topics of DSA completed by Kunal and which topics are incomplete in his DSA playlist thanks
the game is very cool , we can also add a function to check if the game is tie or not, currently if the game is tie and the board is full , still the loop keeps on going till infinite. public static boolean isFull(char[][] board) { for (int row = 0; row < board.length; row++) { for (int col = 0; col < board[row].length; col++) { if(board[row][col] == ' ') { return false; } } } return true; } this will check if the board is full then we are gonna break out of the loop printing the game is a tie if(isFull(board)) { System.out.println("Game is Tie"); break; } //place this at the end of the while loop also we can add try catch block to check for index out of bounds exception generated when taking input.
public class TicTakToe { public static void main(String[] args) { int n=4; char[][] ch=new char[n][n]; TikTokToe(ch); display(ch); } private static void TikTokToe(char[][] ch) { Scanner sc=new Scanner(System.in); System.out.println("Lets start the game"); boolean gameOver=false; boolean wrongEnter=false; char player='x'; while(!gameOver) { System.out.println("Enter the ordinates of "+player); int row=sc.nextInt(); int col=sc.nextInt(); if(ch[row][col]!='x' && ch[row][col]!='o'){ ch[row][col]=player; display(ch); wrongEnter=false; }else { System.out.println("Please Enter the right coordinates"); wrongEnter=true; } gameOver=isGameOver(player,ch,row,col); if(gameOver) { System.out.println(player+" won"); } if(!wrongEnter) { if(player=='x') { player='o'; }else { player='x'; } } } } private static boolean isGameOver(char player,char[][] ch,int row,int col) { // checking for row if(row>=0 && row=0 && col>> you can also use this code to play the game in any " N " size board . For simplicity of code i wrote it in a broad way you can also minimize it..
I have a doubt, in the code given for checking haveWon we are checking each row, column and diagonal but I think it's not necessary as the only possible win could be in the row, column or diagonal the player has made move in so i think we should only check that. I made the program that way and it works!!
Bhaiya i want to say that please complete the syllabus of the that you told ..we are waiting for the vedios.... Topics like dp tree graps etc .. we really really need it........ If it's take can you please something to mee please bhaiya.....🥺🥺 I am....such in trouble
I would say finish it, it's incomplete in term of few data structures but the learning experience with practice of current data structures would give you solid base to study remaining DS on your own
public static boolean isBoardFull(char[][] board) { for (int row = 0; row < board.length; row++) { for (int col = 0; col < board[row].length; col++) { if (board[row][col] == ' ') { // Found an empty space, so the board is not full return false; } } } // If no empty spaces were found, the board is full return true; }
DSA + interview preparation playlist: th-cam.com/play/PL9gnSGHSqcnr_DxHsP7AW9ftq0AtAyYqJ.html
just started the dsa course of kunal, can say it is the best we can have , kunal please complete it whenever you get the time. your teaching skills are mind blowing.
In which year you are
its incomplete
@@ahmedzaidi4228 thats y he is requesting him to complete it lmao , maybe u didnt read
hello sir I am a newbie in DSA so can you plz tell me that which topics of DSA completed by Kunal and which topics are incomplete in his DSA playlist
thanks
Bhai tune uska previous video nhi dekha kya? Usme saaf saaf bol diya...wo series complete nahi karega.... Apna personal time kyu de wo...aisa bol raha tha...
Your DSA content is amazing please resume the course , eagerly waiting for it !
Hi Pratyush, from where have you covered rest of the topics which were not taught in Kunal's DSA course?
@@thr6453 cover it from codeforcause
@@Kunaltwts hey guys what is DSA
Kunal please complete this DSA course. We really need this course to finish completely .... your teaching style amazing.need videos on trees, graphs, and dynamic programming and some of the algorithms also
need more such java DSA project. keep continuing legend😍
Plz keep Java project continue sir , the way u teach is amzingggg !!!!!!❤❤❤❤
hey kunal, been following your dsa bootcamp for a while. the teaching has been excellent. Please do complete the course asap! eagerly waiting
Kunal your way of teaching is amazing..plz complete the course.
Your DSA course is amazing man. You're such a legend
i really hope he completes that course ASAP
bro its incomplete like wtf
@@ahmedzaidi4228 u r not the only one who knows it xd
@@chiragawasthi2261 hello sir I am a newbie in DSA so can you plz tell me that which topics of DSA completed by Kunal and which topics are incomplete in his DSA playlist
thanks
what about tree and graph tutorial?
# GOD Of DSA
Hi I am a 11yr exp java guy was searching for some free course on youtube for DSA came accross your course and i just feel love in it...all in one place that too with java...i must say you have done very awsome work...your name will be there on this earth as long as DSA will be asked in interviews...May God Vishnu Bless You :)
HELLO KUNAL, STILL WAITING FOR COURSE VIDEOS WHICH ARE STILL NOT UPLOADED. This course is really very good. Please upload the remaining videos also....
Code (fork it to see the solution): replit.com/@KunalsReplit/TicTacToe
Join Replit: join.replit.com/kunal-kushwaha
yes Baby PLEAZE
only after kunal's dsa course is complete I can die peacefully
immortal
hello sir I am a newbie in DSA so can you plz tell me that which topics of DSA completed by Kunal and which topics are incomplete in his DSA playlist
thanks
@@bipg480 I think trees, graphs and dynamic programming is not done till now, If I'm wrong anyone please correct it.
Congratulations on unlocking immortality
Hi Priyojit, from where have you covered rest of the topics which were not taught in Kunal's DSA course?
KK’s DSA series totally 🔥
Kunal please complete this DSA course. We really need this course.. and your teaching style amazing..
please let us know when ur going to complete the dsa playlist because just few important topics are remaining to complete the DSA playlist . Please Kunal do it for us . Lots of people loving this DSA cource and ur way of explaining the concepts is just mind blowing so we just want to learn the reaining topics from u only . Literally i don't want to switch to another channer for DSA after watching ur videos, please its a request by heart please just complete those topics .
Hey @Kunal Kushwaha, Bhaiya please resume the dsa course, eagerly waiting for that!!!
Kunal plz plz plz complete the dsa course.Your teaching is amazing. We really need this.
Kunal, we are waiting for the next chapter : Trees. Please do it whenever you get time
Need more Java tutorials like this
isme java puri sikhayi h kya????????
@@snehaagrawal6648 English please?
Is this playlist is complete nad sufficient for learning java from scratch to advance
@@snehaagrawal6648 you can learn from scratch to core Java concepts well. Java is completed upto core Java concepts.
@@shree347 dsa is not completed in this series how many topics aree still yet to cover???
Hi sir. Please complete this course. You are great
Hey Kunal please complete the DSA course ASAP.
hello sir I am a newbie in DSA so can you plz tell me that which topics of DSA completed by Kunal and which topics are incomplete in his DSA playlist
thanks
Hey, Kunal please complete the DSA bootcamp........ eagerly waiting for the video since last month !!
Eagerly waiting for your tree series😄
he is going to complete this data structures bootcamp
Love you kunal you are the best
i guess he is straight XD
Please upload video on Tree graph in DSA series
i tottaly agree with you brother its been a year we started this wonderful journey
Lessss goooo! As always great work
why did your android development community shut down? please help me out I am a first year trying to learn android development and have been watching your java DSA playlist for quite a while . I see you as my first mentor in my tech journey and hope your classroom community comes back again
Please continue the the dsa bootcamp
Amazing video Kunal Sir
you are amazing teacher..! can you tell me by when all the videos will be uploaded of this course(playlist)?
Please add trees and graph concepts also. We need it .your course is amazing.
Kunal DSA ka next video upload karo bhai eagerly waiting ❤
Thanks For your Efforts
bhaiya plz i genuinly beg you to complete DSA course ASAP its been a year since we started this journey and now placements are within 2 months plz bhaiya
hello sir I am a newbie in DSA so can you plz tell me that which topics of DSA completed by Kunal and which topics are incomplete in his DSA playlist
thanks
Thanks,continue the series
the game is very cool , we can also add a function to check if the game is tie or not, currently if the game is tie and the board is full , still the loop keeps on going till infinite.
public static boolean isFull(char[][] board) {
for (int row = 0; row < board.length; row++) {
for (int col = 0; col < board[row].length; col++) {
if(board[row][col] == ' ') {
return false;
}
}
}
return true;
}
this will check if the board is full then we are gonna break out of the loop printing the game is a tie
if(isFull(board)) {
System.out.println("Game is Tie");
break;
}
//place this at the end of the while loop
also we can add try catch block to check for index out of bounds exception generated when taking input.
Please do some videos on trees, graphs, and dynamic programming also
Hi in which year you are??
@@sejalshrivastava9964 3rd
@@satyamchaudhary4061 aapke pass syllabus hai kya iss course ka
7:56 game is also over when all elements are placed
thanks so much
Thanks for sharing bahiya.
Please do more like this
please cover the graph and tree topic as soon as possible
Please continue this series...
please complete the dsa course
Good one
Great man
@kunal Please tell us about your plans of completing it?
Thank you guruji 🤲
tathastu
Please sir complete the course
Kunal upload the dynamic programming videos trees videos
ye kitne salo ki mehnt se ati h cheeze?? hats of man
Eazii 🙌🏻🙌🏻
bhai you should complete the dsa course
But what if all boxes fill ,the code will get infinity right ,I think you are not added draw match condition
Nice
Please upload more
Good video ✨
Great video, but you forgot to check if the Board is full and when to terminate the game
15:52 I don't want ex to win
Please resume this course
Please kunal suggest which development is better for full stack development or any other course which is better
Very interesting but you forgot the draw case
Kunal when are you going to upload a topic about HashMap and HashSet
plz complete your dsa course tree,graph and dp
sir, please continue the dsa course
Kunal please complete dsa course I had stuck at stack and queues
when you are going to upload trees lecture?
When will the DSA bootcamp be completed🤔
sir finally course kb tk complete hojaega complete.
complete DSA Course pls
Ye kab complete hoga sir
Is this last video of the series?
public class TicTakToe {
public static void main(String[] args) {
int n=4;
char[][] ch=new char[n][n];
TikTokToe(ch);
display(ch);
}
private static void TikTokToe(char[][] ch) {
Scanner sc=new Scanner(System.in);
System.out.println("Lets start the game");
boolean gameOver=false;
boolean wrongEnter=false;
char player='x';
while(!gameOver) {
System.out.println("Enter the ordinates of "+player);
int row=sc.nextInt();
int col=sc.nextInt();
if(ch[row][col]!='x' && ch[row][col]!='o'){
ch[row][col]=player;
display(ch);
wrongEnter=false;
}else {
System.out.println("Please Enter the right coordinates");
wrongEnter=true;
}
gameOver=isGameOver(player,ch,row,col);
if(gameOver) {
System.out.println(player+" won");
}
if(!wrongEnter) {
if(player=='x') {
player='o';
}else {
player='x';
}
}
}
}
private static boolean isGameOver(char player,char[][] ch,int row,int col) {
// checking for row
if(row>=0 && row=0 && col>> you can also use this code to play the game in any " N " size board . For simplicity of code i wrote it in a broad way you can also minimize it..
When are you going to teach us trees and graph
I have a doubt, in the code given for checking haveWon we are checking each row, column and diagonal but I think it's not necessary as the only possible win could be in the row, column or diagonal the player has made move in so i think we should only check that.
I made the program that way and it works!!
Exactly 💯
did you share this code somewhere for reference ?
Great work plzz make some more videos in java series loved it
BHAI SAAB AAP BHOOL GAYE H KI KOI COURSE START KIYA THA, kindly complete DSA+JAVA please.
@kunal you are planning to finish this bootcamp on 2025 😢?
Add the draw condition also
1st person to see the video. :)
really appretiate your dedication
Is he going to finish the DSA course?😍
imo never, chutiya kaat dia bhai ne mera, m socha tha ki padha dega 3-4 months m, isse accha babbar bhaiya wale se padh lo.
Bhaiya i want to say that please complete the syllabus of the that you told ..we are waiting for the vedios.... Topics like dp tree graps etc .. we really really need it........ If it's take can you please something to mee please bhaiya.....🥺🥺 I am....such in trouble
I am starting kunal's DSA course.....
So I want to know, how much percentage of his DSA course is complete???
Approximately 40%
I would say finish it, it's incomplete in term of few data structures but the learning experience with practice of current data structures would give you solid base to study remaining DS on your own
start it blindly
Start it.. it's designed in a way that by the time you reach at the last video you will have a solid base to kick start on your own...
isme java puri ho gyi kya
Bro please upload Hashing videos we are waiting alot
Learn something new , 😊🎉
In this project,
player 1 vs cpu instead of 2 player . Is this possible
There might be some Tic tac toe API .... Check them out
Hey how to convert to GUI ...... I will try it out
Need more videos
U on stealth mode? Hehe. Have u used copilot b4
Bhaiya ye konsa app he jispe ap code kar rahe the please batado,🙏🙏
Kunal what's your thought about Elon Musk's new decision with Twitter!!
Need more projects
Bro ur setup got changed, like in the starting videos ur mike was changing colour but now there's no mike
What about conditions when there is a draw or no playable moves??
Kunal bhai Binary Tree ka lecture daal do bhai please
public static boolean isBoardFull(char[][] board) {
for (int row = 0; row < board.length; row++) {
for (int col = 0; col < board[row].length; col++) {
if (board[row][col] == ' ') {
// Found an empty space, so the board is not full
return false;
}
}
}
// If no empty spaces were found, the board is full
return true;
}
Hello bro good video, but the game not getting draw only win by x or by o
i want to draw the game so what should i do help please
anyone please
😢bro please resume with trees, graphs and all placements will be held very soon