0% found this document useful (0 votes)
44 views

vertopal.com_ir_op2

Uploaded by

Gargee R
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
44 views

vertopal.com_ir_op2

Uploaded by

Gargee R
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 26

import requests

from bs4 import BeautifulSoup


import networkx as nx
import numpy as np

# Step 1: Web scraping using BeautifulSoup to get links from a webpage


def get_links(url):
try:
# Fetch page content
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')

# Extract all anchor tags with href attribute


links = [a['href'] for a in soup.find_all('a', href=True)]
return links
except Exception as e:
print(f"Error scraping {url}: {e}")
return []

# Example URLs (replace with actual URLs to scrape)


urls = [
"https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp",
"https://engg.dpuerp.in/Login.aspx"
]

# Step 2: Create a graph of the scraped links


web_graph = nx.DiGraph() # Directed graph

for url in urls:


links = get_links(url)
for link in links:
web_graph.add_edge(url, link)

print("Graph constructed with nodes and edges:", web_graph.edges())

Graph constructed with nodes and edges:


[('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'#main'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/taking-input-in-python/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/python-operators/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/python-numbers/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/python-string/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/python-lists/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/python-tuples/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/sets-in-python/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/python-dictionary/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/python3-if-if-else-nested-if-if-elif-
statements/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/loops-in-
python/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/python-functions/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/python-oops-concepts/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/python-data-structures-and-
algorithms/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/python-linked-
list/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/stack-in-python/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/queue-in-python/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/binary-tree-data-structure/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/introduction-to-heap-data-
structure-and-algorithm-tutorials/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-hashing-data-structure-
and-algorithm-tutorials/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-graphs-data-structure-
and-algorithm-tutorials/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-set-data-structure-and-
algorithm-tutorials/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-map-data-structure-and-
algorithm-tutorials/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/advanced-data-structures/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/sorting-algorithms-in-python/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/searching-algorithms/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/python-exception-handling/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/file-handling-python/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/python-list-exercise/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/python-string-exercise/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/python-tuple-exercise/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/python-dictionary-exercise/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/python-set-exercise/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/python-design-patterns/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/python-programming-examples/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/python-exercises-practice-
questions-and-solutions/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/data-types-in-java/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/variables-in-java/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/operators-in-java/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/decision-making-javaif-else-switch-
break-continue-jump/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/loops-in-java/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/methods-in-java/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/strings-in-java/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/arrays-in-java/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/object-oriented-programming-oops-
concept-in-java/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/classes-
objects-java/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/access-
modifiers-java/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/inheritance-
in-java/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/abstraction-in-java-
2/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/encapsulation-in-java/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/polymorphism-in-java/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/interfaces-in-java/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/packages-in-java/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/multithreading-in-java/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/file-handling-in-java/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/regular-expressions-in-java/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/collections-in-java-2/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/collections-class-in-java/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/list-interface-java-
examples/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/arraylist-in-java/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/linked-list-in-java/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/queue-interface-java/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/set-in-java/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/hashset-in-java/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/map-interface-java-examples/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/java-util-hashmap-in-java-
with-examples/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/hashtable-in-
java/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/iterators-in-java/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/comparator-interface-java/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/java-collections-interview-
questions/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/java-8-features/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/java-programming-examples/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/java-array-programs/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/java-string-programs/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/java-date-time-programs/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/java-file-handling-programs/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/java-collection-programs/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/java-jdbc-programs/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/java-apache-poi-programs/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/java-opencv-programs/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/java-interview-questions/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/core-java-interview-
questions-for-freshers/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/top-20-java-multithreading-interview-
questions-answers/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/oops-interview-questions/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-exercises/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/quizzes/50-java-language-mcqs-with-
answers-2/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/java-multiple-
choice-questions/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-projects/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/spring/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/spring-boot/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/spring-boot-interview-questions/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/spring-mvc/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/spring-mvc-interview-questions/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/hibernate-tutorial/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/hibernate-interview-
questions/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/c-programming-
language/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/c-plus-plus/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/learn-javascript-js-roadmap-
for-beginners/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/php-tutorial/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/r-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/csharp-programming-language/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/sql-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/scala-programming-language/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/perl-programming-language/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/golang/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/kotlin-programming-language/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/what-is-system-design-learn-
system-design/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/important-key-
concepts-and-terminologies-learn-system-design/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/analysis-of-monolithic-and-distributed-
systems-learn-system-design/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/what-is-scalability-and-how-to-achieve-
it-learn-system-design/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/complete-reference-to-databases-in-
designing-systems/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/what-is-high-level-design-learn-system-
design/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/what-is-low-level-
design-or-lld-learn-system-design/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/top-10-system-design-interview-
questions-and-answers/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/system-design-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/software-design-patterns/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/complete-roadmap-to-learn-system-
design/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/company-preparation/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/interview-preparation-for-
software-developer/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://practice.geeksforgeeks.org/company-tags/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/company-interview-corner/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/experienced-interview-experiences-
company-wise/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/internship-
interview-experiences-company-wise/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/competitive-programming-a-complete-
guide/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/quiz-corner-gq/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/aptitude-questions-and-
answers/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/operating-systems/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/dbms/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/computer-network-tutorials/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/engineering-mathematics-
tutorials/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/computer-
organization-and-architecture-tutorials/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/theory-of-computation-automata-
tutorials/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/compiler-design-
tutorials/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/digital-electronics-
logic-design-tutorials/#blg/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/software-engineering/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/git-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/aws-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/docker-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/kubernetes-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/microsoft-azure/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/google-cloud-platform-tutorial/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/linux-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/linux-commands/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/linux-commands-cheat-sheet/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/permissions-in-linux/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/beginners-guide-to-linux-
system-administration/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/linux-file-system/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-linux-shell-shell-
scripting/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/network-
configuration-trouble-shooting-commands-linux/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/linux-interview-questions/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/software-testing-tutorial/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/software-testing-interview-
questions/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/jira-tutorial/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/postgresql-tutorial/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/mongodb-tutorial/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/sql-interview-questions/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/mysql-interview-questions/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/pl-sql-interview-questions/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/android-tutorial/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/android-studio-tutorial/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/kotlin-android-tutorial/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/android-projects-from-basic-
to-advanced-level/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/top-50-android-interview-questions-
answers-sde-i-to-sde-iii/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/6-weeks-of-android-app-development-
free-project-based-learning/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/excel-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-ms-excel/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/data-analysis-in-excel/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/basic-excel-formulas-and-functions/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/instant-data-analysis-in-
advanced-excel/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/workbooks-in-
microsoft-excel/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/statistical-
functions-in-excel-with-examples/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/data-visualization-in-excel/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/pivot-tables-in-excel/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/working-with-excel-
spreadsheets-in-python/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/basic-excel-shortcuts/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/number-theory/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/algebra/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/linear-algebra/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/math-trigonometry/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/set-theory/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/statistics/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/probability-in-maths/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/geometry/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/mensuration/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/logarithms/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/math-calculus/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/complete-guide-to-arrays-data-
structure/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/introduction-to-
matrix-or-grid-data-structure-and-algorithms-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/complete-guide-to-string-data-
structure/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/singly-linked-list-
definition-meaning-dsa/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-and-insertion-in-a-doubly-
linked-list/?=ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/circular-
linked-list/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/insertion-in-
doubly-circular-linked-list/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-linked-list-data-
structure-and-algorithm-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-stack-data-structure-
and-algorithm-tutorials/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-queue-data-structure-
and-algorithm-tutorials/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/generic-treesn-array-trees/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/introduction-to-binary-tree-
data-structure-and-algorithm-tutorials/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-binary-search-tree-
data-structure-and-algorithm-tutorials/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-avl-tree/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-of-b-tree-2/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-of-b-tree/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-red-black-tree/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/introduction-to-tree-data-
structure-and-algorithm-tutorials/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-data-structures/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/design-and-analysis-of-
algorithms/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/asymptotic-
notation-and-analysis-based-on-input-size-of-algorithms/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/types-of-asymptotic-notations-in-
complexity-analysis-of-algorithms/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/worst-average-and-best-case-analysis-
of-algorithms/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/linear-
search/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/binary-search/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/selection-sort/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/bubble-sort/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/insertion-sort/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/merge-sort/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/quick-sort/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/heap-sort/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/counting-sort/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/radix-sort/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/bucket-sort-2/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-sorting-algorithm/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/introduction-to-greedy-
algorithm-data-structures-and-algorithm-tutorials/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-dynamic-programming-
data-structures-and-algorithm-tutorials/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-pattern-searching-data-
structure-and-algorithm-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-recursion-data-
structure-and-algorithm-tutorials/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-backtracking-data-
structure-and-algorithm-tutorials/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-divide-and-conquer-
algorithm-data-structure-and-algorithm-tutorials/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/mathematical-algorithms/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/geometric-algorithms/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-bitwise-algorithms-
data-structures-and-algorithms-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/randomized-algorithms/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-branch-and-bound-data-
structures-and-algorithms-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-algorithms/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/learn-data-structures-and-
algorithms-dsa-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/explore?
page=1&sortBy=submissions&itm_source=geeksforgeeks&itm_medium=main_hea
der_outIndia&itm_campaign=DSA_Header'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/problem-of-the-day?
itm_source=geeksforgeeksitm_source=geeksforgeeks&itm_medium=main_heade
r_outIndia&itm_campaign=DSA_Header'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/explore?
page=1&company=Amazon&sortBy=submissions&itm_source=geeksforgeeks&itm_
medium=main_header_outIndia&itm_campaign=DSA_Header'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/explore?
page=1&company=Microsoft&sortBy=submissions&itm_source=geeksforgeeks&i
tm_medium=main_header_outIndia&itm_campaign=DSA_Header'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/explore?
page=1&company=Flipkart&sortBy=submissions&itm_source=geeksforgeeks&it
m_medium=main_header_outIndia&itm_campaign=DSA_Header'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/explore?
page=1&curated[]=1&sortBy=submissions&curated_names[]=SDE Sheet?
itm_source=geeksforgeeks&itm_medium=main_header_outIndia&itm_campaign=
DSA_Header'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/explore?
page=1&difficulty=School&itm_source=geeksforgeeks&itm_medium=main_head
er_outIndia&itm_campaign=DSA_Header'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/explore?
page=1&difficulty=Basic&itm_source=geeksforgeeks&itm_medium=main_heade
r_outIndia&itm_campaign=DSA_Header'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/explore?
page=1&difficulty=Easy&itm_source=geeksforgeeks&itm_medium=main_header
_outIndia&itm_campaign=DSA_Header'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/explore?
page=1&difficulty=Medium&itm_source=geeksforgeeks&itm_medium=main_head
er_outIndia&itm_campaign=DSA_Header'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/explore?
page=1&difficulty=Hard&itm_source=geeksforgeeks&itm_medium=main_header
_outIndia&itm_campaign=DSA_Header'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/explore?
page=1&category=CPP&itm_source=geeksforgeeks&itm_medium=main_header_ou
tIndia&itm_campaign=DSA_Header'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/explore?
page=1&category=Java&itm_source=geeksforgeeks&itm_medium=main_header_o
utIndia&itm_campaign=DSA_Header'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/explore?
category=python&itm_source=geeksforgeeks&itm_medium=main_header_outInd
ia&itm_campaign=DSA_Header'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', "https://www.geeksforgeeks.org/explore?
page=1&sprint=ca8ae412173dbd8346c26a0295d098fd&sortBy=submissions&spri
nt_name=Beginner's DSA
Sheet&itm_source=geeksforgeeks&itm_medium=main_header_outIndia&itm_cam
paign=DSA_Header"), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/explore?
page=1&sprint=50746f92a895c22a50504ac0c1fb9c84&sortBy=submissions&spri
nt_name=Top 50 Array
Problems&itm_source=geeksforgeeks&itm_medium=main_header_outIndia&itm_
campaign=DSA_Header'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/explore?
page=1&sprint=57184072610b884e5df3584cc534115d&sortBy=submissions&spri
nt_name=Top 50 String
Problems&itm_source=geeksforgeeks&itm_medium=main_header_outIndia&itm_
campaign=DSA_Header'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/explore?
page=1&sprint=93d672753b74440c7427214c8ebf866d&sortBy=submissions&spri
nt_name=Top 50 DP
Problems&itm_source=geeksforgeeks&itm_medium=main_header_outIndia&itm_
campaign=DSA_Header'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/explore?
page=1&sprint=405e9db0f353691ad3b2d546b19145e9&sortBy=submissions&spri
nt_name=Top 50 Graph
Problems&itm_source=geeksforgeeks&itm_medium=main_header_outIndia&itm_
campaign=DSA_Header'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/explore?
page=1&sprint=5f24de84b65bf7c4f4399c8111e26b81&sortBy=submissions&spri
nt_name=Top 50 Tree
Problems&itm_source=geeksforgeeks&itm_medium=main_header_outIndia&itm_
campaign=DSA_Header'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/facebookmeta-sde-
sheet-interview-questions-and-answers/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/amazon-sde-sheet-interview-questions-
and-answers/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/apple-sde-
sheet-interview-questions-and-answers/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/netflix-sde-sheet-interview-questions-
and-answers/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/google-sde-
sheet-interview-questions-and-answers/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/sde-sheet-a-complete-guide-for-sde-
preparation/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/most-asked-
dsa-interview-problems-for-beginners/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/must-do-coding-questions-for-companies-
like-amazon-microsoft-adobe/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/must-do-coding-questions-for-product-
based-companies/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/must-coding-
questions-company-wise/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/top-100-data-structure-and-algorithms-
dsa-interview-questions-topic-wise/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/puzzles/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/top-100-puzzles-asked-in-interviews/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/top-20-puzzles-commonly-
asked-during-sde-interviews/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/python-programming-language/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/machine-learning/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/data-science-with-python-
tutorial/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/r-programming-for-
data-science/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/pandas-
tutorial/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/numpy-tutorial/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/python-data-visualization-
tutorial/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/data-visualization-
in-r/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/data-analysis-with-
python/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/data-analysis-using-r/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/deep-learning-tutorial/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/natural-language-processing-
nlp-tutorial/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/html-
tutorial/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/css-tutorial/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/javascript/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/react-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/nodejs/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/introduction-to-angularjs/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/bootstrap/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/typescript/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/django-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/top-django-projects-for-beginners/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/django-interview-questions/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/flask-tutorial/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/flask-projects/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/flask-interview-questions-and-answers/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/postman-tutorial/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/introduction-to-github/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/wordpress-tutorial/?
ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/web-design/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/html-cheat-sheet-a-basic-guide-to-
html/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/css-cheat-sheet-a-
basic-guide-to-css/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/javascript-cheat-sheet-a-basic-guide-
to-javascript/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/react-cheat-
sheet/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/angular-cheat-sheet-a-
basic-guide-to-angular/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/jquery-cheat-sheet-a-basic-guide-to-
jquery/?ref=outind'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/bootstrap-cheatsheet-a-
basic-guide-to-bootstrap/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/web-development/?ref=outind'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/courses/coding-for-everyone?
itm_source=geeksforgeeks&itm_medium=main_header&itm_campaign=courses')
, ('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/courses/dsa-to-development-coding-
guide?
itm_source=geeksforgeeks&itm_medium=main_header&itm_campaign=courses')
, ('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/courses/data-science-live?
itm_source=geeksforgeeks&itm_medium=main_header&itm_campaign=courses')
, ('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/courses/mastering-generative-ai-and-
chat-gpt?
itm_source=geeksforgeeks&itm_medium=main_header&itm_campaign=courses')
, ('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/courses/search?
query=AWS&itm_source=geeksforgeeks&itm_medium=main_header&itm_campaign
=courses'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/courses/dsa-self-paced?
itm_source=geeksforgeeks&itm_medium=main_header&itm_campaign=courses')
, ('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/courses/Data-Structures-With-Python?
itm_source=geeksforgeeks&itm_medium=main_header&itm_campaign=courses')
, ('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/courses/data-structures-and-algorithms-
in-javascript?
itm_source=geeksforgeeks&itm_medium=main_header&itm_campaign=courses')
, ('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/courses/cpp-programming-basic-to-
advanced?
itm_source=geeksforgeeks&itm_medium=main_header&itm_campaign=courses')
, ('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/courses/Java-Programming-basic-to-
advanced?
itm_source=geeksforgeeks&itm_medium=main_header&itm_campaign=courses')
, ('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/courses/Python-Foundation?
itm_source=geeksforgeeks&itm_medium=main_header&itm_campaign=courses')
, ('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/courses/javascript?
itm_source=geeksforgeeks&itm_medium=main_header&itm_campaign=courses')
, ('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/courses/c-Programming-basic-to-
advanced?
itm_source=geeksforgeeks&itm_medium=main_header&itm_campaign=courses')
, ('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/arrays-in-java/?ref=shm'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/strings-in-java/?ref=shm'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/object-oriented-programming-oops-
concept-in-java/?ref=shm'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/java-
collection-tutorial/?ref=shm'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-8/?ref=shm'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-multithreading-tutorial/?
ref=shm'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/exceptions-in-java/?
ref=shm'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/java-programming-examples/?
ref=shm'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/top-50-java-project-ideas-
for-beginners-advanced/?ref=shm'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-collections-interview-questions/?
ref=shm'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/interview-questions-for-java-
professionals/?ref=shm'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/quizzes/50-
java-language-mcqs-with-answers-2/?ref=shm'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/spring/?ref=shm'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/spring-mvc/?ref=shm'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/spring-boot/?ref=shm'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/hibernate-tutorial/?ref=shm'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://geeksforgeeksapp.page.link/?link=https://www.geeksforgeeks.or
g/jagged-array-in-java/?type%3Darticle%26id
%3D136846&apn=free.programming.programming&isi=1641848816&ibi=org.geek
sforgeeks.GeeksforGeeksDev&efr=1'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://news.google.com/publications/CAAqBwgKMLTrzwsw44bnAw?hl=en-
IN&gl=IN&ceid=IN%3Aen'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/arrays-in-java/'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://en.wikipedia.org/wiki/Jagged_array'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/different-ways-to-declare-and-
initialize-2-d-array-in-java/?ref=previous_article'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/final-arrays-in-java/?
ref=next_article'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/difference-between-
java-sql-time-java-sql-timestamp-and-java-sql-date-in-java/?
ref=oin_asr1'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/java-awt-vs-java-swing-vs-
java-fx/?ref=oin_asr2'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/java-io-
objectinputstream-class-java-set-2/?ref=oin_asr3'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-lang-class-class-java-set-1/?
ref=oin_asr4'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/java-lang-strictmath-class-
java-set-2/?ref=oin_asr5'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/java-lang-
instrument-classdefinition-class-in-java/?ref=oin_asr6'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-util-treemap-pollfirstentry-
polllastentry-java/?ref=oin_asr7'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-util-treemap-floorentry-floorkey-
java/?ref=oin_asr8'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/java-lang-math-atan2-
java/?ref=oin_asr9'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/java-net-urlconnection-
class-in-java/?ref=oin_asr10'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-8-arraydeque-removeif-method-in-
java-with-examples/?ref=oin_asr11'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-util-gregoriancalendar-class-
java/?ref=oin_asr12'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/java-lang-long-
lowestonebit-method-java-examples/?ref=oin_asr13'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-swing-translucent-shaped-window-
java/?ref=oin_asr14'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/java-lang-long-
numberoftrailingzeros-method-java-examples/?ref=oin_asr15'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-lang-long-numberofleadingzeros-
method-java-examples/?ref=oin_asr16'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-lang-long-highestonebit-method-
java-examples/?ref=oin_asr17'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-lang-long-bytevalue-method-java-
examples/?ref=oin_asr18'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/java-lang-
long-reverse-method-java-examples/?ref=oin_asr19'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-lang-reflect-proxy-class-in-java/?
ref=oin_asr20'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/java-math-biginteger-
modinverse-method-in-java/?ref=oin_asr21'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-math-biginteger-probableprime-
method-in-java/?ref=oin_asr22'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-how-to-start-learning-java/?
ref=oin_asr23'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/java-stream-collectors-
tocollection-in-java/?ref=oin_asr24'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-clock-tickminutes-method-in-java-
with-examples/?ref=oin_asr25'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-clock-withzone-method-in-java-
with-examples/?ref=oin_asr26'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-util-concurrent-recursiveaction-
class-in-java-with-examples/?ref=oin_asr27'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-8-doubletointfunction-interface-
in-java-with-example/?ref=oin_asr28'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-8-inttodoublefunction-interface-
in-java-with-examples/?ref=oin_asr29'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/java-8-doubletolongfunction-interface-
in-java-with-examples/?ref=oin_asr30'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/category/programming-language/java/?
ref=article_category'), ('https://www.geeksforgeeks.org/jagged-array-
in-java/?ref=lbp', 'https://www.geeksforgeeks.org/tag/java-array-
programs/?ref=article_tag'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/tag/java-
arrays/?ref=article_tag'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/explore?
category=Java&ref=article_practice_tag'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/geeksforgeeks-premium-subscription?
itm_source=geeksforgeeks&itm_medium=rightbar_oin&itm_campaign=premium'
), ('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.facebook.com/geeksforgeeks.org/'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.instagram.com/geeks_for_geeks/'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://in.linkedin.com/company/geeksforgeeks'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://twitter.com/geeksforgeeks'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.youtube.com/geeksforgeeksvideos'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://geeksforgeeksapp.page.link/gfg-app'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/about/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/legal/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/press-release/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/about/contact-us/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/advertise-with-us/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/gfg-corporate-solution/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/campus-training-
program/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/community/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/introduction-to-
programming-languages/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/python-programming-language/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/java/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/c-plus-plus/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/php-tutorials/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/golang/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/sql-tutorial/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/r-tutorial/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/android-tutorial/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/geeksforgeeks-online-
tutorials-free/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/learn-data-structures-and-algorithms-
dsa-tutorial/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/data-structures/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/fundamentals-of-algorithms/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/complete-guide-to-dsa-
for-beginners/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/basic-coding-problems-in-dsa-for-
beginners/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/complete-
roadmap-to-learn-dsa-from-scratch/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/top-100-data-structure-and-algorithms-
dsa-interview-questions-topic-wise/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/dsa-roadmap-for-beginner-to-advanced-
by-sandeep-jain/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/geeksforgeeks-master-sheet-list-of-all-
cheat-sheets/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/ai-ml-ds/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/data-science-tutorial/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/data-science-for-
beginners/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/machine-
learning/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/machine-
learning-mathematics/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/python-data-visualization-tutorial/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/pandas-tutorial/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/numpy-tutorial/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/natural-language-
processing-nlp-tutorial/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/deep-learning-tutorial/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/web-technology/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/html/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/css/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/javascript/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/typescript/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/learn-reactjs/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/nextjs/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/bootstrap/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/web-design/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/python-programming-
examples/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/python-
projects-beginner-to-advanced/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/python-tkinter-tutorial/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/python-web-scraping-
tutorial/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/opencv-python-
tutorial/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/python-
interview-questions/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/django-tutorial/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/operating-systems/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/computer-network-tutorials/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/dbms/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/software-engineering/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/digital-electronics-
logic-design-tutorials/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/engineering-mathematics-tutorials/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/software-development/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/software-testing-
tutorial/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/devops-
tutorial/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/git-tutorial/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/linux-tutorial/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/aws-tutorial/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/docker-tutorial/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/kubernetes-tutorial/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/microsoft-azure/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/google-cloud-platform-
tutorial/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/devops-
roadmap/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/system-design-
tutorial/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/what-is-high-
level-design-learn-system-design/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/what-is-low-level-design-or-lld-learn-
system-design/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/unified-modeling-language-uml-
introduction/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/system-design-interview-guide/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/software-design-
patterns/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/object-
oriented-analysis-and-design/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/system-design-interview-bootcamp-
guide/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/most-commonly-
asked-system-design-interview-problems-questions/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/technical-interview-preparation/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/competitive-
programming-a-complete-guide/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/top-algorithms-and-data-structures-for-
competitive-programming/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/company-wise-recruitment-process/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/company-preparation/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/aptitude-questions-and-
answers/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/puzzles/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/maths/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/physics/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/chemistry/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/biology/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/social-science/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/english-grammar/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/commerce/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/tag/world-general-
knowledge/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp', 'https://www.geeksforgeeks.org/videos/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/videos/category/sde-
sheet/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/videos/category/python/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/videos/category/java-
w6y5f4/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/videos/category/c/?ref=outindfooter'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/videos/category/web-development/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/videos/category/data-
science/?ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-
array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/videos/category/cs-subjects/?
ref=outindfooter'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://www.geeksforgeeks.org/copyright-
information/'), ('https://www.geeksforgeeks.org/jagged-array-in-java/?
ref=lbp', 'https://www.geeksforgeeks.org/cookie-policy/'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://www.geeksforgeeks.org/privacy-policy/'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://write.geeksforgeeks.org/how-to-improve'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp', '#'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://write.geeksforgeeks.org/posts-new?cid=e8fc46fe-75e7-4a4b-
be3c-0c862d655ed0'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://write.geeksforgeeks.org/posts-new?
cid=82536bdb-84e6-4661-87c3-e77c3ac04ede'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://write.geeksforgeeks.org/posts-new?cid=5219b0b2-7671-40a0-
9bda-503e28a61c31'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://write.geeksforgeeks.org/posts-new?
cid=22ae3354-15b6-4dd4-a5b4-5c7a105b8a8f'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://write.geeksforgeeks.org/posts-new?cid=c5e1ac90-9490-440a-
a5fa-6180c87ab8ae'), ('https://www.geeksforgeeks.org/jagged-array-in-
java/?ref=lbp', 'https://write.geeksforgeeks.org/posts-new?
cid=5ebb8fe9-b980-4891-af07-f2d62a9735f2'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://write.geeksforgeeks.org/pick-article?taxonomy=10261&page=1'),
('https://www.geeksforgeeks.org/jagged-array-in-java/?ref=lbp',
'https://write.geeksforgeeks.org/posts-new'),
('https://engg.dpuerp.in/Login.aspx', 'ResetPassword.aspx')]

# Install requests, BeautifulSoup, and networkx


!pip install requests
!pip install beautifulsoup4
!pip install networkx

Requirement already satisfied: requests in


/usr/local/lib/python3.10/dist-packages (2.32.3)
Requirement already satisfied: charset-normalizer<4,>=2 in
/usr/local/lib/python3.10/dist-packages (from requests) (3.4.0)
Requirement already satisfied: idna<4,>=2.5 in
/usr/local/lib/python3.10/dist-packages (from requests) (3.10)
Requirement already satisfied: urllib3<3,>=1.21.1 in
/usr/local/lib/python3.10/dist-packages (from requests) (2.2.3)
Requirement already satisfied: certifi>=2017.4.17 in
/usr/local/lib/python3.10/dist-packages (from requests) (2024.8.30)
Requirement already satisfied: beautifulsoup4 in
/usr/local/lib/python3.10/dist-packages (4.12.3)
Requirement already satisfied: soupsieve>1.2 in
/usr/local/lib/python3.10/dist-packages (from beautifulsoup4) (2.6)
Requirement already satisfied: networkx in
/usr/local/lib/python3.10/dist-packages (3.4.1)

You might also like