Skip to content

Commit 875fed2

Browse files
db/feat: Add solution and pattern to L345
1 parent 531b188 commit 875fed2

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

db/problems.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,15 @@ export const problems = [
8787
id: "L345",
8888
title: "Reverse Vowels of a String",
8989
difficulty: Difficulty.EASY,
90-
patterns: [patterns.Warmup],
90+
patterns: [patterns.Warmup, patterns.TwoPointers],
9191
url: "https://leetcode.com/problems/reverse-vowels-of-a-string",
92-
solutions: [],
92+
solutions: [
93+
{
94+
title: "Reverse Vowels of a String | AlgoMonster",
95+
site: {},
96+
url: "https://algo.monster/liteproblems/345",
97+
},
98+
],
9399
companies: ["Amazon", "Apple", "Google"],
94100
tags: ["Two Pointers", "String"],
95101
},

0 commit comments

Comments
 (0)