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[] {