Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
node_modules
.DS_Store
.DS_Store
**/.DS_Store
47 changes: 47 additions & 0 deletions implement-shell-tools/cat/cat.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import sys
from pathlib import Path

def cleanInput(listOfFiles):
cleanLinesArr = []

for file in listOfFiles:
grabbedText = Path(file).read_text(encoding="utf-8")
splitLines = grabbedText.splitlines()
cleanLinesArr.extend(splitLines)

return cleanLinesArr

def takeSpecifiedAction(cleanLinesArr, flag):
countingOnlyFullLines = 1

if flag not in (None, "-n", "-b"):
print("incorrect flag")
return

for line in cleanLinesArr:
if not flag:
print(line)
elif flag == "-n":
print(f"{countingOnlyFullLines} {line}")
countingOnlyFullLines += 1
elif flag == "-b":
if line == "":
print("")
else:
print(f"{countingOnlyFullLines} {line}")
countingOnlyFullLines += 1


args = sys.argv[1:]
flag = None
restIsFiles = []

if len(args) > 0 and args[0] and args[0][0] == "-":
flag = args[0]
restIsFiles = args[1:]
else:
flag = None
restIsFiles = args

lines = cleanInput(restIsFiles)
takeSpecifiedAction(lines, flag)
39 changes: 39 additions & 0 deletions implement-shell-tools/ls/ls.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import sys
import os

# `ls -1`
def showAllFilesInDir(directory):
listOfFiles = os.listdir(directory)

for eachFile in listOfFiles:
if eachFile[0] != ".":
print(eachFile)

# `ls -1 sample-files`
def showVisibleInSampleFiles(directory):
listOfFiles = os.listdir(directory)

for eachFile in listOfFiles:
if eachFile[0] != ".":
print(eachFile)

# `ls -1 -a sample-files`
def showAllInSampleFiles(directory):
listOfFiles = os.listdir(directory)

for eachFile in listOfFiles:
print(eachFile)

argv = sys.argv[1:]

show_all = "-a" in argv

directories = [arg for arg in argv if arg != "-a"]
if not directories:
directories = ["."]

for directory in directories:
if show_all:
showAllInSampleFiles(directory)
else:
showVisibleInSampleFiles(directory)
26 changes: 26 additions & 0 deletions implement-shell-tools/wc/wc.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import sys
from pathlib import Path

def countAll(listOfFiles, flag=None):
for file in listOfFiles:
content = Path(file).read_text(encoding="utf-8")
if flag == "-l":
print(f"{len(content.splitlines())} {file}")
elif flag == "-w":
print(f"{len(content.split())} {file}")
elif flag == "-c":
print(f"{len(content)} {file}")
else:
print(f"{len(content.splitlines())} {len(content.split())} {len(content)} {file}")

argv = sys.argv[1:]
files = [arg for arg in argv if not arg.startswith("-")]

if "-l" in argv:
countAll(files, "-l")
elif "-w" in argv:
countAll(files, "-w")
elif "-c" in argv:
countAll(files, "-c")
else:
countAll(files)
20 changes: 0 additions & 20 deletions number-systems/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,61 +5,41 @@ Do not convert any binary numbers to decimal when solving a question unless the
The goal of these exercises is for you to gain an intuition for binary numbers. Using tools to solve the problems defeats the point.

Convert the decimal number 14 to binary.
Answer:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file is not part of this sprint. You need to do a git restore of the file to get it back to the original state


Convert the binary number 101101 to decimal:
Answer:

Which is larger: 1000 or 0111?
Answer:

Which is larger: 00100 or 01011?
Answer:

What is 10101 + 01010?
Answer:

What is 10001 + 10001?
Answer:

What's the largest number you can store with 4 bits, if you want to be able to represent the number 0?
Answer:

How many bits would you need in order to store the numbers between 0 and 255 inclusive?
Answer:

How many bits would you need in order to store the numbers between 0 and 3 inclusive?
Answer:

How many bits would you need in order to store the numbers between 0 and 1000 inclusive?
Answer:

How can you test if a binary number is a power of two (e.g. 1, 2, 4, 8, 16, ...)?
Answer:

Convert the decimal number 14 to hex.
Answer:

Convert the decimal number 386 to hex.
Answer:

Convert the hex number 386 to decimal.
Answer:

Convert the hex number B to decimal.
Answer:

If reading the byte 0x21 as a number, what decimal number would it mean?
Answer:

If reading the byte 0x21 as an ASCII character, what character would it mean?
Answer:

If reading the byte 0x21 as a greyscale colour, as described in "Approaches for Representing Colors and Images", what colour would it mean?
Answer:

If reading the bytes 0xAA00FF as an RGB colour, as described in "Approaches for Representing Colors and Images", what colour would it mean?
Answer:

If reading the bytes 0xAA00FF as a sequence of three one-byte decimal numbers, what decimal numbers would they be?
Answer:
Loading