-
-
Notifications
You must be signed in to change notification settings - Fork 628
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* alphametics * atbash-cipher * binary-search * bowling
- Loading branch information
1 parent
041ac55
commit d4cc5f5
Showing
4 changed files
with
48 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// | ||
// This is only a SKELETON file for the 'Alphametics' exercise. It's been provided as a | ||
// convenience to get you started writing code faster. | ||
// | ||
|
||
export const solve = () => { | ||
throw new Error("Remove this statement and implement this function"); | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// | ||
// This is only a SKELETON file for the 'Atbash Cipher' exercise. It's been provided as a | ||
// convenience to get you started writing code faster. | ||
// | ||
|
||
export const encode = () => { | ||
throw new Error("Remove this statement and implement this function"); | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// | ||
// This is only a SKELETON file for the 'Binary Search' exercise. It's been provided as a | ||
// convenience to get you started writing code faster. | ||
// | ||
|
||
export class BinarySearch { | ||
constructor() { | ||
throw new Error("Remove this statement and implement this function"); | ||
} | ||
|
||
get array() { | ||
throw new Error("Remove this statement and implement this function"); | ||
} | ||
|
||
indexOf() { | ||
throw new Error("Remove this statement and implement this function"); | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// | ||
// This is only a SKELETON file for the 'Bowling' exercise. It's been provided as a | ||
// convenience to get you started writing code faster. | ||
// | ||
|
||
export class Bowling { | ||
roll() { | ||
throw new Error("Remove this statement and implement this function"); | ||
} | ||
|
||
score() { | ||
throw new Error("Remove this statement and implement this function"); | ||
} | ||
} |