mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-09 19:44:45 +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;
|
||||
|
||||
typedef struct node
|
||||
{
|
||||
typedef struct node {
|
||||
int val;
|
||||
int count;
|
||||
struct node *next;
|
||||
|
Reference in New Issue
Block a user