-
-
Notifications
You must be signed in to change notification settings - Fork 89
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
Showing
9 changed files
with
157 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,13 @@ | ||
# Instructions | ||
|
||
Given a natural radicand, return its square root. | ||
|
||
Note that the term "radicand" refers to the number for which the root is to be determined. | ||
That is, it is the number under the root symbol. | ||
|
||
Check out the Wikipedia pages on [square root][square-root] and [methods of computing square roots][computing-square-roots]. | ||
|
||
Recall also that natural numbers are positive real whole numbers (i.e. 1, 2, 3 and up). | ||
|
||
[square-root]: https://en.wikipedia.org/wiki/Square_root | ||
[computing-square-roots]: https://en.wikipedia.org/wiki/Methods_of_computing_square_roots |
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,19 @@ | ||
{ | ||
"authors": [ | ||
"BNAndras" | ||
], | ||
"files": { | ||
"solution": [ | ||
"src/square_root.erl" | ||
], | ||
"test": [ | ||
"test/square_root_tests.erl" | ||
], | ||
"example": [ | ||
".meta/example.erl" | ||
] | ||
}, | ||
"blurb": "Given a natural radicand, return its square root.", | ||
"source": "wolf99", | ||
"source_url": "https://github.com/exercism/problem-specifications/pull/1582" | ||
} |
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,13 @@ | ||
-module(example). | ||
|
||
-export([square_root/1]). | ||
|
||
|
||
square_root(1) -> | ||
1; | ||
square_root(Radicand) -> | ||
square_root(Radicand, Radicand div 2). | ||
square_root(Radicand, Guess) when (Guess * Guess) =:= Radicand -> | ||
Guess; | ||
square_root(Radicand, Guess) -> | ||
square_root(Radicand, (Guess + Radicand div Guess) div 2). |
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,28 @@ | ||
# This is an auto-generated file. | ||
# | ||
# Regenerating this file via `configlet sync` will: | ||
# - Recreate every `description` key/value pair | ||
# - Recreate every `reimplements` key/value pair, where they exist in problem-specifications | ||
# - Remove any `include = true` key/value pair (an omitted `include` key implies inclusion) | ||
# - Preserve any other key/value pair | ||
# | ||
# As user-added comments (using the # character) will be removed when this file | ||
# is regenerated, comments can be added via a `comment` key. | ||
|
||
[9b748478-7b0a-490c-b87a-609dacf631fd] | ||
description = "root of 1" | ||
|
||
[7d3aa9ba-9ac6-4e93-a18b-2e8b477139bb] | ||
description = "root of 4" | ||
|
||
[6624aabf-3659-4ae0-a1c8-25ae7f33c6ef] | ||
description = "root of 25" | ||
|
||
[93beac69-265e-4429-abb1-94506b431f81] | ||
description = "root of 81" | ||
|
||
[fbddfeda-8c4f-4bc4-87ca-6991af35360e] | ||
description = "root of 196" | ||
|
||
[c03d0532-8368-4734-a8e0-f96a9eb7fc1d] | ||
description = "root of 65025" |
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,30 @@ | ||
%% Erlang compiler options | ||
{erl_opts, [debug_info, warnings_as_errors]}. | ||
|
||
{deps, [{erl_exercism, "0.1.2"}]}. | ||
|
||
{dialyzer, [ | ||
{warnings, [underspecs, no_return]}, | ||
{get_warnings, true}, | ||
{plt_apps, top_level_deps}, % top_level_deps | all_deps | ||
{plt_extra_apps, []}, | ||
{plt_location, local}, % local | "/my/file/name" | ||
{plt_prefix, "rebar3"}, | ||
{base_plt_apps, [stdlib, kernel, crypto]}, | ||
{base_plt_location, global}, % global | "/my/file/name" | ||
{base_plt_prefix, "rebar3"} | ||
]}. | ||
|
||
%% eunit:test(Tests) | ||
{eunit_tests, []}. | ||
%% Options for eunit:test(Tests, Opts) | ||
{eunit_opts, [verbose]}. | ||
|
||
%% == xref == | ||
|
||
{xref_warnings, true}. | ||
|
||
%% xref checks to run | ||
{xref_checks, [undefined_function_calls, undefined_functions, | ||
locals_not_used, exports_not_used, | ||
deprecated_function_calls, deprecated_functions]}. |
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,9 @@ | ||
{application, square_root, | ||
[{description, "exercism.org - square root"}, | ||
{vsn, "0.0.1"}, | ||
{modules, []}, | ||
{registered, []}, | ||
{applications, [kernel, | ||
stdlib]}, | ||
{env, []} | ||
]}. |
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,6 @@ | ||
-module(square_root). | ||
|
||
-export([square_root/1]). | ||
|
||
|
||
square(_Radicand) -> undefined. |
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,31 @@ | ||
-module(square_root_tests). | ||
|
||
-include_lib("erl_exercism/include/exercism.hrl"). | ||
-include_lib("eunit/include/eunit.hrl"). | ||
|
||
|
||
|
||
|
||
'1_root_of_1_test_'() -> | ||
{"root of l", | ||
?_assertMatch(1, square_root:square_root(1))}. | ||
|
||
'2_root_of_4_test_'() -> | ||
{"root of 4", | ||
?_assertMatch(2, square_root:square_root(4))}. | ||
|
||
'3_root_of_25_test_'() -> | ||
{"root of 25", | ||
?_assertMatch(5, square_root:square_root(25))}. | ||
|
||
'4_root_of_81_test_'() -> | ||
{"root of 81", | ||
?_assertMatch(9, square_root:square_root(81))}. | ||
|
||
'5_root_of_196_test_'() -> | ||
{"root of 196", | ||
?_assertMatch(14, square_root:square_root(196))}. | ||
|
||
'6_root_of_65025_test_'() -> | ||
{"root of 65025", | ||
?_assertMatch(255, square_root:square_root(65025))}. |