algorithms/sorting/priority_queue/testing.go

4 lines
85 B
Go
Raw Normal View History

2022-01-02 20:46:41 +02:00
package priority_queue
var intDescending = func(t1, t2 int) bool { return t1 < t2 }