commit abef2395a9b110ee1cdd4a11b537c89f5aa7fe31 parent 6d7495d27ba92385425a9f4ba921eb7152d4aab0 Author: AndrewLockVI <andrewlaack1@gmail.com> Date: Fri, 14 Apr 2023 14:30:00 -0500 Updated leetcode stats Diffstat:
| M | remove-nth-node/remove-nth-node-from-end.cpp | | | 3 | +++ |
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/remove-nth-node/remove-nth-node-from-end.cpp b/remove-nth-node/remove-nth-node-from-end.cpp @@ -2,6 +2,9 @@ using namespace std; +//Time: 3ms Beats: 83.17% +//Memory: 10.7MB Beats: 39.89% + struct ListNode { int val; ListNode *next;