mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
examples: remove empty comments (#14986)
This commit is contained in:
@ -81,7 +81,7 @@ fn departure_priority<T>(mut prior_queue []T) int {
|
||||
// give a NODE v, return a list with all adjacents
|
||||
// Take care, only positive EDGES
|
||||
fn all_adjacents<T>(g [][]T, v int) []int {
|
||||
mut temp := []int{} //
|
||||
mut temp := []int{}
|
||||
for i in 0 .. (g.len) {
|
||||
if g[v][i] > 0 {
|
||||
temp << i
|
||||
|
Reference in New Issue
Block a user