Find a Middle of the Linked List – Geekfrisk
In the following article, we are going to check how to find the middle of the Linked List Given the head of a singly linked list, return the… Read More »Find a Middle of the Linked List – Geekfrisk
In the following article, we are going to check how to find the middle of the Linked List Given the head of a singly linked list, return the… Read More »Find a Middle of the Linked List – Geekfrisk
Given two strings s and t, return true if s is a subsequence of t, or false otherwise. A subsequence of a string is a new string that is formed from the original string by deleting some (can be… Read More »Is Subsequence – Coding program
Given a binary array nums, return the maximum number of consecutive 1‘s in the array. Example 1: Input: nums = [1,1,0,1,1,1] Output: 3 Explanation: The first two digits… Read More »Max Consecutive Ones – C# Program
Given an array nums of integers, return how many of them contain an even number of digits. Input: nums = [12,345,2,6,7896] Output: 2 Explanation: 12 contains 2 digits (even… Read More »Find Numbers with Even Number of Digits
Find the length of the last word present in the sentence Step 1: Remove the extra spaces from the string Use inbuilt Trim() function to… Read More »Length of Last Word – C-Sharp Program
Problem: Input: nums = [1,2,3,4] Output: [1,3,6,10] Explanation: Running sum is obtained as follows: [1, 1+2, 1+2+3, 1+2+3+4]. Solution 1: Solution 2: The simple and… Read More »Running Sum of 1d Array – C# Program
In this post, you will understand the most interview questions asked in ASP.NET MVC Interview What is MVC ? MVC is an architectural pattern, it’s… Read More »ASP.NET MVC Interview Questions and Answers
In this article, we will check whats the main differences between the int.Parse and int.TryParse. Both int.Parse and int.TryParse is used to convert the string… Read More »Difference between int.Parse and int.TryParse in C#
In this article, we can discuss the main difference between the ToString() and Convert.ToString in C# Both the function are used to convert data into… Read More »Difference between ToString() and Convert.ToString in C#
In this article, we can discuss the Occurrences count in the string for example, Consider engineering string is given, in this string e character is… Read More »String Occurrence Count – Program