We are interested to get new knowledge from you after taking a long break 😂❤❤
@PiyushSharma-we8yd5 ай бұрын
shashwat bhaiya has become a part of my daily routine. Jai ho bhaiya. love you
@adhbhutcomedy64965 ай бұрын
Bhaiya, I noticed that I have become too dependent on you because you did not upload the problem for some days, I had a lot of problem in solving it. And thanks a lot for uploading the problem today.
@nikhilaggarwal93255 ай бұрын
Great content!
@mr.nishantawasthi44025 ай бұрын
Thanks sir
@chinubunny99745 ай бұрын
Bhaya aaj late video aa rhi ?
@hello-my4yh5 ай бұрын
doubt: I write this code in cpp but it gives runtime error on test case 8 because the array is [1,1,0,-2147483648] . So answer of the finalxor becomes -2147483648 . And when i try to find mask we have to substract from -1, Which becomes -2147483649 and this number is outside the range of signed integer . I solved the issue by explicitly type cast to long data type. But the doubt is -Why the same code is working in java? But not in cpp? -Range of integer is same for both languages? - cpp and java both can implicit type cast data type so why the error in cpp?
@shashwat_tiwari_st5 ай бұрын
See. Theoretically cpp and java will have same int range. But java is always fixed where as in cpp it depends on the architecture. So java is always 32 bit whereas cpp can be 16 bit or 32 bit depending on the leetcode server where your code ran... this is their mistake. They should taken care of this part.
@hello-my4yh5 ай бұрын
@@shashwat_tiwari_st Thank you for this information and amazing video.😀