File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed
src/main/kotlin/g3701_3800
s3701_compute_alternating_sum
s3702_longest_subsequence_with_non_zero_bitwise_xor
s3703_remove_k_balanced_substrings
s3704_count_no_zero_pairs_that_sum_to_n Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 11package g3701_3800.s3701_compute_alternating_sum
22
3- // #Easy #Weekly_Contest_470 #2025_10_06_Time_1_ms_(100.00%)_Space_47.16_MB_(11.11%)
3+ // #Easy #Array #Simulation #Weekly_Contest_470
4+ // #2025_10_06_Time_1_ms_(100.00%)_Space_47.16_MB_(11.11%)
45
56class Solution {
67 fun alternatingSum (nums : IntArray ): Int {
Original file line number Diff line number Diff line change 11package g3701_3800.s3702_longest_subsequence_with_non_zero_bitwise_xor
22
3- // #Medium #Weekly_Contest_470 #2025_10_06_Time_2_ms_(100.00%)_Space_79.41_MB_(83.33%)
3+ // #Medium #Array #Bit_Manipulation #Weekly_Contest_470
4+ // #2025_10_06_Time_2_ms_(100.00%)_Space_79.41_MB_(83.33%)
45
56class Solution {
67 fun longestSubsequence (nums : IntArray ): Int {
Original file line number Diff line number Diff line change 11package g3701_3800.s3703_remove_k_balanced_substrings
22
3- // #Medium #Weekly_Contest_470 #2025_10_06_Time_58_ms_(100.00%)_Space_51.31_MB_(80.00%)
3+ // #Medium #String #Stack #Simulation #Weekly_Contest_470
4+ // #2025_10_06_Time_58_ms_(100.00%)_Space_51.31_MB_(80.00%)
45
56class Solution {
67 fun removeSubstring (s : String , k : Int ): String {
Original file line number Diff line number Diff line change 11package g3701_3800.s3704_count_no_zero_pairs_that_sum_to_n
22
3- // #Hard #Weekly_Contest_470 #2025_10_06_Time_11_ms_(100.00%)_Space_42.73_MB_(100.00%)
3+ // #Hard #Dynamic_Programming #Math #Weekly_Contest_470
4+ // #2025_10_06_Time_11_ms_(100.00%)_Space_42.73_MB_(100.00%)
45
56class Solution {
67 fun countNoZeroPairs (n : Long ): Long {
You can’t perform that action at this time.
0 commit comments