You need to log in or create an account to post to this user's Wall.
Nishant Mishra and 1337c0d3r are now friends 10 months, 1 week ago
- Nishant Mishra mentioned @anurag in the forum topic The Row with Max Number of 0’s in a Matrix in the group Amazon Interview
@anurag: ANDing may help because the matrix is row-sorted.
Nishant Mishra posted an update in the group Amazon Interview 10 months, 3 weeks ago
Can anyone help me with this one:
Write a code to implement a stack using 2 queues.Explain the time and space complexity of push() and pop() operations in your design. (AMAZON 2010)
Nishant Mishra changed their profile picture 10 months, 3 weeks ago
- 1 person likes this.
Nishant Mishra commented on the post, C code to remove spaces from a string 10 months, 3 weeks ago
Well, I think str[] is a sort of constant pointer, while *str is modifiable…
What I mean is, suppose :char str[]=”My name”;
char *str2=”your name”;//Now
str++; // illegal
str2++; // […]Nishant Mishra became a registered member 10 months, 3 weeks ago
