-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #458 from Kritika75/features
Added Sudoku generator
- Loading branch information
Showing
16 changed files
with
795 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
|
||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | ||
|
||
<script> | ||
L_NO_TOUCH = false; | ||
L_DISABLE_3D = false; | ||
</script> | ||
|
||
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style> | ||
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script> | ||
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/> | ||
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css"/> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/> | ||
|
||
<meta name="viewport" content="width=device-width, | ||
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | ||
<style> | ||
#map_b985afb32485935bc302baecd0849a9f { | ||
position: relative; | ||
width: 100.0%; | ||
height: 100.0%; | ||
left: 0.0%; | ||
top: 0.0%; | ||
} | ||
.leaflet-container { font-size: 1rem; } | ||
</style> | ||
|
||
</head> | ||
<body> | ||
|
||
|
||
<div class="folium-map" id="map_b985afb32485935bc302baecd0849a9f" ></div> | ||
|
||
</body> | ||
<script> | ||
|
||
|
||
var map_b985afb32485935bc302baecd0849a9f = L.map( | ||
"map_b985afb32485935bc302baecd0849a9f", | ||
{ | ||
center: [12.98815675, 77.62260003796], | ||
crs: L.CRS.EPSG3857, | ||
zoom: 13, | ||
zoomControl: true, | ||
preferCanvas: false, | ||
} | ||
); | ||
|
||
|
||
|
||
|
||
|
||
var tile_layer_7ae9607f68683463a1b8de46acf7e28e = L.tileLayer( | ||
"https://tile.openstreetmap.org/{z}/{x}/{y}.png", | ||
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false} | ||
); | ||
|
||
|
||
tile_layer_7ae9607f68683463a1b8de46acf7e28e.addTo(map_b985afb32485935bc302baecd0849a9f); | ||
|
||
|
||
var marker_b7946e51a7ee39b64872f3d70edfbd07 = L.marker( | ||
[12.98815675, 77.62260003796], | ||
{} | ||
).addTo(map_b985afb32485935bc302baecd0849a9f); | ||
|
||
|
||
var popup_45cae66bc2c88ac68637b5e24e6f1f3f = L.popup({"maxWidth": "100%"}); | ||
|
||
|
||
|
||
var html_3a3276adb71de75a67f2059dbbebd908 = $(`<div id="html_3a3276adb71de75a67f2059dbbebd908" style="width: 100.0%; height: 100.0%;">Bengaluru</div>`)[0]; | ||
popup_45cae66bc2c88ac68637b5e24e6f1f3f.setContent(html_3a3276adb71de75a67f2059dbbebd908); | ||
|
||
|
||
|
||
marker_b7946e51a7ee39b64872f3d70edfbd07.bindPopup(popup_45cae66bc2c88ac68637b5e24e6f1f3f) | ||
; | ||
|
||
|
||
|
||
</script> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
|
||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | ||
|
||
<script> | ||
L_NO_TOUCH = false; | ||
L_DISABLE_3D = false; | ||
</script> | ||
|
||
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style> | ||
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script> | ||
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/> | ||
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css"/> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/> | ||
|
||
<meta name="viewport" content="width=device-width, | ||
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | ||
<style> | ||
#map_98d737170d3b9349cab132a7f9c7503d { | ||
position: relative; | ||
width: 100.0%; | ||
height: 100.0%; | ||
left: 0.0%; | ||
top: 0.0%; | ||
} | ||
.leaflet-container { font-size: 1rem; } | ||
</style> | ||
|
||
</head> | ||
<body> | ||
|
||
|
||
<div class="folium-map" id="map_98d737170d3b9349cab132a7f9c7503d" ></div> | ||
|
||
</body> | ||
<script> | ||
|
||
|
||
var map_98d737170d3b9349cab132a7f9c7503d = L.map( | ||
"map_98d737170d3b9349cab132a7f9c7503d", | ||
{ | ||
center: [28.6273928, 77.1716954], | ||
crs: L.CRS.EPSG3857, | ||
zoom: 13, | ||
zoomControl: true, | ||
preferCanvas: false, | ||
} | ||
); | ||
|
||
|
||
|
||
|
||
|
||
var tile_layer_9baa1aee42f583458b20719ba4384de8 = L.tileLayer( | ||
"https://tile.openstreetmap.org/{z}/{x}/{y}.png", | ||
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false} | ||
); | ||
|
||
|
||
tile_layer_9baa1aee42f583458b20719ba4384de8.addTo(map_98d737170d3b9349cab132a7f9c7503d); | ||
|
||
|
||
var marker_4ef035485e9adb621155b8c204a72fb4 = L.marker( | ||
[28.6273928, 77.1716954], | ||
{} | ||
).addTo(map_98d737170d3b9349cab132a7f9c7503d); | ||
|
||
|
||
var popup_602167290170116d4714ca8d5e258032 = L.popup({"maxWidth": "100%"}); | ||
|
||
|
||
|
||
var html_58a054256a721bfccd1c273815b6a43f = $(`<div id="html_58a054256a721bfccd1c273815b6a43f" style="width: 100.0%; height: 100.0%;">Delhi</div>`)[0]; | ||
popup_602167290170116d4714ca8d5e258032.setContent(html_58a054256a721bfccd1c273815b6a43f); | ||
|
||
|
||
|
||
marker_4ef035485e9adb621155b8c204a72fb4.bindPopup(popup_602167290170116d4714ca8d5e258032) | ||
; | ||
|
||
|
||
|
||
</script> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
|
||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | ||
|
||
<script> | ||
L_NO_TOUCH = false; | ||
L_DISABLE_3D = false; | ||
</script> | ||
|
||
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style> | ||
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script> | ||
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/> | ||
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css"/> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/> | ||
|
||
<meta name="viewport" content="width=device-width, | ||
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | ||
<style> | ||
#map_798cea30d017f5bbc0fc667d0aa02235 { | ||
position: relative; | ||
width: 100.0%; | ||
height: 100.0%; | ||
left: 0.0%; | ||
top: 0.0%; | ||
} | ||
.leaflet-container { font-size: 1rem; } | ||
</style> | ||
|
||
</head> | ||
<body> | ||
|
||
|
||
<div class="folium-map" id="map_798cea30d017f5bbc0fc667d0aa02235" ></div> | ||
|
||
</body> | ||
<script> | ||
|
||
|
||
var map_798cea30d017f5bbc0fc667d0aa02235 = L.map( | ||
"map_798cea30d017f5bbc0fc667d0aa02235", | ||
{ | ||
center: [26.9154576, 75.8189817], | ||
crs: L.CRS.EPSG3857, | ||
zoom: 13, | ||
zoomControl: true, | ||
preferCanvas: false, | ||
} | ||
); | ||
|
||
|
||
|
||
|
||
|
||
var tile_layer_c34cc16f2351e1af520207d6069f0455 = L.tileLayer( | ||
"https://tile.openstreetmap.org/{z}/{x}/{y}.png", | ||
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false} | ||
); | ||
|
||
|
||
tile_layer_c34cc16f2351e1af520207d6069f0455.addTo(map_798cea30d017f5bbc0fc667d0aa02235); | ||
|
||
|
||
var marker_f0805e6d2f4943812ba19120a42d90a8 = L.marker( | ||
[26.9154576, 75.8189817], | ||
{} | ||
).addTo(map_798cea30d017f5bbc0fc667d0aa02235); | ||
|
||
|
||
var popup_247512041c8761eb772d4122fee17486 = L.popup({"maxWidth": "100%"}); | ||
|
||
|
||
|
||
var html_f6e0bf98af572f26d58aa5effbb5d2df = $(`<div id="html_f6e0bf98af572f26d58aa5effbb5d2df" style="width: 100.0%; height: 100.0%;">Jaipur</div>`)[0]; | ||
popup_247512041c8761eb772d4122fee17486.setContent(html_f6e0bf98af572f26d58aa5effbb5d2df); | ||
|
||
|
||
|
||
marker_f0805e6d2f4943812ba19120a42d90a8.bindPopup(popup_247512041c8761eb772d4122fee17486) | ||
; | ||
|
||
|
||
|
||
</script> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
|
||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | ||
|
||
<script> | ||
L_NO_TOUCH = false; | ||
L_DISABLE_3D = false; | ||
</script> | ||
|
||
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style> | ||
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script> | ||
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/> | ||
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css"/> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/> | ||
|
||
<meta name="viewport" content="width=device-width, | ||
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | ||
<style> | ||
#map_8a3a2541a223bc563f9f46155e7aaef3 { | ||
position: relative; | ||
width: 100.0%; | ||
height: 100.0%; | ||
left: 0.0%; | ||
top: 0.0%; | ||
} | ||
.leaflet-container { font-size: 1rem; } | ||
</style> | ||
|
||
</head> | ||
<body> | ||
|
||
|
||
<div class="folium-map" id="map_8a3a2541a223bc563f9f46155e7aaef3" ></div> | ||
|
||
</body> | ||
<script> | ||
|
||
|
||
var map_8a3a2541a223bc563f9f46155e7aaef3 = L.map( | ||
"map_8a3a2541a223bc563f9f46155e7aaef3", | ||
{ | ||
center: [26.4609135, 80.3217588], | ||
crs: L.CRS.EPSG3857, | ||
zoom: 13, | ||
zoomControl: true, | ||
preferCanvas: false, | ||
} | ||
); | ||
|
||
|
||
|
||
|
||
|
||
var tile_layer_ca08a632835ce94503922834021f10ad = L.tileLayer( | ||
"https://tile.openstreetmap.org/{z}/{x}/{y}.png", | ||
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false} | ||
); | ||
|
||
|
||
tile_layer_ca08a632835ce94503922834021f10ad.addTo(map_8a3a2541a223bc563f9f46155e7aaef3); | ||
|
||
|
||
var marker_2414ac5c347908ab93b02258b80bd9f1 = L.marker( | ||
[26.4609135, 80.3217588], | ||
{} | ||
).addTo(map_8a3a2541a223bc563f9f46155e7aaef3); | ||
|
||
|
||
var popup_d22f662496dd61fe174ac24665f6e9d8 = L.popup({"maxWidth": "100%"}); | ||
|
||
|
||
|
||
var html_e0fb8c4dcc6b368ae3d7d9e5a67f1082 = $(`<div id="html_e0fb8c4dcc6b368ae3d7d9e5a67f1082" style="width: 100.0%; height: 100.0%;">Kanpur</div>`)[0]; | ||
popup_d22f662496dd61fe174ac24665f6e9d8.setContent(html_e0fb8c4dcc6b368ae3d7d9e5a67f1082); | ||
|
||
|
||
|
||
marker_2414ac5c347908ab93b02258b80bd9f1.bindPopup(popup_d22f662496dd61fe174ac24665f6e9d8) | ||
; | ||
|
||
|
||
|
||
</script> | ||
</html> |
Oops, something went wrong.