dodanie plikow

This commit is contained in:
pawel 2024-05-15 10:27:15 +02:00
commit 2455fa869f
4 changed files with 38 additions and 0 deletions

0
css.css Normal file
View File

22
index.html Normal file
View File

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sortowanie Sufiksów</title>
</head>
<body>
<h1>Sortowanie Sufiksów</h1>
<input type="text" id="slowo" placeholder="Podaj słowo">
<button onclick="sortujSufiksy()">Sortuj Sufiksy</button>
<h2>Nieposortowane Sufiksy</h2>
<pre id="nieposortowane"></pre>
<h2>Posortowane Sufiksy</h2>
<pre id="posortowane"></pre>
<script src="js.js">
</script>
</body>
</html>

13
js.js Normal file
View File

@ -0,0 +1,13 @@
function sortujSufiksy() {
const slowo = document.getElementById('slowo').value;
const sufiksy = [];
for (let i = 0; i < slowo.length; i++) {
sufiksy.push(slowo.slice(i));
}
document.getElementById('nieposortowane').textContent = formatSufiksy(sufiksy);
sufiksy.sort();
document.getElementById('posortowane').textContent = formatSufiksy(sufiksy);
}
function formatSufiksy(sufiksy) {
return sufiksy.map((sufiks, index) => `${index + 1} ${sufiks}`).join('\n');
}

3
text.txt Normal file
View File

@ -0,0 +1,3 @@
2247cb473670da4439f474d40c3120657b59f077