Azure functions are used to isolated small pieces of logic.These functions are triggered when some triggering even happens. Azure fucntions is a Serverless computing technology Azure functions can be created using C#,Typescript and many … [Continue reading] about Overview of Azure Functions
Check if a string is palindrome in C#
Here we will be checking if a string is palindrome. To check if string is palindrome we need to know the occurrence of each character. Every character should occur even number of times. This is except the case when the length of the string is not … [Continue reading] about Check if a string is palindrome in C#
Binary Search in C#
Binary Search is one of the methods of searching an item in a list of items.Here we will look into how to implement binary search in C#. We first need to calculate the middle element in the list and then compare the element we are searching with … [Continue reading] about Binary Search in C#
Find pattern in a String using Python
First declare the main text text="abcd" #this is main text Noe declare the pattern you want to search in the main text patt="cd" #this is pattern to search for in the main text Now find the difference in length of main text and pattern #first … [Continue reading] about Find pattern in a String using Python
Understanding Azure function
azure function is a way to implement serverless computing in azure.This means that the developer is not concerned about things such as managing infrastrcuture,scalling and deployment.Instead developer can focus on business logic. Function is … [Continue reading] about Understanding Azure function