File tree Expand file tree Collapse file tree 3 files changed +25
-5
lines changed
Expand file tree Collapse file tree 3 files changed +25
-5
lines changed Original file line number Diff line number Diff line change 1+ # Reason for This PR
2+
3+ ` [Author TODO: add issue # or explain reasoning.] `
4+
5+ ## Description of Changes
6+
7+ ` [Author TODO: add description of changes.] `
8+
9+ ## License Acceptance
10+
11+ By submitting this pull request, I confirm that my contribution is made under
12+ the terms of the MIT license.
13+
14+ ## PR Checklist
15+
16+ ` [Author TODO: Meet these criteria.] `
17+ ` [Reviewer TODO: Verify that these criteria are met. Request changes if not] `
18+
19+ - [ ] All commits in this PR are signed (` git commit -s ` ).
20+ - [ ] The reason for this PR is clearly provided (issue no. or explanation).
21+ - [ ] The description of changes is clear and encompassing.
22+ - [ ] Any required documentation changes (code and docs) are included in this PR.
23+ - [ ] Any user-facing changes are mentioned in ` CHANGELOG.md ` .
24+ - [ ] All added/changed functionality is tested.
Original file line number Diff line number Diff line change 1111 fail-fast : false
1212 matrix :
1313 go : [stable]
14- os : ["ubuntu-latest", "macos-latest"]
14+ os : ["ubuntu-latest", "macos-latest", "windows-latest" ]
1515 steps :
1616 - name : Set up Go ${{ matrix.go }}
1717 uses : actions/setup-go@v6 # action page: <https://github.com/actions/setup-go>
Original file line number Diff line number Diff line change 1- /*
2- binary heap (min-heap) algorithm used as a core for the priority queue
3- */
4-
51package priorityqueue
62
73import (
You can’t perform that action at this time.
0 commit comments