mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-08 08:50:15 +08:00
Update 0454.四数相加II.md,规范代码格式
This commit is contained in:
@ -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;
|
||||||
|
Reference in New Issue
Block a user