-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsudoku.html
86 lines (58 loc) · 3.29 KB
/
sudoku.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<link rel="icon" type="image/ico" href="favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;1,100;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Portfolio</title>
</head>
<body>
<header>
<a id="header-title" href="index.html">Timothée JACOB</a>
<h4 id="header-subtitle">Sudoku</h4>
<div id="header-border"></div>
</header>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
if(screen.width > 768){
$("#header-subtitle").css('width', $('#header-title').width() + 170 + 'px');
}
$(window).resize(function() {
$("header h4").css('width', $('header a').width() + 170 + 'px');
});
</script>
<div id="container-list-page">
<p class="text-left">
Ce programme a été <mark> réalisé en C </mark> dans le cadre de mes études. Le but de ce programme est de <mark> résoudre des sudokus </mark> à partir des valeurs de départ qu'on lui donne.
</p>
<span style="border: 1.2px solid rgb(233, 230, 227); width: 10%;"></span>
<p class="text-right">
Pour cela, le programme utilise un <mark> tableau en 3 dimensions </mark> en 9x9x10. Le 1er tableau de 9x9 correspond au sudoku, tandis que les 9 autres tableaux de 9x9 correpondent chacun à un tableau remplis des hypothèses pour 1 chiffre.
</p>
<span style="border: 1.2px solid rgb(233, 230, 227); width: 10%;"></span>
<p class="text-left">
Pour résoudre le sudoku, le programme va utiliser les <mark> méthodes d'inclusion et d'exclusion </mark>, qui consistent à supprimer les hypothèses du chiffre étant dans la ligne/colonne/carré, mais aussi de compléter les lignes/colonnes/carrés où il ne manque qu'un seul chiffre.
</p>
<div id="menu-button-list">
<a class="dnbtn" href="https://github.com/TimoJac/sudoku_solver" target="_blank">Code source</a>
<a class="dnbtn phone-hidden" href="download/sudoku_solver.rar" download="Sudoku_solver.rar">Télécharger</a>
</div>
</div>
<footer>
<div id="footer-text">
<p>Made by Timothée JACOB</p>
</div>
<div id="footer-links">
<a href="https://www.instagram.com/timothee_jacob/" target="_blank" class="fa fa-instagram"></a>
<a href="https://www.linkedin.com/in/timoth%C3%A9e-jacob-1b6b63192/" target="_blank" class="fa fa-linkedin"></a>
<a href="https://github.com/TimoJac/portfolio" target="_blank" class="fa fa-github"></a>
<a href="CV_Timothee_JACOB.pdf" target="_blank" class="fa fa-file-text"></a>
</div>
</footer>
</body>
</html>