Skip to content

Commit dba38d7

Browse files
db/feat: Update L1960 patterns, tags and solutions
1 parent 875fed2 commit dba38d7

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

db/problems.js

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,17 +113,26 @@ export const problems = [
113113
id: "L1960",
114114
title: "Check if the Sentence Is Pangram",
115115
difficulty: Difficulty.EASY,
116-
patterns: [patterns.Warmup],
116+
patterns: [
117+
patterns.Warmup,
118+
patterns.BitwiseManipulation,
119+
patterns.HashMaps,
120+
],
117121
url: "https://leetcode.com/problems/check-if-the-sentence-is-pangram",
118122
solutions: [
119123
{
120-
title: "Solution: Pangram",
124+
title: "Solution: Pangram - Bitwise Manipulation",
125+
site: {},
126+
url: "https://algo.monster/liteproblems/1832",
127+
},
128+
{
129+
title: "Solution: Pangram - HashSet",
121130
site: sites.DesignGurus,
122131
url: "https://www.designgurus.io/course-play/grokking-the-coding-interview/doc/63d9b9024bb2155485a1a03a",
123132
},
124133
],
125134
companies: [],
126-
tags: ["Hash Table", "String"],
135+
tags: ["Hash Table", "String", "Bit Manipulation", "Bitmask"],
127136
},
128137
{
129138
id: "L20",

0 commit comments

Comments
 (0)