Skip to content

Latest commit

 

History

History
37 lines (21 loc) · 999 Bytes

README.md

File metadata and controls

37 lines (21 loc) · 999 Bytes

Square Root

Welcome to Square Root on Exercism's WebAssembly Track. If you need help running the tests or submitting your code, check out HELP.md.

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 and methods of computing square roots.

Recall also that natural numbers are positive real whole numbers (i.e. 1, 2, 3 and up).

Reserved Addresses

No linear memory is required for this exercise.

Source

Created by

  • @keiravillekode

Based on

wolf99 - exercism/problem-specifications#1582

My Solution