From 44f2090a1a1f0428f3e7d9ec99c4e62df017ceac Mon Sep 17 00:00:00 2001 From: Oso Oluwafemi Date: Wed, 5 Jul 2017 12:13:45 +0100 Subject: [PATCH] Add files via upload --- BigArith - Initialization.html | 117 +++++++++++++++++++++++++++++++++ BigArith - abs.html | 31 +++++++++ BigArith - add.html | 58 ++++++++++++++++ BigArith - ceil.html | 34 ++++++++++ BigArith - compare.html | 30 +++++++++ BigArith - compareAbs.html | 27 ++++++++ BigArith - divide.html | 78 ++++++++++++++++++++++ BigArith - floor.html | 33 ++++++++++ BigArith - isEven.html | 21 ++++++ BigArith - isNegative.html | 26 ++++++++ BigArith - isOdd.html | 21 ++++++ BigArith - isPositive.html | 35 ++++++++++ BigArith - max.html | 36 ++++++++++ BigArith - min.html | 32 +++++++++ BigArith - modulus.html | 45 +++++++++++++ BigArith - multiply.html | 78 ++++++++++++++++++++++ BigArith - negate.html | 37 +++++++++++ BigArith - random.html | 12 ++++ BigArith - randomInt.html | 16 +++++ BigArith - round.html | 33 ++++++++++ BigArith - square.html | 28 ++++++++ BigArith - squareRoot.html | 34 ++++++++++ BigArith - subtract.html | 67 +++++++++++++++++++ BigArith - toFixed.html | 75 +++++++++++++++++++++ BigArith - toString.html | 108 ++++++++++++++++++++++++++++++ BigArith - toWords.html | 72 ++++++++++++++++++++ BigArith - truncate.html | 35 ++++++++++ BigArith - valueOf.html | 103 +++++++++++++++++++++++++++++ 28 files changed, 1322 insertions(+) create mode 100644 BigArith - Initialization.html create mode 100644 BigArith - abs.html create mode 100644 BigArith - add.html create mode 100644 BigArith - ceil.html create mode 100644 BigArith - compare.html create mode 100644 BigArith - compareAbs.html create mode 100644 BigArith - divide.html create mode 100644 BigArith - floor.html create mode 100644 BigArith - isEven.html create mode 100644 BigArith - isNegative.html create mode 100644 BigArith - isOdd.html create mode 100644 BigArith - isPositive.html create mode 100644 BigArith - max.html create mode 100644 BigArith - min.html create mode 100644 BigArith - modulus.html create mode 100644 BigArith - multiply.html create mode 100644 BigArith - negate.html create mode 100644 BigArith - random.html create mode 100644 BigArith - randomInt.html create mode 100644 BigArith - round.html create mode 100644 BigArith - square.html create mode 100644 BigArith - squareRoot.html create mode 100644 BigArith - subtract.html create mode 100644 BigArith - toFixed.html create mode 100644 BigArith - toString.html create mode 100644 BigArith - toWords.html create mode 100644 BigArith - truncate.html create mode 100644 BigArith - valueOf.html diff --git a/BigArith - Initialization.html b/BigArith - Initialization.html new file mode 100644 index 0000000..1462930 --- /dev/null +++ b/BigArith - Initialization.html @@ -0,0 +1,117 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - abs.html b/BigArith - abs.html new file mode 100644 index 0000000..ac67867 --- /dev/null +++ b/BigArith - abs.html @@ -0,0 +1,31 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - add.html b/BigArith - add.html new file mode 100644 index 0000000..27f91a9 --- /dev/null +++ b/BigArith - add.html @@ -0,0 +1,58 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - ceil.html b/BigArith - ceil.html new file mode 100644 index 0000000..fcac0ac --- /dev/null +++ b/BigArith - ceil.html @@ -0,0 +1,34 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - compare.html b/BigArith - compare.html new file mode 100644 index 0000000..f2516ae --- /dev/null +++ b/BigArith - compare.html @@ -0,0 +1,30 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - compareAbs.html b/BigArith - compareAbs.html new file mode 100644 index 0000000..1a6d818 --- /dev/null +++ b/BigArith - compareAbs.html @@ -0,0 +1,27 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - divide.html b/BigArith - divide.html new file mode 100644 index 0000000..90d8ebc --- /dev/null +++ b/BigArith - divide.html @@ -0,0 +1,78 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - floor.html b/BigArith - floor.html new file mode 100644 index 0000000..23222e2 --- /dev/null +++ b/BigArith - floor.html @@ -0,0 +1,33 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - isEven.html b/BigArith - isEven.html new file mode 100644 index 0000000..4a2bdbc --- /dev/null +++ b/BigArith - isEven.html @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - isNegative.html b/BigArith - isNegative.html new file mode 100644 index 0000000..0caa4fd --- /dev/null +++ b/BigArith - isNegative.html @@ -0,0 +1,26 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - isOdd.html b/BigArith - isOdd.html new file mode 100644 index 0000000..bc5ea3d --- /dev/null +++ b/BigArith - isOdd.html @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - isPositive.html b/BigArith - isPositive.html new file mode 100644 index 0000000..ae30301 --- /dev/null +++ b/BigArith - isPositive.html @@ -0,0 +1,35 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - max.html b/BigArith - max.html new file mode 100644 index 0000000..3232b4a --- /dev/null +++ b/BigArith - max.html @@ -0,0 +1,36 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - min.html b/BigArith - min.html new file mode 100644 index 0000000..faf4e82 --- /dev/null +++ b/BigArith - min.html @@ -0,0 +1,32 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - modulus.html b/BigArith - modulus.html new file mode 100644 index 0000000..bbc9104 --- /dev/null +++ b/BigArith - modulus.html @@ -0,0 +1,45 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - multiply.html b/BigArith - multiply.html new file mode 100644 index 0000000..1e9e621 --- /dev/null +++ b/BigArith - multiply.html @@ -0,0 +1,78 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - negate.html b/BigArith - negate.html new file mode 100644 index 0000000..f6a1c68 --- /dev/null +++ b/BigArith - negate.html @@ -0,0 +1,37 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - random.html b/BigArith - random.html new file mode 100644 index 0000000..275d648 --- /dev/null +++ b/BigArith - random.html @@ -0,0 +1,12 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - randomInt.html b/BigArith - randomInt.html new file mode 100644 index 0000000..165a084 --- /dev/null +++ b/BigArith - randomInt.html @@ -0,0 +1,16 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - round.html b/BigArith - round.html new file mode 100644 index 0000000..f079e3b --- /dev/null +++ b/BigArith - round.html @@ -0,0 +1,33 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - square.html b/BigArith - square.html new file mode 100644 index 0000000..83daa33 --- /dev/null +++ b/BigArith - square.html @@ -0,0 +1,28 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - squareRoot.html b/BigArith - squareRoot.html new file mode 100644 index 0000000..6d1c0cb --- /dev/null +++ b/BigArith - squareRoot.html @@ -0,0 +1,34 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - subtract.html b/BigArith - subtract.html new file mode 100644 index 0000000..6bc0815 --- /dev/null +++ b/BigArith - subtract.html @@ -0,0 +1,67 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - toFixed.html b/BigArith - toFixed.html new file mode 100644 index 0000000..fe5ffe7 --- /dev/null +++ b/BigArith - toFixed.html @@ -0,0 +1,75 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - toString.html b/BigArith - toString.html new file mode 100644 index 0000000..5b4e67f --- /dev/null +++ b/BigArith - toString.html @@ -0,0 +1,108 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - toWords.html b/BigArith - toWords.html new file mode 100644 index 0000000..61027a7 --- /dev/null +++ b/BigArith - toWords.html @@ -0,0 +1,72 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - truncate.html b/BigArith - truncate.html new file mode 100644 index 0000000..119dc74 --- /dev/null +++ b/BigArith - truncate.html @@ -0,0 +1,35 @@ + + + + + + + + \ No newline at end of file diff --git a/BigArith - valueOf.html b/BigArith - valueOf.html new file mode 100644 index 0000000..e606a3f --- /dev/null +++ b/BigArith - valueOf.html @@ -0,0 +1,103 @@ + + + + + + + + \ No newline at end of file