using System;
/**
There is a website site link map 'weblog' generated from a crawler. Please write a function (find_visited_links) to find out linked page paths.
weblog =
[
{'visitor':'a','url':'1'},
{'visitor':'c','url':'5'}
{'visitor':'b','url':'2'}
{'visitor':'b','url':'1'}
{'visitor':'c','url':'1'}
{'visitor':'a','url':'3'}
{'visitor':'c','url':'4'}
{'visitor':'a','url':'5'}
]
- where out put of find_visited_links(weblog) will be something like bellow -
1->3->5
2->1->2
5->1->4->1
**/
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}