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
4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
package g3501_3600.s3512_minimum_operations_to_make_array_sum_divisible_by_k
2
2
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%)
4
4
5
5
class Solution {
6
6
fun minOperations (nums : IntArray , k : Int ): Int {
Original file line number Diff line number Diff line change 1
1
package g3501_3600.s3513_number_of_unique_xor_triplets_i
2
2
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%)
4
4
5
5
class Solution {
6
6
fun uniqueXorTriplets (nums : IntArray ): Int {
Original file line number Diff line number Diff line change 1
1
package g3501_3600.s3514_number_of_unique_xor_triplets_ii
2
2
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%)
4
5
5
6
import java.util.BitSet
6
7
Original file line number Diff line number Diff line change 1
1
package g3501_3600.s3515_shortest_path_in_a_weighted_tree
2
2
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%)
4
5
5
6
class Solution {
6
7
private lateinit var `in `: IntArray
You can’t perform that action at this time.
0 commit comments