Coding
Python Switch Case
In the programming languages, a switch statement is a logical loop or syntax that tests the variable’s value and compares it with multiple cases. Once the match is found with the cases given in the Read more…
In the programming languages, a switch statement is a logical loop or syntax that tests the variable’s value and compares it with multiple cases. Once the match is found with the cases given in the Read more…
CGI is an abbreviation for Common Gateway Interface. It is not a type of language but a set of rules (specification) that establishes a dynamic interaction between a web application and the client application (or Read more…
Several weeks ago I dropped a question in stack overflow but I haven’t gotten any answers so I’m bringing it here. https://stackoverflow.com/questions/64812976/3d-perlin-noise-normalize-function-in-c-sharp It requires knowledge about both python and c# and any help is greatly Read more…
An IDE or an Integrated Development Environment is a type of software where developers can develop many software’s and applications and run the programs inside it. An Integrated Development Environment (IDE) mainly consists of a Read more…
Techie Delight Coding made easy Given three sorted arrays of variable length, efficiently compute the minimum range with at-least one element from each of the arrays. For example, Input: 3 sorted arrays of variable length Read more…
Techie Delight Coding made easy Given an array of integers, find the length of longest subsequence formed by the consecutive integers. The subsequence should contain all distinct values and the character set should be consecutive, Read more…
Techie Delight Coding made easy Given an array and a positive number k, check whether the array contains any duplicate elements within range k. If k is more than size of the array, the solution Read more…
Techie Delight Coding made easy Longest Alternating Subarray is a problem of finding a subarray with alternating positive and negative elements, and in which the subarray is as long as possible. The problem differs from Read more…
Techie Delight Coding made easy Given a string, find minimum number of deletions required to convert it into a palindrome. For example, consider the string ACBCDBAA. The minimum number of deletions required are 3. A C B Read more…
Techie Delight Coding made easy Write an efficient algorithm to reverse the specified portion of a given linked list. Input: Linked List: 1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 Read more…