generated from CodeYourFuture/Module-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 147
Sheffield | May-2025 | Hassan Osman | Sprint 2 Coursework #577
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
HassanOHOsman
wants to merge
18
commits into
CodeYourFuture:main
Choose a base branch
from
HassanOHOsman:coursework/sprint-2
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 14 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
cc0c7b7
fixed syntax to access value for "houseNumber" key
HassanOHOsman aa84854
object now iterable & logs out all values.
HassanOHOsman d20b68d
rephrased for better readability
HassanOHOsman 9fe323f
fixed bug & each ingredient displayed in new line
HassanOHOsman cfcb972
contains function now meets requirements
HassanOHOsman ba1252d
Built tests to ensure function is working
HassanOHOsman 0a0d73b
implement country-code & currency function
HassanOHOsman 161f6e4
test passed for country code/ currency function
HassanOHOsman d02455c
created function to calc array's element's reps
HassanOHOsman 04f0e36
test for empty array passed
HassanOHOsman 029d264
array (with repeated to object) items test passed
HassanOHOsman 117cd92
"throw error" test passed
HassanOHOsman 88a8022
implement function to pass several edge cases
HassanOHOsman bbe68e7
answered Qs & fixed function to swap keys & values
HassanOHOsman 025f19c
removed code lines that don't add anything.
HassanOHOsman a3c5749
added index (serves as key) in array test
HassanOHOsman 5191ab8
function now implemented to pass coded QSs test
HassanOHOsman 2331195
improved indentation
HassanOHOsman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
function contains() {} | ||
function contains(object, property) { | ||
if (typeof object !== "object" || object == null || Array.isArray(object)) { | ||
return false; | ||
} | ||
if (Object.keys(object).length === 0) { | ||
return false; | ||
} else { | ||
return object.hasOwnProperty(property); | ||
} | ||
|
||
|
||
} | ||
|
||
module.exports = contains; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
function createLookup() { | ||
// implementation here | ||
function createLookup(array) { | ||
return Object.fromEntries(array); | ||
|
||
} | ||
|
||
module.exports = createLookup; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
function tally() {} | ||
function tally(list) { | ||
if (!Array.isArray(list)) { | ||
throw new Error("Invalid input!"); | ||
} | ||
return list.reduce((rep, element) => { | ||
rep[element] = (rep[element] || 0) + 1; | ||
return rep; | ||
}, {}); | ||
} | ||
|
||
module.exports = tally; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.