
Vidit Sarkar
Studying Computer Science & Engineering. Prefer to write clean and easy-to-understand code. Languages I use Python, C++, C, Java Script and Java.
Education
Bachelor of Computer Science & Engineering
We're a place where coders share, stay up-to-date and grow their careers.
Studying Computer Science & Engineering. Prefer to write clean and easy-to-understand code. Languages I use Python, C++, C, Java Script and Java.
Education
Bachelor of Computer Science & Engineering
Recent comments
A Google Interview Question
I think the expected answer of first additional example shoul...
Leetcode Daily - Longest Palindrome
Thanks for sharing the problem and your solution. Here is my ...
Python | Isogram Problem!
Yes, you are right!
Python | Isogram Problem!
Let's take the example , s = "Six-Year- Old". replace('-', ''...
Python | Isogram Problem!
def is_isogram(str): cleaned = str.replace('-', '').repla...
Unconditional Challenge: FizzBuzz without `if`
Thanks for the reply. I think re-submission is also allowed. ...
Daily Challenge #260 - Subtract the Sum
And here is a recursive Python solution, fruits = [ "ki...
Daily Challenge #260 - Subtract the Sum
Here is a solution, return "apple";