We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4809e7 commit fbcd463Copy full SHA for fbcd463
lesson_11/arrays_ts/src/lesson11.ts
@@ -1,7 +1,3 @@
1
-/**
2
- * Provide the solution to LeetCode 1929 here:
3
- * https://leetcode.com/problems/concatenation-of-array
4
- */
5
export function getConcatenation(nums: number[]): number[] {
6
let n: number = nums.length;
7
let ans: number[] = new Array(2*n);
@@ -14,10 +10,6 @@ export function getConcatenation(nums: number[]): number[] {
14
10
return ans;
15
11
}
16
12
17
18
- * Provide the solution to LeetCode 2942 here:
19
- * https://leetcode.com/problems/find-words-containing-character/
20
21
13
export function findWordsContaining(words: string[], x: string): number[] {
22
let indices: number[] = [];
23
0 commit comments