Skip to content

Commit 9c4b73d

Browse files
committed
Functional Tags
1 parent 3d271d0 commit 9c4b73d

File tree

5 files changed

+94
-60
lines changed

5 files changed

+94
-60
lines changed

src/lib/diagrams/sv/TableFlow.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@
6969
<Table.Header>
7070
<Table.Row>
7171
<Table.Head class="w-[100px]">Status</Table.Head>
72-
<Table.Head class="w-3/5">Problem</Table.Head>
72+
<Table.Head class="w-3/5">Title</Table.Head>
7373
<Table.Head>Difficulty</Table.Head>
74-
<Table.Head class="text-right">Code</Table.Head>
74+
<Table.Head class="text-right ">Code</Table.Head>
7575
</Table.Row>
7676
</Table.Header>
7777
<Table.Body>

src/lib/index.ts

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ export let webdata = writable(
296296
difficulty: 'easy',
297297
code: 'C++',
298298
isblind: true,
299-
tags: 'array,Dynamic programming'
299+
tags: 'array,Dynamic programming,Dp'
300300
},
301301
{
302302
id: 27,
@@ -606,7 +606,7 @@ export let webdata = writable(
606606
difficulty: 'hard',
607607
code: 'C++',
608608
isblind: true,
609-
tags: 'Dynamic Programming,Tree,Depth-First Search,Binary Tree'
609+
tags: 'Dynamic programming,Dp,Tree,Depth-First Search,Binary Tree'
610610
},
611611
{
612612
id: 55,
@@ -729,7 +729,7 @@ export let webdata = writable(
729729
difficulty: 'medium',
730730
code: 'C++',
731731
isblind: true,
732-
tags: 'string,dynamic programming,backtracking'
732+
tags: 'string,dynamic programming,dp,backtracking'
733733
},
734734
{
735735
id: 66,
@@ -935,7 +935,7 @@ export let webdata = writable(
935935
]
936936
},
937937
{
938-
title: '1-D Dynamic Programming',
938+
title: '1-D Dynamic programming,Dp',
939939
problems: [
940940
{
941941
id: 85,
@@ -945,7 +945,7 @@ export let webdata = writable(
945945
difficulty: 'easy',
946946
code: 'C++',
947947
isblind: true,
948-
tags: 'math,dynamic programming,memoization'
948+
tags: 'math,dynamic programming,dp,memoization'
949949
},
950950
{
951951
id: 86,
@@ -955,7 +955,7 @@ export let webdata = writable(
955955
difficulty: 'easy',
956956
code: 'C++',
957957
isblind: true,
958-
tags: 'array,dynamic programming'
958+
tags: 'array,dynamic programming,dp'
959959
},
960960
{
961961
id: 87,
@@ -965,7 +965,7 @@ export let webdata = writable(
965965
difficulty: 'medium',
966966
code: 'C++',
967967
isblind: true,
968-
tags: 'array,dynamic programming'
968+
tags: 'array,dynamic programming,dp'
969969
},
970970
{
971971
id: 88,
@@ -975,7 +975,7 @@ export let webdata = writable(
975975
difficulty: 'medium',
976976
code: 'C++',
977977
isblind: true,
978-
tags: 'array,dynamic programming'
978+
tags: 'array,dynamic programming,dp'
979979
},
980980
{
981981
id: 89,
@@ -985,7 +985,7 @@ export let webdata = writable(
985985
difficulty: 'medium',
986986
code: 'C++',
987987
isblind: true,
988-
tags: 'string,dynamic programming'
988+
tags: 'string,dynamic programming,dp'
989989
},
990990
{
991991
id: 90,
@@ -995,7 +995,7 @@ export let webdata = writable(
995995
difficulty: 'medium',
996996
code: 'C++',
997997
isblind: true,
998-
tags: 'string,dynamic programming'
998+
tags: 'string,dynamic programming,dp'
999999
},
10001000
{
10011001
id: 91,
@@ -1005,7 +1005,7 @@ export let webdata = writable(
10051005
difficulty: 'medium',
10061006
code: 'C++',
10071007
isblind: true,
1008-
tags: 'string,dynamic programming'
1008+
tags: 'string,dynamic programming,dp'
10091009
},
10101010
{
10111011
id: 92,
@@ -1015,7 +1015,7 @@ export let webdata = writable(
10151015
difficulty: 'medium',
10161016
code: 'C++',
10171017
isblind: true,
1018-
tags: 'array,dynamic programming,breadth-first search'
1018+
tags: 'array,dynamic programming,dp,breadth-first search'
10191019
},
10201020
{
10211021
id: 93,
@@ -1025,7 +1025,7 @@ export let webdata = writable(
10251025
difficulty: 'medium',
10261026
code: 'C++',
10271027
isblind: true,
1028-
tags: 'array,dynamic programming'
1028+
tags: 'array,dynamic programming,dp'
10291029
},
10301030
{
10311031
id: 94,
@@ -1035,7 +1035,7 @@ export let webdata = writable(
10351035
difficulty: 'medium',
10361036
code: 'C++',
10371037
isblind: true,
1038-
tags: 'array,dynamic programming,string,hash table,trie,memoization'
1038+
tags: 'array,dynamic programming,dp,string,hash table,trie,memoization'
10391039
},
10401040
{
10411041
id: 95,
@@ -1045,7 +1045,7 @@ export let webdata = writable(
10451045
difficulty: 'medium',
10461046
code: 'C++',
10471047
isblind: true,
1048-
tags: 'array,dynamic programming,binary seach'
1048+
tags: 'array,dynamic programming,dp,binary seach'
10491049
},
10501050
{
10511051
id: 96,
@@ -1055,7 +1055,7 @@ export let webdata = writable(
10551055
difficulty: 'medium',
10561056
code: 'C++',
10571057
isblind: true,
1058-
tags: 'array,dynamic programming'
1058+
tags: 'array,dynamic programming,dp'
10591059
},
10601060

10611061
]
@@ -1091,7 +1091,7 @@ export let webdata = writable(
10911091
difficulty: 'medium',
10921092
code: 'C++',
10931093
isblind: true,
1094-
tags: 'array,sorting,dynamic programming,greddy'
1094+
tags: 'array,sorting,dynamic programming,dp,greddy'
10951095
},
10961096
{
10971097
id: 100,
@@ -1116,7 +1116,7 @@ export let webdata = writable(
11161116
difficulty: 'medium',
11171117
code: 'C++',
11181118
isblind: true,
1119-
tags: 'array,divide and conquer,dynamic programming'
1119+
tags: 'array,divide and conquer,dynamic programming,dp'
11201120
},
11211121
{
11221122
id: 102,
@@ -1126,7 +1126,7 @@ export let webdata = writable(
11261126
difficulty: 'medium',
11271127
code: 'C++',
11281128
isblind: true,
1129-
tags: 'array,greedy,dynamic programming'
1129+
tags: 'array,greedy,dynamic programming,dp'
11301130
},
11311131
{
11321132
id: 103,
@@ -1136,7 +1136,7 @@ export let webdata = writable(
11361136
difficulty: 'medium',
11371137
code: 'C++',
11381138
isblind: true,
1139-
tags: 'array,greedy,dynamic programming'
1139+
tags: 'array,greedy,dynamic programming,dp'
11401140
},
11411141
{
11421142
id: 104,
@@ -1186,7 +1186,7 @@ export let webdata = writable(
11861186
difficulty: 'medium',
11871187
code: 'C++',
11881188
isblind: true,
1189-
tags: 'string,dynamic programming,stack,greedy'
1189+
tags: 'string,dynamic programming,dp,stack,greedy'
11901190
},
11911191
]
11921192
},
@@ -1241,7 +1241,7 @@ export let webdata = writable(
12411241
difficulty: 'medium',
12421242
code: 'C++',
12431243
isblind: true,
1244-
tags: 'dynamic programming,depth-first search, breadth-first search,graph,heap,shortest path'
1244+
tags: 'dynamic programming,dp,depth-first search, breadth-first search,graph,heap,shortest path'
12451245
},
12461246
]
12471247
},
@@ -1361,7 +1361,7 @@ export let webdata = writable(
13611361
difficulty: 'easy',
13621362
code: 'C++',
13631363
isblind: true,
1364-
tags: 'dynamic programming,bit manipluation'
1364+
tags: 'dynamic programming,dp,bit manipluation'
13651365
},
13661366
{
13671367
id: 117,
@@ -1406,7 +1406,7 @@ export let webdata = writable(
14061406
]
14071407
},
14081408
{
1409-
title: '2-D Dynamic Programming',
1409+
title: '2-D Dynamic programming,Dp',
14101410
problems: [
14111411
{
14121412
id: 121,
@@ -1416,7 +1416,7 @@ export let webdata = writable(
14161416
difficulty: 'medium',
14171417
code: 'C++',
14181418
isblind: true,
1419-
tags: 'math,array,dynamic programming'
1419+
tags: 'math,array,dynamic programming,dp'
14201420
},
14211421
{
14221422
id: 122,
@@ -1426,7 +1426,7 @@ export let webdata = writable(
14261426
difficulty: 'medium',
14271427
code: 'C++',
14281428
isblind: true,
1429-
tags: 'string,dynamic programming'
1429+
tags: 'string,dynamic programming,dp'
14301430
},
14311431
{
14321432
id: 123,
@@ -1436,7 +1436,7 @@ export let webdata = writable(
14361436
difficulty: 'medium',
14371437
code: 'C++',
14381438
isblind: true,
1439-
tags: 'array,dynamic programming'
1439+
tags: 'array,dynamic programming,dp'
14401440
},
14411441
{
14421442
id: 124,
@@ -1446,7 +1446,7 @@ export let webdata = writable(
14461446
difficulty: 'medium',
14471447
code: 'C++',
14481448
isblind: true,
1449-
tags: 'array,dynamic programming'
1449+
tags: 'array,dynamic programming,dp'
14501450
},
14511451
{
14521452
id: 125,
@@ -1456,7 +1456,7 @@ export let webdata = writable(
14561456
difficulty: 'medium',
14571457
code: 'C++',
14581458
isblind: true,
1459-
tags: 'array,dynamic programming,backtracking'
1459+
tags: 'array,dynamic programming,dp,backtracking'
14601460
},
14611461
{
14621462
id: 126,
@@ -1466,7 +1466,7 @@ export let webdata = writable(
14661466
difficulty: 'medium',
14671467
code: 'C++',
14681468
isblind: true,
1469-
tags: 'string,dynamic programming'
1469+
tags: 'string,dynamic programming,dp'
14701470
},
14711471
{
14721472
id: 127,
@@ -1476,7 +1476,7 @@ export let webdata = writable(
14761476
difficulty: 'medium',
14771477
code: 'C++',
14781478
isblind: true,
1479-
tags: 'string,dynamic programming'
1479+
tags: 'string,dynamic programming,dp'
14801480
},
14811481
{
14821482
id: 128,
@@ -1486,7 +1486,7 @@ export let webdata = writable(
14861486
difficulty: 'hard',
14871487
code: 'C++',
14881488
isblind: true,
1489-
tags: 'Array,Graph,Dynamic Programming,Depth-First Search,Breadth-First Search,Topological Sort,Memoization,Matrix'
1489+
tags: 'Array,Graph,Dynamic programming,Dp,Depth-First Search,Breadth-First Search,Topological Sort,Memoization,Matrix'
14901490
},
14911491
{
14921492
id: 129,
@@ -1496,7 +1496,7 @@ export let webdata = writable(
14961496
difficulty: 'hard',
14971497
code: 'C++',
14981498
isblind: true,
1499-
tags: 'string,dynamic programming'
1499+
tags: 'string,dynamic programming,dp'
15001500
},
15011501
{
15021502
id: 130,
@@ -1506,7 +1506,7 @@ export let webdata = writable(
15061506
difficulty: 'hard',
15071507
code: 'C++',
15081508
isblind: true,
1509-
tags: 'array,dynamic programming'
1509+
tags: 'array,dynamic programming,dp'
15101510
},
15111511
{
15121512
id: 131,
@@ -1516,7 +1516,7 @@ export let webdata = writable(
15161516
difficulty: 'hard',
15171517
code: 'C++',
15181518
isblind: true,
1519-
tags: 'string,dynamic programming,recursion'
1519+
tags: 'string,dynamic programming,dp,recursion'
15201520
},
15211521

15221522
]

0 commit comments

Comments
 (0)