File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed
src/main/kotlin/g3501_3600
s3512_minimum_operations_to_make_array_sum_divisible_by_k
s3513_number_of_unique_xor_triplets_i
s3514_number_of_unique_xor_triplets_ii
s3515_shortest_path_in_a_weighted_tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 11package g3501_3600.s3512_minimum_operations_to_make_array_sum_divisible_by_k
22
3- // #Easy #2025_04_13_Time_1_ms_(100.00%)_Space_50.22_MB_(100.00%)
3+ // #Easy #Array #Math # 2025_04_13_Time_1_ms_(100.00%)_Space_50.22_MB_(100.00%)
44
55class Solution {
66 fun minOperations (nums : IntArray , k : Int ): Int {
Original file line number Diff line number Diff line change 11package g3501_3600.s3513_number_of_unique_xor_triplets_i
22
3- // #Medium #2025_04_13_Time_1_ms_(100.00%)_Space_89.00_MB_(100.00%)
3+ // #Medium #Array #Math #Bit_Manipulation # 2025_04_13_Time_1_ms_(100.00%)_Space_89.00_MB_(100.00%)
44
55class Solution {
66 fun uniqueXorTriplets (nums : IntArray ): Int {
Original file line number Diff line number Diff line change 11package g3501_3600.s3514_number_of_unique_xor_triplets_ii
22
3- // #Medium #2025_04_13_Time_778_ms_(100.00%)_Space_61.80_MB_(100.00%)
3+ // #Medium #Array #Math #Bit_Manipulation #Enumeration
4+ // #2025_04_13_Time_778_ms_(100.00%)_Space_61.80_MB_(100.00%)
45
56import java.util.BitSet
67
Original file line number Diff line number Diff line change 11package g3501_3600.s3515_shortest_path_in_a_weighted_tree
22
3- // #Hard #2025_04_13_Time_72_ms_(100.00%)_Space_188.48_MB_(100.00%)
3+ // #Hard #Array #Depth_First_Search #Tree #Segment_Tree #Binary_Indexed_Tree
4+ // #2025_04_13_Time_72_ms_(100.00%)_Space_188.48_MB_(100.00%)
45
56class Solution {
67 private lateinit var `in `: IntArray
You can’t perform that action at this time.
0 commit comments