add some passed codes

This commit is contained in:
2024-05-24 22:03:54 +02:00
parent 9d7657bde0
commit 3b80a257f5
34 changed files with 779 additions and 0 deletions

25
2487-240103/main.cpp Normal file
View File

@@ -0,0 +1,25 @@
#include<stdcpp.h>
using namespace std;
struct ListNode{
int val;
ListNode *next;
ListNode() : val(0), next(nullptr){}
ListNode(int x): val(x), next(nullptr) {}
ListNode(int x, ListNode *next) : val(x), next(next) {}
};
class Solution{
public:
ListNode* removeNodes(ListNode* head){
ListNode * now = head;
while(now->next != NULL){
if(now->val < now->next->val){
while
}
}
}
};
int main(){
Solution sol;
ListNode * ex1 = new ListNode(5);
}