Size: 434 bytes.


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
# cs/q/kth_largest_value/BUILD
package(default_visibility = ["//visibility:public"])

cc_test(
    name = "kth_largest_value_test",
    srcs = [
        "kth_largest_value_test.cc",
    ],
    deps = [
        ":kth_largest_value",
        "@googletest//:gtest_main",
    ],
)

cc_library(
    name = "kth_largest_value",
    srcs = ["kth_largest_value.c"],
    hdrs = ["kth_largest_value.h"],
    deps = ["//cs/q/priority_queue"],
)
v0 (commit) © 2025 @p13i.io | Load balancer proxied to: cs-code-viewer-2:8080 in 4ms.