feat(curriculum): rename prime numbers sum calculator (#62392)

This commit is contained in:
Ilenia
2025-10-14 06:43:35 +02:00
committed by GitHub
parent 9993661bd2
commit d1106e928b
6 changed files with 17 additions and 17 deletions

View File

@@ -3604,10 +3604,10 @@
"In this lab, you will create a function that looks through an array of objects and returns an array of all objects that have matching property and value pairs."
]
},
"lab-sum-all-primes-calculator": {
"lab-prime-number-sum-calculator": {
"title": "Build a Prime Number Sum Calculator",
"intro": [
"In this lab you will build a sum all primes calculator that takes a number and returns the sum of all prime numbers that are less than or equal to that number."
"In this lab you will build a prime number sum calculator that takes a number and returns the sum of all prime numbers that are less than or equal to that number."
]
},
"lab-range-based-lcm-calculator": {

View File

@@ -0,0 +1,9 @@
---
title: Introduction to the Build a Prime Number Sum Calculator
block: lab-prime-number-sum-calculator
superBlock: full-stack-developer
---
## Introduction to the Build a Prime Number Sum Calculator
In this lab you will build a prime number sum calculator that takes a number and returns the sum of all prime numbers that are less than or equal to that number.

View File

@@ -1,9 +0,0 @@
---
title: Introduction to the Build a Sum All Primes Calculator
block: lab-sum-all-primes-calculator
superBlock: full-stack-developer
---
## Introduction to the Build a Sum All Primes Calculator
In this lab you will build a sum all primes calculator that takes a number and returns the sum of all prime numbers that are less than or equal to that number.

View File

@@ -1,8 +1,8 @@
---
id: a3bfc1673c0526e06d3ac698
title: Build a Sum All Primes Calculator
title: Build a Prime Number Sum Calculator
challengeType: 26
dashedName: build-a-sum-all-primes-calculator
dashedName: build-a-prime-number-sum-calculator
---
# --description--

View File

@@ -1,7 +1,7 @@
{
"name": "Build a Sum All Primes Calculator",
"name": "Build a Prime Number Sum Calculator",
"isUpcomingChange": false,
"dashedName": "lab-sum-all-primes-calculator",
"dashedName": "lab-prime-number-sum-calculator",
"helpCategory": "JavaScript",
"blockLayout": "link",
"blockType": "lab",
@@ -9,7 +9,7 @@
"challengeOrder": [
{
"id": "a3bfc1673c0526e06d3ac698",
"title": "Build a Sum All Primes Calculator"
"title": "Build a Prime Number Sum Calculator"
}
]
}

View File

@@ -413,7 +413,7 @@
"lab-symmetric-difference",
"lab-value-remover-function",
"lab-matching-object-filter",
"lab-sum-all-primes-calculator",
"lab-prime-number-sum-calculator",
"lab-range-based-lcm-calculator",
"lab-deep-flattening-tool",
"lab-all-true-property-validator",