Skip to content

Commit c2041cd

Browse files
committed
Fix Go lint
1 parent 02d0272 commit c2041cd

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

go

-1.92 MB
Binary file not shown.

src/go/bubblesort/bubblesort.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/* Bubble Sort é um dos algoritmos de ordenação mais simples.
2-
* A ideia principal é percorrer o vetor/slice várias vezes
3-
* empurrando/flutuando os valores mais altos para o fim do vetor.
4-
*/
51
package bubblesort
62

73
// Bubble Sort tradicional

src/go/dijkstra/dijkstra.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import (
4040
"fmt"
4141
)
4242

43-
nroVertices := 5
43+
var nroVertices = 5
4444

4545
type Matriz [][]int
4646

0 commit comments

Comments
 (0)