g0301_0400.s0355_design_twitter.Tweet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
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;
}
}