Skip to content

Feat : Yafiah Lesson-12 Game Result LeetCode & Implement Stack.java #402

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

Closed
wants to merge 2 commits into from
Closed
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
Expand Up @@ -7,6 +7,23 @@ public class Lesson12 {
* https://github.com/yang-su2000/Leetcode-algorithm-practice/tree/master/3062-winner-of-the-linked-list-game
*/
public String gameResult(ListNode head) {
return null;
int even = 0;
int odd = 0;

while (head != null && head.next != null) {
if (head.val > head.next.val) {
even++;
} else if (head.val < head.next.val) {
odd++;
}
head = head.next.next;
}

if (even > odd) {
return "Even";
} else if (even < odd) {
return "Odd";
}
return "Tie";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,20 @@ public Stack() {
}

public void push(int value) {
// Your code here
top = new ListNode(value, top);
}

public int pop() {
return 0;
int value = top.val;
top = top.next;
return value;
}

public int peek() {
return 0;
return top.val;
}

public boolean isEmpty() {
return true;
return top == null;
}
}