Update 0454.四数相加II.md,规范代码格式

This commit is contained in:
qiuzidian
2024-01-29 22:08:52 +08:00
committed by GitHub
parent 8b35191534
commit 2f2e6856db

View File

@ -418,8 +418,7 @@ public int FourSumCount(int[] nums1, int[] nums2, int[] nums3, int[] nums4) {
// 哈希表大小 // 哈希表大小
const int HASH_SIZE = 101; const int HASH_SIZE = 101;
typedef struct node typedef struct node {
{
int val; int val;
int count; int count;
struct node *next; struct node *next;