From b787e70b1313cd3eaa1d125c15ab27de4aa97dcb Mon Sep 17 00:00:00 2001 From: kaili-yang <124ykl@gmail.com> Date: Sat, 29 Jul 2023 09:39:07 -0700 Subject: [PATCH 1/2] fix: prettier format to lc problems: No.1797 --- .../README.md | 4 +--- .../README_EN.md | 18 +++++++++--------- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/solution/1700-1799/1797.Design Authentication Manager/README.md b/solution/1700-1799/1797.Design Authentication Manager/README.md index 00d37d86c630f..da1057b68c772 100644 --- a/solution/1700-1799/1797.Design Authentication Manager/README.md +++ b/solution/1700-1799/1797.Design Authentication Manager/README.md @@ -25,7 +25,7 @@
 输入:
-["AuthenticationManager", "renew", "generate", "countUnexpiredTokens", "generate", "renew", "renew", "countUnexpiredTokens"]
+["AuthenticationManager", "renew", "generate", "countUnexpiredTokens", "generate", "renew", "renew", "countUnexpiredTokens"]
 [[5], ["aaa", 1], ["aaa", 2], [6], ["bbb", 7], ["aaa", 8], ["bbb", 10], [15]]
 输出:
 [null, null, null, 1, null, null, null, 0]
@@ -42,8 +42,6 @@ authenticationManager.countUnexpiredTokens(15); // tokenId 为 "bbb
 
 
-

 

-

提示: