2024-05-15 08:27:15 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="pl">
|
2024-05-20 05:14:55 +00:00
|
|
|
|
2024-05-15 08:27:15 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Sortowanie Sufiksów</title>
|
2024-05-17 07:40:03 +00:00
|
|
|
<link rel="stylesheet" href="styles.css">
|
|
|
|
|
2024-05-15 08:27:15 +00:00
|
|
|
</head>
|
2024-05-20 05:14:55 +00:00
|
|
|
|
2024-05-15 08:27:15 +00:00
|
|
|
<body>
|
|
|
|
<h1>Sortowanie Sufiksów</h1>
|
|
|
|
<input type="text" id="slowo" placeholder="Podaj słowo">
|
2024-05-20 05:14:55 +00:00
|
|
|
<button onclick="sortujSufiksy()">Sortuj Sufiksy</button>
|
2024-05-15 08:27:15 +00:00
|
|
|
<h2>Nieposortowane Sufiksy</h2>
|
|
|
|
<pre id="nieposortowane"></pre>
|
|
|
|
<h2>Posortowane Sufiksy</h2>
|
|
|
|
<pre id="posortowane"></pre>
|
2024-05-20 05:14:55 +00:00
|
|
|
<script src="fetch.js"></script>
|
2024-05-15 08:27:15 +00:00
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|