mirror of https://github.com/coolaj86/fizzbuzz.git
modified readme for stack implementation
This commit is contained in:
parent
630b6ffdf5
commit
cb4b8e64c4
|
@ -23,9 +23,17 @@ The storage strategy may
|
||||||
|
|
||||||
The implementation must pass the following test suite `queue-test.c`
|
The implementation must pass the following test suite `queue-test.c`
|
||||||
|
|
||||||
tar xf stack.tar.gz ~/
|
tar xf stack.tar.gz -C ~/
|
||||||
cd ~/stack
|
cd ~/stack
|
||||||
mkdir build
|
mkdir -p build
|
||||||
cd build
|
cd build
|
||||||
cmake ../
|
cmake ../
|
||||||
|
make
|
||||||
./stack-test
|
./stack-test
|
||||||
|
|
||||||
|
Prep
|
||||||
|
===
|
||||||
|
|
||||||
|
rm -rf stack/stack.c
|
||||||
|
touch stack/stack.c
|
||||||
|
tar czf stack.tar.gz stack/
|
||||||
|
|
Loading…
Reference in New Issue