Skip to content

Improved tags #1801

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
package g3201_3300.s3217_delete_nodes_from_linked_list_present_in_array;

import com_github_leetcode.ListNode;

// #Medium #Array #Hash_Table #Linked_List #2024_07_18_Time_3_ms_(100.00%)_Space_63.9_MB_(93.81%)

/**
* Definition for singly-linked list. public class ListNode { int val; ListNode next; ListNode() {}
* ListNode(int val) { this.val = val; } ListNode(int val, ListNode next) { this.val = val;
* this.next = next; } }
import com_github_leetcode.ListNode;

/*
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
public class Solution {
public ListNode modifiedList(int[] nums, ListNode head) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package g3201_3300.s3235_check_if_the_rectangle_corner_is_reachable;

// #Hard #Array #Math #Union_Find #Geometry #Depth_First_Search #Breadth_First_Search
// #Hard #Array #Math #Depth_First_Search #Breadth_First_Search #Union_Find #Geometry
// #2024_08_02_Time_95_ms_(59.46%)_Space_44.8_MB_(94.44%)

import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package g3201_3300.s3241_time_taken_to_mark_all_nodes;

// #Hard #Dynamic_Programming #Tree #Graph #Depth_First_Search
// #Hard #Dynamic_Programming #Depth_First_Search #Tree #Graph
// #2024_08_06_Time_39_ms_(100.00%)_Space_115.8_MB_(83.90%)

import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package g3201_3300.s3243_shortest_distance_after_road_addition_queries_i;

// #Medium #Array #Graph #Breadth_First_Search
// #Medium #Array #Breadth_First_Search #Graph
// #2024_08_06_Time_6_ms_(100.00%)_Space_45.6_MB_(67.96%)

import java.util.ArrayList;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package g3201_3300.s3249_count_the_number_of_good_nodes;

// #Medium #Tree #Depth_First_Search #2024_08_13_Time_34_ms_(100.00%)_Space_113.9_MB_(90.70%)
// #Medium #Depth_First_Search #Tree #2024_08_13_Time_34_ms_(100.00%)_Space_113.9_MB_(90.70%)

import java.util.ArrayList;
import java.util.List;
Expand Down
Loading