From c19de4e55c1250affc688c460630cf73bee770f9 Mon Sep 17 00:00:00 2001 From: zehraaMA Date: Fri, 31 Mar 2023 02:21:13 +0300 Subject: [PATCH 1/5] rephrase the instructions --- reviewers.js | 58 +++++++++++++++++++--------------------------------- 1 file changed, 21 insertions(+), 37 deletions(-) diff --git a/reviewers.js b/reviewers.js index cd4a2c9..eda2973 100644 --- a/reviewers.js +++ b/reviewers.js @@ -1,47 +1,37 @@ const reviewers = require("./reviewers.json"); console.log("🚀 ~ file: reviewers.js:2 ~ reviewers:", reviewers); -/************************************************************** - * getReviewerName(reviewer) - * - receives a reviewer object - * - returns the name of the reviewer - ****************************************************************/ +/*********************************************************************** +- This function receives a reviewer object and should return the name of the reviewer. +***********************************************************************/ function getReviewerName(reviewer) { //TODO: ADD YOUR CODE HERE } // console.log(getReviewerName(reviewers[0])); -/************************************************************** - * numberOfReviews(reviewer) - * - receives a reviewer object - * - returns the number of books reviews that reviewer has done - ****************************************************************/ +/*********************************************************************** +- Receives a reviewer object and returns the number of reviews that reviewer has done. +************************************************************************/ function numberOfReviews(reviewer) { //TODO: ADD YOUR CODE HERE } // console.log(numberOfReviews(reviewers[0])); -/************************************************************** - * reviewerHasReview(reviewTitle, reviewer): - * - receives a review title (string) - * - receives a reviewer object - * - returns true if the reviewer object has a review that matches the given review title - * - returns false otherwise - * - * BONUS: use iteration method `.some()` - ****************************************************************/ +/*********************************************************************** + - Receives a review title (string) and a reviewer object, + and returns true if the reviewer object has a review that matches the given review title. + Otherwise, it returns false. + - Bonus: uses iteration method .some() + ***********************************************************************/ function reviewerHasReview(reviewTitle, reviewer) { //TODO: ADD YOUR CODE HERE } // console.log(reviewerHasReview("Becoming", reviewers[0])); /************************************************************** - * getReviewerByName(reviewerName, reviewers): - * - receives a reviewer name (string) - * - receives an array of reviewer objects - * - returns the reviewer object with the same name as the reviewerName provided - * - * BONUS: use iteration method `.find()` + - Receives a reviewer name (string) and an array of reviewer objects, + and returns the reviewer object with the same name as the reviewerName provided. + - Bonus: uses iteration method .find() ****************************************************************/ function getReviewerByName(reviewerName, reviewers) { //TODO: ADD YOUR CODE HERE @@ -49,12 +39,9 @@ function getReviewerByName(reviewerName, reviewers) { // console.log(getReviewerByName("Michelle Obama", reviewers)); /************************************************************** - * getReviewerByReviewTitle(reviewTitle, reviewers): - * - receives a review title (string) - * - receives an array of reviewer objects - * - returns the reviewer object that has done a review with the review title provided - * - * BONUS: use iteration methods `.find()` and `.some()` +- Receives a review title (string) and an array of reviewer objects, + and returns the reviewer object that has done a review with the review title provided. +- Bonus: uses iteration methods .find() and .some() ****************************************************************/ function getReviewerByReviewTitle(reviewTitle, reviewers) { //TODO: ADD YOUR CODE HERE @@ -62,12 +49,9 @@ function getReviewerByReviewTitle(reviewTitle, reviewers) { // console.log(getReviewerByReviewTitle("The Overstory", reviewers)); /************************************************************** - * searchReviewers(query, reviewers): - * - receives a query (string) - * - receives an array of reviewer objects - * - returns an array of the reviewer objects that contain the query in their name/description. - * - * Hint: use string method `.includes()` and iteration method `.filter()` +- Receives a query (string) and an array of reviewer objects, + and returns an array of the reviewer objects that contain the query in their name/description. +- Hint: uses string method .includes() and iteration method .filter() ****************************************************************/ function searchReviewers(query, reviewers) { //TODO: ADD YOUR CODE HERE From a1feb2b1d908c0307ff7f59c831919cf36d43b45 Mon Sep 17 00:00:00 2001 From: zehraaMA Date: Fri, 7 Apr 2023 03:18:07 +0300 Subject: [PATCH 2/5] refactor the instructions --- arrays.js | 212 +++++++++++++++++++++++++++++++++++------------------- 1 file changed, 139 insertions(+), 73 deletions(-) diff --git a/arrays.js b/arrays.js index b2088e3..3811265 100644 --- a/arrays.js +++ b/arrays.js @@ -1,92 +1,158 @@ -// Task 1: Create a function sumArray that receives an array of numbers as a parameter and returns the sum of all the numbers in the array. - +/************************************************************** + Task 1: + Create a function sumArray that receives an array of numbers as a parameter and returns the sum of all the numbers in the array. +**************************************************************/ function sumArray(numbers) { - // TODO: WRITE YOUR CODE HERE + //TODO: Add your code here } +// console.log(sumArray([4, 3, 2, 5, -10])); -//Task 2: Create a function findFirstStringStartingWithA that receives an array of strings as a parameter and returns the first string that starts with the letter given letter. - -function findFirstStringStartingWithA(letter, strings) { - // TODO: WRITE YOUR CODE HERE +/************************************************************** + Task 2: + Create a function findFirstStringStartingWithA that receives an array of strings as a parameter + and returns the first string that starts with the letter given letter. +**************************************************************/ +function findFirstStringStartingWithLetter(letter, strings) { + //TODO: Add your code here } +// console.log( +// findFirstStringStartingWithLetter("h", ["Memory", "Hello", "Happy"]) +// ); -// Task 3: Create a function isPresentIncluded that receives an array of presents as a parameter and uses the includes method to check if a present is included in the array. - +/************************************************************** + Task 3: + Create a function isPresentIncluded that receives an array of presents as a parameter and uses the includes method to check + if a present is included in the array. +**************************************************************/ function isPresentIncluded(presentName, presents) { - // TODO: WRITE YOUR CODE HERE + //TODO: Add your code here } +// console.log( +// isPresentIncluded("puzzle", [ +// "Sparkling Surprise", +// "Enchanted Elegance", +// "Whimsical Wonder", +// "Joyful Jingle", +// "Puzzle", +// ]) +// ); -//Task 4: Create a function sortStudentsAlphabetically that receives an array of students name as a parameter and uses the sort method to sort the strings in alphabetical order. +/************************************************************** + Task 4: + Create a function sortStudentsAlphabetically that receives an array of students name as a parameter + and uses the sort method to sort the strings in alphabetical order. +**************************************************************/ function sortStudentsAlphabetically(students) { - // TODO: WRITE YOUR CODE HERE + //TODO: Add your code here } +// console.log( +// sortStudentsAlphabetically([ +// "Eve", +// "Jasmia", +// "Husnia", +// "Grace", +// "Bob", +// "Charlie", +// "Alice", +// "Dave", +// "Um abbas", +// "Frank", +// ]) +// ); -// Task 5: Create a function that takes an array of numbers as input, separates the odd and even numbers, and returns two new arrays. -// Hint: Use the forEach method. -// const [odds, evens] = separateOddEven([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]); -// console.log(odds); // Output: [1, 3, 5, 7, 9] -// console.log(evens); // Output: [2, 4, 6, 8, 10] +/************************************************************** + Task 5: + Create a function that takes an array of numbers as input, separates the odd and even numbers, and returns two new arrays. + - Hint: Use the forEach method. + - const [odds, evens] = separateOddEven([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]); + - console.log(odds); // Output: [1, 3, 5, 7, 9] + - console.log(evens); // Output: [2, 4, 6, 8, 10] +**************************************************************/ function separateOddEven(numbers) { - // TODO: WRITE YOUR CODE HERE + //TODO: Add your code here } +// console.log(separateOddEven([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])); -// Task 6: Create a function that takes two parameters: a code that represents an item, and an array of item codes, then removes the item with the given code from the system. -// Hint: Use the filter method. - -// e.g -//const items = [ -// { code: '#153', name: 'Ball' }, -// { code: '#147', name: 'Scissors' }, -// { code: '#249', name: 'Pillow' }, -// { code: '#149', name: 'Tissue' } -// ]; - -// const updatedItems = removeItem(#153, items); -// console.log(updatedItems); // Output: [{ code: "#147", name: "Scissors" }, { code: "#249", name: "Pillow" }, { code: "#149", name: "Tissue" },]; - +/************************************************************** + Task 6: + Create a function that takes two parameters: a code that represents an item, and an array of item codes, then removes the item with the given code from the system. + - Hint: Use the filter method. + - e.g + const items = [ + { code: '#153', name: 'Ball' }, + { code: '#147', name: 'Scissors' }, + { code: '#249', name: 'Pillow' }, + { code: '#149', name: 'Tissue' } + ]; + + const updatedItems = removeItem('#153', items); + console.log(updatedItems); // Output: [{ code: "#147", name: "Scissors" }, { code: "#249", name: "Pillow" }, { code: "#149", name: "Tissue" },]; +**************************************************************/ function removeItem(code, items) { - // TODO: WRITE YOUR CODE HERE + //TODO: Add your code here } +// console.log( +// removeItem("#153", [ +// { code: "#153", name: "Ball" }, +// { code: "#147", name: "Scissors" }, +// { code: "#249", name: "Pillow" }, +// { code: "#149", name: "Tissue" }, +// ]) +// ); -// Task 7: Write a function that takes an array of objects representing students, with properties like firstName, lastName, grade, and type (nerd or regular), and a curve which represents the amount of the curve. The function should return a new array with updated grades, with nerds receiving a negative curve and regular students receiving a positive curve. -// Hint: Use the map method. - -// const students = [ -// { firstName: "Jaber", lastName: "jabarbar", grade: 10, type: "regular" }, -// { firstName: "Hamza", lastName: "Alhamazi", grade: 12, type: "regular" }, -// { firstName: "Jasem", lastName: "Jamasmas", grade: 15, type: "nerd" }, -// { firstName: "Kadhim", lastName: "Khadhmia", grade: 5, type: "regular" }, -// { firstName: "Um Abbas", lastName: "IDK", grade: 20, type: "nerd" }, -// { firstName: "Hohny", lastName: "Micle", grade: 10, type: "regular" }, -// ]; -// const updatedGrades = updateGrades(students, 10); -// console.log(updatedGrades); - -//Output: -// [ -// { -// firstName: "Jaber", -// lastName: "jabarbar", -// grade: 20, -// type: "regular", -// }, -// { -// firstName: "Hamza", -// lastName: "Alhamazi", -// grade: 22, -// type: "regular", -// }, -// { firstName: "Jasem", lastName: "Jamasmas", grade: 5, type: "nerd" }, -// { -// firstName: "Kadhim", -// lastName: "Khadhmia", -// grade: 15, -// type: "regular", -// }, -// { firstName: "Um Abbas", lastName: "Winston", grade: 10, type: "nerd" }, -// { firstName: "Hohny", lastName: "Micle", grade: 20, type: "regular" }, -// ]; +/************************************************************** +Task 7: + Write a function that takes an array of objects representing students, with properties like firstName, lastName, grade, and + type (nerd or regular), and a curve which represents the amount of the curve. The function should return a new array with + updated grades, with nerds receiving a negative curve and regular students receiving a positive curve. + - Hint: Use the map method. + - e.g + const students = [ + { firstName: "Jaber", lastName: "jabarbar", grade: 10, type: "regular" }, + { firstName: "Hamza", lastName: "Alhamazi", grade: 12, type: "regular" }, + { firstName: "Jasem", lastName: "Jamasmas", grade: 15, type: "nerd" }, + { firstName: "Kadhim", lastName: "Khadhmia", grade: 5, type: "regular" }, + { firstName: "Um Abbas", lastName: "IDK", grade: 20, type: "nerd" }, + { firstName: "Johny", lastName: "Micle", grade: 10, type: "regular" }, + ]; + const updatedGrades = updateGrades(students, 10); + console.log(updatedGrades); -function updateGrades(students) { - // TODO: WRITE YOUR CODE HERE + Output: + [ + { + firstName: "Jaber", + lastName: "jabarbar", + grade: 20, + type: "regular", + }, + { + firstName: "Hamza", + lastName: "Alhamazi", + grade: 22, + type: "regular", + }, + { firstName: "Jasem", lastName: "Jamasmas", grade: 5, type: "nerd" }, + { + firstName: "Kadhim", + lastName: "Khadhmia", + grade: 15, + type: "regular", + }, + { firstName: "Um Abbas", lastName: "Winston", grade: 10, type: "nerd" }, + { firstName: "Johny", lastName: "Micle", grade: 20, type: "regular" }, + ]; +**************************************************************/ +function updateGrades(curve, students) { + //TODO: Add your code here } +// console.log( +// updateGrades(10, [ +// { firstName: "Jaber", lastName: "jabarbar", grade: 10, type: "regular" }, +// { firstName: "Hamza", lastName: "Alhamazi", grade: 12, type: "regular" }, +// { firstName: "Jasem", lastName: "Jamasmas", grade: 15, type: "nerd" }, +// { firstName: "Kadhim", lastName: "Khadhmia", grade: 5, type: "regular" }, +// { firstName: "Um Abbas", lastName: "IDK", grade: 20, type: "nerd" }, +// { firstName: "Johny", lastName: "Micle", grade: 10, type: "regular" }, +// ]) +// ); From dd709970ed74e5726a846ba1bff18e2783a07081 Mon Sep 17 00:00:00 2001 From: ZehraaMA <125884625+ZehraaMA@users.noreply.github.com> Date: Tue, 18 Jul 2023 20:14:53 +0300 Subject: [PATCH 3/5] Update arrays.js --- arrays.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/arrays.js b/arrays.js index 3811265..18b8fb0 100644 --- a/arrays.js +++ b/arrays.js @@ -1,6 +1,7 @@ /************************************************************** Task 1: Create a function sumArray that receives an array of numbers as a parameter and returns the sum of all the numbers in the array. + Hint: Use the .reduce() method **************************************************************/ function sumArray(numbers) { //TODO: Add your code here @@ -11,6 +12,8 @@ function sumArray(numbers) { Task 2: Create a function findFirstStringStartingWithA that receives an array of strings as a parameter and returns the first string that starts with the letter given letter. + + Hint: Use the .find() and .startsWith() methods **************************************************************/ function findFirstStringStartingWithLetter(letter, strings) { //TODO: Add your code here @@ -23,6 +26,8 @@ function findFirstStringStartingWithLetter(letter, strings) { Task 3: Create a function isPresentIncluded that receives an array of presents as a parameter and uses the includes method to check if a present is included in the array. + + Hint: Use the .map() and .includes() methods **************************************************************/ function isPresentIncluded(presentName, presents) { //TODO: Add your code here @@ -41,6 +46,8 @@ function isPresentIncluded(presentName, presents) { Task 4: Create a function sortStudentsAlphabetically that receives an array of students name as a parameter and uses the sort method to sort the strings in alphabetical order. + + Hint: Use the .sort() method **************************************************************/ function sortStudentsAlphabetically(students) { //TODO: Add your code here @@ -67,6 +74,8 @@ function sortStudentsAlphabetically(students) { - const [odds, evens] = separateOddEven([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]); - console.log(odds); // Output: [1, 3, 5, 7, 9] - console.log(evens); // Output: [2, 4, 6, 8, 10] + + Hint: Use the .forEach() and .push() methods **************************************************************/ function separateOddEven(numbers) { //TODO: Add your code here @@ -87,6 +96,8 @@ function separateOddEven(numbers) { const updatedItems = removeItem('#153', items); console.log(updatedItems); // Output: [{ code: "#147", name: "Scissors" }, { code: "#249", name: "Pillow" }, { code: "#149", name: "Tissue" },]; + + Hint: Use the .filter and .startsWith method **************************************************************/ function removeItem(code, items) { //TODO: Add your code here @@ -142,6 +153,8 @@ Task 7: { firstName: "Um Abbas", lastName: "Winston", grade: 10, type: "nerd" }, { firstName: "Johny", lastName: "Micle", grade: 20, type: "regular" }, ]; + + Hint: Use the .map method and separator operator **************************************************************/ function updateGrades(curve, students) { //TODO: Add your code here From 6033c70e9ec5e5d807509204ef1ae5b49354c1b0 Mon Sep 17 00:00:00 2001 From: ZehraaMA Date: Mon, 12 Feb 2024 17:27:33 +0300 Subject: [PATCH 4/5] Add basic arrays task --- arrays-basics.js | 47 +++++++++++++++++++++++++++++ arrays.js => arrays-intermediate.js | 0 2 files changed, 47 insertions(+) create mode 100644 arrays-basics.js rename arrays.js => arrays-intermediate.js (100%) diff --git a/arrays-basics.js b/arrays-basics.js new file mode 100644 index 0000000..0de468d --- /dev/null +++ b/arrays-basics.js @@ -0,0 +1,47 @@ +/************************************************************** + Task 8 (logArray): + Create a function logArray that receives an array as a parameter and logs each item in the array. +**************************************************************/ +function logArray(arr) {} + +// logArray([1, 2, 3, 4, 5]); + +/************************************************************** + Task 9 (logArrayWithIndex): + Create a function logArrayWithIndex that receives an array as a parameter and logs each item in the array along with its index. + **************************************************************/ +function logArrayWithIndex(arr) {} + +// logArrayWithIndex(["apple", "banana", "orange"]); + +/************************************************************** + Task 10 (logEvenNumbers): + Create a function logEvenNumbers that receives an array of numbers as a parameter and logs only the even numbers in the array. + **************************************************************/ +function logEvenNumbers(arr) {} + +// logEvenNumbers([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]); + +/************************************************************** + Task 11 (logArrayBackwards): + Create a function logArrayBackwards that receives an array as a parameter and logs each item in the array in reverse order. + **************************************************************/ +function logArrayBackwards(arr) {} + +// logArrayBackwards(["one", "two", "three", "four"]); + +/************************************************************** + Task 12 (logLastItem): + Create a function logLastItem that receives an array as a parameter and logs the last item in the array. + **************************************************************/ +function logLastItem(arr) {} + +// logLastItem(["a", "b", "c", "d"]); + +/************************************************************** + Task 13 (logArrayInChunks): + Create a function logArrayInChunks that receives an array and a chunk size as parameters and logs the items in the array in chunks of the specified size. + **************************************************************/ +function logArrayInChunks(arr, chunkSize) {} + +// logArrayInChunks([1, 2, 3, 4, 5, 6, 7, 8, 9], 3); diff --git a/arrays.js b/arrays-intermediate.js similarity index 100% rename from arrays.js rename to arrays-intermediate.js From 9f847b35bf75c6438086adf10e90497761648896 Mon Sep 17 00:00:00 2001 From: Mahdi209 Date: Thu, 15 Feb 2024 17:32:31 +0300 Subject: [PATCH 5/5] the task is done --- arrays-basics.js | 41 ++++++++++++++++++++++++++++++++++------- arrays-intermediate.js | 27 +++++++++++++++++++++++++++ index.html | 18 +++++++++--------- reviewers.js | 18 ++++++++++++++++-- 4 files changed, 86 insertions(+), 18 deletions(-) diff --git a/arrays-basics.js b/arrays-basics.js index 0de468d..4227e15 100644 --- a/arrays-basics.js +++ b/arrays-basics.js @@ -2,7 +2,11 @@ Task 8 (logArray): Create a function logArray that receives an array as a parameter and logs each item in the array. **************************************************************/ -function logArray(arr) {} +function logArray(arr) { + arr.forEach((value, index) => { + console.log(value); + }); +} // logArray([1, 2, 3, 4, 5]); @@ -10,7 +14,11 @@ function logArray(arr) {} Task 9 (logArrayWithIndex): Create a function logArrayWithIndex that receives an array as a parameter and logs each item in the array along with its index. **************************************************************/ -function logArrayWithIndex(arr) {} +function logArrayWithIndex(arr) { + arr.forEach((value, index) => { + console.log(index); + }); +} // logArrayWithIndex(["apple", "banana", "orange"]); @@ -18,15 +26,24 @@ function logArrayWithIndex(arr) {} Task 10 (logEvenNumbers): Create a function logEvenNumbers that receives an array of numbers as a parameter and logs only the even numbers in the array. **************************************************************/ -function logEvenNumbers(arr) {} +function logEvenNumbers(arr) { + let evenNumber = arr.filter((value, index) => { + return value % 2 === 0; + }); + console.log(evenNumber); +} // logEvenNumbers([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]); - /************************************************************** Task 11 (logArrayBackwards): Create a function logArrayBackwards that receives an array as a parameter and logs each item in the array in reverse order. **************************************************************/ -function logArrayBackwards(arr) {} +function logArrayBackwards(arr) { + const backWords = arr.map((value, index) => { + return arr[arr.length - 1 - index]; + }); + console.log(backWords); +} // logArrayBackwards(["one", "two", "three", "four"]); @@ -34,7 +51,12 @@ function logArrayBackwards(arr) {} Task 12 (logLastItem): Create a function logLastItem that receives an array as a parameter and logs the last item in the array. **************************************************************/ -function logLastItem(arr) {} +function logLastItem(arr) { + const lastItem = arr.find((value, index) => { + return value[arr.length - 1 - index]; + }); + console.log(lastItem); +} // logLastItem(["a", "b", "c", "d"]); @@ -42,6 +64,11 @@ function logLastItem(arr) {} Task 13 (logArrayInChunks): Create a function logArrayInChunks that receives an array and a chunk size as parameters and logs the items in the array in chunks of the specified size. **************************************************************/ -function logArrayInChunks(arr, chunkSize) {} +function logArrayInChunks(arr, chunkSize) { + for (let i = 0; i < arr.length; i += chunkSize) { + const chunk = arr.slice(i, i + chunkSize); + console.log(chunk); + } +} // logArrayInChunks([1, 2, 3, 4, 5, 6, 7, 8, 9], 3); diff --git a/arrays-intermediate.js b/arrays-intermediate.js index 18b8fb0..00dba76 100644 --- a/arrays-intermediate.js +++ b/arrays-intermediate.js @@ -5,6 +5,9 @@ **************************************************************/ function sumArray(numbers) { //TODO: Add your code here + return numbers.reduce( + (accumulator, currentNumber) => accumulator + currentNumber + ); } // console.log(sumArray([4, 3, 2, 5, -10])); @@ -17,6 +20,7 @@ function sumArray(numbers) { **************************************************************/ function findFirstStringStartingWithLetter(letter, strings) { //TODO: Add your code here + return strings.find((value, index) => value.toLowerCase().startsWith(letter)); } // console.log( // findFirstStringStartingWithLetter("h", ["Memory", "Hello", "Happy"]) @@ -31,6 +35,7 @@ function findFirstStringStartingWithLetter(letter, strings) { **************************************************************/ function isPresentIncluded(presentName, presents) { //TODO: Add your code here + return presents.map((value) => value.toLowerCase()).includes(presentName); } // console.log( // isPresentIncluded("puzzle", [ @@ -51,6 +56,7 @@ function isPresentIncluded(presentName, presents) { **************************************************************/ function sortStudentsAlphabetically(students) { //TODO: Add your code here + return students.sort(); } // console.log( // sortStudentsAlphabetically([ @@ -79,6 +85,16 @@ function sortStudentsAlphabetically(students) { **************************************************************/ function separateOddEven(numbers) { //TODO: Add your code here + let odds = []; + let evens = []; + numbers.forEach((value) => { + if (value % 2 === 0) { + evens.push(value); + } else { + odds.push(value); + } + }); + return { odds, evens }; } // console.log(separateOddEven([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])); @@ -101,6 +117,9 @@ function separateOddEven(numbers) { **************************************************************/ function removeItem(code, items) { //TODO: Add your code here + return items.filter((value) => { + value.code !== code; + }); } // console.log( // removeItem("#153", [ @@ -158,7 +177,15 @@ Task 7: **************************************************************/ function updateGrades(curve, students) { //TODO: Add your code here + return students.map((value) => { + if (value.type === "nerd") { + return { ...value, grade: value.grade - curve }; + } else { + return { ...value, grade: value.grade + curve }; + } + }); } + // console.log( // updateGrades(10, [ // { firstName: "Jaber", lastName: "jabarbar", grade: 10, type: "regular" }, diff --git a/index.html b/index.html index d971aeb..cae4b96 100644 --- a/index.html +++ b/index.html @@ -1,12 +1,12 @@ - - - - + + + + Arrays - - -