forked from JuliaLang/julia
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request JuliaLang#24 from andrej-makarov-skrt/ex-trinary
Add exercise: trinary
- Loading branch information
Showing
4 changed files
with
64 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
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,4 @@ | ||
function trinary_to_decimal(str::AbstractString) | ||
typeof(match(r"^[0-2]+$", str)) == Void && return 0 | ||
mapreduce(i->(i[2]-'0')*3^i[1], +, zip(0:length(str), reverse(str))) | ||
end |
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,47 @@ | ||
using Base.Test | ||
|
||
include("trinary.jl") | ||
|
||
@testset "trinary 1 is decimal 1" begin | ||
@test trinary_to_decimal("1") == 1 | ||
end | ||
|
||
@testset "trinary 2 is decimal 2" begin | ||
@test trinary_to_decimal("2") == 2 | ||
end | ||
|
||
@testset "trinary 10 is decimal 3" begin | ||
@test trinary_to_decimal("10") == 3 | ||
end | ||
|
||
@testset "trinary 11 is decimal 4" begin | ||
@test trinary_to_decimal("11") == 4 | ||
end | ||
|
||
@testset "trinary 100 is decimal 9" begin | ||
@test trinary_to_decimal("100") == 9 | ||
end | ||
|
||
@testset "trinary 112 is decimal 14" begin | ||
@test trinary_to_decimal("112") == 14 | ||
end | ||
|
||
@testset "trinary 222 is decimal 26" begin | ||
@test trinary_to_decimal("222") == 26 | ||
end | ||
|
||
@testset "trinary 1122000120 is decimal 32091" begin | ||
@test trinary_to_decimal("1122000120") == 32091 | ||
end | ||
|
||
@testset "invalid trinary digits returns 0" begin | ||
@test trinary_to_decimal("1234") == 0 | ||
end | ||
|
||
@testset "invalid word as input returns 0" begin | ||
@test trinary_to_decimal("carrot") == 0 | ||
end | ||
|
||
@testset "invalid numbers with letters as input returns 0" begin | ||
@test trinary_to_decimal("0a1b2c") == 0 | ||
end |
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,3 @@ | ||
function trinary_to_decimal(str::AbstractString) | ||
|
||
end |