Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 479a56e

Browse files
problem 60 initialization complete
1 parent e1622a7 commit 479a56e

File tree

2 files changed

+68
-0
lines changed

2 files changed

+68
-0
lines changed

‎problem60/problem.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
2+
## Problme 60:
3+
4+
```
5+
const studentData = [
6+
{
7+
class: 10,
8+
details: [
9+
{
10+
studentId: "1",
11+
gradingDetails: [{ grade: "A" }],
12+
},
13+
{
14+
studentId: "2",
15+
gradingDetails: [{ grade: "B" }],
16+
},
17+
],
18+
},
19+
{
20+
class: 11,
21+
details: [
22+
{
23+
studentId: 3,
24+
gradingDetails: [{ grade: "B" }],
25+
},
26+
{
27+
studentId: 4,
28+
gradingDetails: [{ grade: "D" }],
29+
},
30+
],
31+
},
32+
];
33+
34+
```
35+
36+
## Display `B` `D`
37+
38+
problem getting source: https://drive.google.com/file/d/1oRju8zbVD3O3oyntU0gPfW9-bp8R11lk/view

‎problem60/problem60.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
const studentData = [
2+
{
3+
class: 10,
4+
details: [
5+
{
6+
studentId: "1",
7+
gradingDetails: [{ grade: "A" }],
8+
},
9+
{
10+
studentId: "2",
11+
gradingDetails: [{ grade: "B" }],
12+
},
13+
],
14+
},
15+
{
16+
class: 11,
17+
details: [
18+
{
19+
studentId: 3,
20+
gradingDetails: [{ grade: "B" }],
21+
},
22+
{
23+
studentId: 4,
24+
gradingDetails: [{ grade: "D" }],
25+
},
26+
],
27+
},
28+
];
29+
30+
/* ===========Display B D =========== */

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /