From 3265e3fde03264910be94f1d6a1f7794211b9d69 Mon Sep 17 00:00:00 2001 From: gyt95 Date: Fri, 16 Dec 2022 00:07:02 +0800 Subject: [PATCH] Update the file header --- .../chapter_computational_complexity/leetcode_two_sum.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/codes/typescript/chapter_computational_complexity/leetcode_two_sum.ts b/codes/typescript/chapter_computational_complexity/leetcode_two_sum.ts index 6e9300606..e3ff51539 100644 --- a/codes/typescript/chapter_computational_complexity/leetcode_two_sum.ts +++ b/codes/typescript/chapter_computational_complexity/leetcode_two_sum.ts @@ -1,8 +1,7 @@ /* - * @Author: gyt95 (gytkwan@gmail.com) - * @Date: 2022-12-15 11:26:38 - * @Last Modified by: gyt95 (gytkwan@gmail.com) - * @Last Modified time: 2022-12-15 23:46:25 + * File: leetcode_two_sum.ts + * Created Time: 2022-12-15 + * Author: gyt95 (gytkwan@gmail.com) */ function twoSumBruteForce(nums: number[], target: number): number[] {