Skip to content

Commit fbcd463

Browse files
author
AmiyahJo
committed
chore: remove comments
1 parent d4809e7 commit fbcd463

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

lesson_11/arrays_ts/src/lesson11.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/**
2-
* Provide the solution to LeetCode 1929 here:
3-
* https://leetcode.com/problems/concatenation-of-array
4-
*/
51
export function getConcatenation(nums: number[]): number[] {
62
let n: number = nums.length;
73
let ans: number[] = new Array(2*n);
@@ -14,10 +10,6 @@ export function getConcatenation(nums: number[]): number[] {
1410
return ans;
1511
}
1612

17-
/**
18-
* Provide the solution to LeetCode 2942 here:
19-
* https://leetcode.com/problems/find-words-containing-character/
20-
*/
2113
export function findWordsContaining(words: string[], x: string): number[] {
2214
let indices: number[] = [];
2315

0 commit comments

Comments
 (0)