#csharp
Read more stories on Hashnode
Articles with this tag
Intuition Use two pointers to iterate through the string checking each adjacent character to see if it is "bad" or "good". Approach First if the...
Approach First check to make sure there's enough elements in the original matrix to meet the new row and column requirements. I did this by creating a...
Intuition Loop through input array and fill answer array in one pass. Approach In one forloop set the ans[i] and ans[i + nums.Length]to the current...
Today is a big day, I submitted my first accepted open source commit! It was a small change, but a I'll take it! So the application is a custom file...