-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2222be5
commit 14530b1
Showing
18 changed files
with
270 additions
and
277 deletions.
There are no files selected for viewing
This file contains 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 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,23 +1,23 @@ | ||
{ | ||
"authors": [ | ||
"kapitaali" | ||
"authors": [ | ||
"kapitaali" | ||
], | ||
"files": { | ||
"solution": [ | ||
"src/acronym.cob" | ||
], | ||
"files": { | ||
"solution": [ | ||
"src/acronym.cob" | ||
], | ||
"test": [ | ||
"tst/acronym/acronym.cut" | ||
], | ||
"example": [ | ||
".meta/proof.ci.cob" | ||
], | ||
"invalidator": [ | ||
"test.sh", | ||
"test.ps1" | ||
] | ||
}, | ||
"blurb": "Convert a phrase to its acronym.", | ||
"source": "Julien Vanier", | ||
"source_url": "https://github.com/monkbroc" | ||
} | ||
"test": [ | ||
"tst/acronym/acronym.cut" | ||
], | ||
"example": [ | ||
".meta/proof.ci.cob" | ||
], | ||
"invalidator": [ | ||
"test.sh", | ||
"test.ps1" | ||
] | ||
}, | ||
"blurb": "Convert a phrase to its acronym.", | ||
"source": "Julien Vanier", | ||
"source_url": "https://github.com/monkbroc" | ||
} |
This file contains 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,21 +1,21 @@ | ||
{ | ||
"authors": [ | ||
"kapitaali" | ||
"authors": [ | ||
"kapitaali" | ||
], | ||
"files": { | ||
"solution": [ | ||
"src/all-your-base.cob" | ||
], | ||
"files": { | ||
"solution": [ | ||
"src/all-your-base.cob" | ||
], | ||
"test": [ | ||
"tst/all-your-base/all-your-base.cut" | ||
], | ||
"example": [ | ||
".meta/proof.ci.cob" | ||
], | ||
"invalidator": [ | ||
"test.sh", | ||
"test.ps1" | ||
] | ||
}, | ||
"blurb": "Convert a number, represented as a sequence of digits in one base, to any other base." | ||
} | ||
"test": [ | ||
"tst/all-your-base/all-your-base.cut" | ||
], | ||
"example": [ | ||
".meta/proof.ci.cob" | ||
], | ||
"invalidator": [ | ||
"test.sh", | ||
"test.ps1" | ||
] | ||
}, | ||
"blurb": "Convert a number, represented as a sequence of digits in one base, to any other base." | ||
} |
This file contains 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 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,23 +1,23 @@ | ||
{ | ||
"authors": [ | ||
"kapitaali" | ||
"authors": [ | ||
"kapitaali" | ||
], | ||
"files": { | ||
"solution": [ | ||
"src/atbash-cipher.cob" | ||
], | ||
"files": { | ||
"solution": [ | ||
"src/atbash-cipher.cob" | ||
], | ||
"test": [ | ||
"tst/atbash-cipher/atbash-cipher.cut" | ||
], | ||
"example": [ | ||
".meta/proof.ci.cob" | ||
], | ||
"invalidator": [ | ||
"test.sh", | ||
"test.ps1" | ||
] | ||
}, | ||
"blurb": "Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East.", | ||
"source": "Wikipedia", | ||
"source_url": "https://en.wikipedia.org/wiki/Atbash" | ||
} | ||
"test": [ | ||
"tst/atbash-cipher/atbash-cipher.cut" | ||
], | ||
"example": [ | ||
".meta/proof.ci.cob" | ||
], | ||
"invalidator": [ | ||
"test.sh", | ||
"test.ps1" | ||
] | ||
}, | ||
"blurb": "Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East.", | ||
"source": "Wikipedia", | ||
"source_url": "https://en.wikipedia.org/wiki/Atbash" | ||
} |
This file contains 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,23 +1,23 @@ | ||
{ | ||
"authors": [ | ||
"kapitaali" | ||
"authors": [ | ||
"kapitaali" | ||
], | ||
"files": { | ||
"solution": [ | ||
"src/binary.cob" | ||
], | ||
"files": { | ||
"solution": [ | ||
"src/binary.cob" | ||
], | ||
"test": [ | ||
"tst/binary/binary.cut" | ||
], | ||
"example": [ | ||
".meta/proof.ci.cob" | ||
], | ||
"invalidator": [ | ||
"test.sh", | ||
"test.ps1" | ||
] | ||
}, | ||
"blurb": "Convert a binary number, represented as a string (e.g. '101010'), to its decimal equivalent using first principles.", | ||
"source": "All of Computer Science", | ||
"source_url": "https://www.wolframalpha.com/examples/mathematics/numbers/base-conversions" | ||
} | ||
"test": [ | ||
"tst/binary/binary.cut" | ||
], | ||
"example": [ | ||
".meta/proof.ci.cob" | ||
], | ||
"invalidator": [ | ||
"test.sh", | ||
"test.ps1" | ||
] | ||
}, | ||
"blurb": "Convert a binary number, represented as a string (e.g. '101010'), to its decimal equivalent using first principles.", | ||
"source": "All of Computer Science", | ||
"source_url": "https://www.wolframalpha.com/examples/mathematics/numbers/base-conversions" | ||
} |
This file contains 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,23 +1,23 @@ | ||
{ | ||
"authors": [ | ||
"kapitaali" | ||
"authors": [ | ||
"kapitaali" | ||
], | ||
"files": { | ||
"solution": [ | ||
"src/circular-buffer.cob" | ||
], | ||
"files": { | ||
"solution": [ | ||
"src/circular-buffer.cob" | ||
], | ||
"test": [ | ||
"tst/circular-buffer/circular-buffer.cut" | ||
], | ||
"example": [ | ||
".meta/proof.ci.cob" | ||
], | ||
"invalidator": [ | ||
"test.sh", | ||
"test.ps1" | ||
] | ||
}, | ||
"blurb": "A circular buffer, cyclic buffer or ring buffer is a data structure that uses a single, fixed-size buffer as if it were connected end-to-end.", | ||
"source": "Wikipedia", | ||
"source_url": "https://en.wikipedia.org/wiki/Circular_buffer" | ||
} | ||
"test": [ | ||
"tst/circular-buffer/circular-buffer.cut" | ||
], | ||
"example": [ | ||
".meta/proof.ci.cob" | ||
], | ||
"invalidator": [ | ||
"test.sh", | ||
"test.ps1" | ||
] | ||
}, | ||
"blurb": "A circular buffer, cyclic buffer or ring buffer is a data structure that uses a single, fixed-size buffer as if it were connected end-to-end.", | ||
"source": "Wikipedia", | ||
"source_url": "https://en.wikipedia.org/wiki/Circular_buffer" | ||
} |
This file contains 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 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,23 +1,23 @@ | ||
{ | ||
"authors": [ | ||
"kapitaali" | ||
"authors": [ | ||
"kapitaali" | ||
], | ||
"files": { | ||
"solution": [ | ||
"src/complex-numbers.cob" | ||
], | ||
"files": { | ||
"solution": [ | ||
"src/complex-numbers.cob" | ||
], | ||
"test": [ | ||
"tst/complex-numbers/complex-numbers.cut" | ||
], | ||
"example": [ | ||
".meta/proof.ci.cob" | ||
], | ||
"invalidator": [ | ||
"test.sh", | ||
"test.ps1" | ||
] | ||
}, | ||
"blurb": "A complex number is a number in the form a + b * i where a and b are real and i satisfies i^2 = -1.", | ||
"source": "Wikipedia", | ||
"source_url": "https://en.wikipedia.org/wiki/Complex_number" | ||
} | ||
"test": [ | ||
"tst/complex-numbers/complex-numbers.cut" | ||
], | ||
"example": [ | ||
".meta/proof.ci.cob" | ||
], | ||
"invalidator": [ | ||
"test.sh", | ||
"test.ps1" | ||
] | ||
}, | ||
"blurb": "A complex number is a number in the form a + b * i where a and b are real and i satisfies i^2 = -1.", | ||
"source": "Wikipedia", | ||
"source_url": "https://en.wikipedia.org/wiki/Complex_number" | ||
} |
This file contains 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,7 @@ | ||
{ | ||
"authors": ["glennj"], | ||
"authors": [ | ||
"glennj" | ||
], | ||
"files": { | ||
"solution": [ | ||
"src/high-scores.cob" | ||
|
Oops, something went wrong.