anuraghazra / anuraghazra/GithubActionsPlayground

Playing around with actions

Open
#1 6 comments 0 reactions 0 assignees View on GitHub
Dominant language
JavaScript
Stars
6
Forks
4
PR merge metrics
No merged PRs in 30d

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')
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.