rob
This commit is contained in:
parent
e2c94ceeb1
commit
0cf2d32d88
26
js.js
26
js.js
|
@ -6,16 +6,16 @@ fetch( url + 'get.php')
|
||||||
console.log(data)
|
console.log(data)
|
||||||
})
|
})
|
||||||
|
|
||||||
// function sortujSufiksy() {
|
function sortujSufiksy() {
|
||||||
// const slowo = document.getElementById('slowo').value;
|
const slowo = document.getElementById('slowo').value;
|
||||||
// const sufiksy = [];
|
const sufiksy = [];
|
||||||
// for (let i = 0; i < slowo.length; i++) {
|
for (let i = 0; i < slowo.length; i++) {
|
||||||
// sufiksy.push(slowo.slice(i));
|
sufiksy.push(slowo.slice(i));
|
||||||
// }
|
}
|
||||||
// document.getElementById('nieposortowane').textContent = formatSufiksy(sufiksy);
|
document.getElementById('nieposortowane').textContent = formatSufiksy(sufiksy);
|
||||||
// sufiksy.sort();
|
sufiksy.sort();
|
||||||
// document.getElementById('posortowane').textContent = formatSufiksy(sufiksy);
|
document.getElementById('posortowane').textContent = formatSufiksy(sufiksy);
|
||||||
// }
|
}git
|
||||||
// function formatSufiksy(sufiksy) {
|
function formatSufiksy(sufiksy) {
|
||||||
// return sufiksy.map((sufiks, index) => `${index + 1} ${sufiks}`).join('\n');
|
return sufiksy.map((sufiks, index) => `${index + 1} ${sufiks}`).join('\n');
|
||||||
// }
|
}
|
||||||
|
|
Loading…
Reference in New Issue