All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0301_0400.s0355_design_twitter.Tweet Maven / Gradle / Ivy

There is a newer version: 1.37
Show newest version
package g0301_0400.s0355_design_twitter;

// #Medium #Hash_Table #Design #Heap_Priority_Queue #Linked_List

public class Tweet {
    int userId;
    int tweetId;
    Tweet next;

    Tweet(int uId, int tId) {
        userId = uId;
        tweetId = tId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy