-
Host A Website In Dark Web
How to host a website in Dark web from localhost Hi Most of you might heard of dark-web. darkWeb-wiki This post is about how one can host own website in darkweb. Lets Start the journey from localhost to dark-web But First, When I say dark web website , what I...
-
Traveling Salesman Using Genetic Algorithm
published: true — A Genetic algorithm to solve Traveling salesman problem Hi Everyone, Most of you might heard about Traveling salesman problem in mathematics. For those who don’t know What TSP is, Problem description: There are N-cities say C1,C2,C3 and so on. distance between two cities is given as C12=d1,C13=d2,C34=f2…....
-
Maximum Subarray
Hi Coders, Today I will talk about a very simple but good programming problem which is also very famous among coding interviews. Description Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum. Example: Input: -2,1,-3,4,-1,2,1,-5,4 Output:...