File tree 3 files changed +94
-1
lines changed
3 files changed +94
-1
lines changed Original file line number Diff line number Diff line change @@ -26,4 +26,6 @@ let data = {
26
26
27
27
```
28
28
29
- ### How will you access Sophia’s secondary school location?
29
+ ### How will you access Sophia’s secondary school location?
30
+
31
+ problem provider's source : https://drive.google.com/file/d/1oRju8zbVD3O3oyntU0gPfW9-bp8R11lk/view
Original file line number Diff line number Diff line change
1
+ ## Problem 56:
2
+
3
+ ```
4
+ let data = [
5
+ {
6
+ pHeroCourses: {
7
+ "course-x": "web development",
8
+ },
9
+ },
10
+
11
+ {
12
+ pHeroCourses: {
13
+ "course-y": "phitron",
14
+ },
15
+ },
16
+
17
+ {
18
+ pHeroCourses: {
19
+ "course-z": "acc",
20
+ },
21
+ },
22
+
23
+ {
24
+ pHeroCourses: {
25
+ "course-xyz": "level-2",
26
+ },
27
+
28
+ locationField: {
29
+ "en-US": {
30
+ lat: 19.28563,
31
+ lon: 72.8691,
32
+ },
33
+ },
34
+ },
35
+ ];
36
+ ```
37
+
38
+ ### How will you get the output ` [uses 2D matrix concept] `
39
+ 1 . level-2
40
+ 2 . 72.8621
41
+
42
+
43
+
44
+
45
+
46
+ problem getting source: https://drive.google.com/file/d/1oRju8zbVD3O3oyntU0gPfW9-bp8R11lk/view
Original file line number Diff line number Diff line change
1
+
2
+
3
+ let data = [
4
+ {
5
+ pHeroCourses : {
6
+ "course-x" : "web development" ,
7
+ } ,
8
+ } ,
9
+
10
+ {
11
+ pHeroCourses : {
12
+ "course-y" : "phitron" ,
13
+ } ,
14
+ } ,
15
+
16
+ {
17
+ pHeroCourses : {
18
+ "course-z" : "acc" ,
19
+ } ,
20
+ } ,
21
+
22
+ {
23
+ pHeroCourses : {
24
+ "course-xyz" : "level-2" ,
25
+ } ,
26
+
27
+ locationField : {
28
+ "en-US" : {
29
+ lat : 19.28563 ,
30
+ lon : 72.8691 ,
31
+ } ,
32
+ } ,
33
+ } ,
34
+ ] ;
35
+
36
+
37
+ /*
38
+
39
+ How will you get the output `[uses 2D matrix concept]`
40
+
41
+ 1. level-2
42
+ 2. 72.8621
43
+
44
+ */
45
+
You can’t perform that action at this time.
0 commit comments