Skip to content

Commit

Permalink
2022
Browse files Browse the repository at this point in the history
  • Loading branch information
sunbinbin1991 committed Mar 3, 2022
1 parent a82b976 commit 0417dfb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
9 changes: 9 additions & 0 deletions example/leetCode/275_hIndex.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#pragma once
int hIndex(vector<int>& citations)
{

}

void test_hIndex()
{
}
6 changes: 4 additions & 2 deletions example/leetCode/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
#include<offer_46_translateNum.h>
#include<77_combine.h>
#include<500_findWords.h>
#include<275_hIndex.h>
using namespace std;
using namespace tree;

Expand Down Expand Up @@ -97,7 +98,8 @@ void test_case_simple() {
}

void test_case_mid() {
test_combine();

//test_combine();
//test_translateNum();
//test_permuteUnique();
//test_rob2();
Expand Down Expand Up @@ -136,7 +138,7 @@ void test_case_mid() {

int main() {
printf("*******************\n");
printf("*-hello leet code 2021-*\n");
printf("*-hello leet 2022-*\n");
printf("*******************\n");

//test_case_simple();
Expand Down

0 comments on commit 0417dfb

Please sign in to comment.