barcelonna | October 2025 | Ifeoma Osegbo | Sprint 3 | Implementing-Tools - #5
Open
Ify-O wants to merge 25 commits into
Open
barcelonna | October 2025 | Ifeoma Osegbo | Sprint 3 | Implementing-Tools#5Ify-O wants to merge 25 commits into
Ify-O wants to merge 25 commits into
Conversation
…y whose name contains at least one upper case letter.
…directory whose name starts with an upper case letter.
…y whose name starts with an upper case letter and doesn't contain any other upper case letters.
…ctory whose name starts with an upper case letter and doesn't contain any other upper case letters.
…person's first score, descending.
…the three players with the highest first score, in descending order.
…he player whose first score was the second highest.
… swapped (both upper and lower case).
…Z swapped (both upper and lower case).
roden0
reviewed
Apr 22, 2026
|
|
||
| # The input for this script is the events-with-timestamps.txt file. | ||
| # TODO: Write a command to show how many times anyone has entered and exited. | ||
| # TODO: |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Implement Unix CLI tools (ls, cat, wc)
This PR implements simplified versions of core Unix command-line tools using Node.js:
ls,cat, andwc.ls
-1(one item per line) and-a(include hidden files)cat
-n(number all lines) and-b(number non-empty lines)wc
Computes file statistics:
-lline count-wword count-ccharacter countSupports single and multiple files