anuraghazra / anuraghazra/GithubActionsPlayground
Playing around with actions
Ouverte
- Langage dominant
- JavaScript
- Étoiles
- 6
- Forks
- 4
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
hello actions!!
```js
const bubbleSort = arr => {
let swapped;
do {
swapped = false;
for (let i = 0; i < arr.length; i++) {
if (arr[i] > arr[i + 1]) {
let tmp = arr[i];
arr[i] = arr[i + 1];
arr[i + 1] = tmp;
swapped = true;
}
}
} while (swapped);
return arr;
};
console.log(bubbleSort([5,49,7,1,5,01,58,64,8,79,31,150,5,6,7,9,4]));
console.log('Console log works nicely')
```
Guide de contribution
Aucun guide de contribution indexé pour ce dépôt
Évaluation
Cette issue n'a pas encore été évaluée.