From 3f9344b2a857bcb8dadd1bf60e4dbf16bb28f551 Mon Sep 17 00:00:00 2001 From: lee Date: Thu, 12 Mar 2020 22:27:46 +0000 Subject: [PATCH 1/4] halfcontest --- subjects/halfcontest.en.md | 48 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 subjects/halfcontest.en.md diff --git a/subjects/halfcontest.en.md b/subjects/halfcontest.en.md new file mode 100644 index 000000000..f7a77f9af --- /dev/null +++ b/subjects/halfcontest.en.md @@ -0,0 +1,48 @@ +## halfcontest + +### Instructions + +It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). +Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32. + +The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham. + +You are given 4 non-negative integers 'h1', 'm1', 'h2', and 'm2'. The contest starts at h1:m1 minutes and finishes at h2:m2 minutes. Your task is to find out when half of the contest will be over and return it in the format decribed in the example. +Contest cannot finish before it was started. + +### Expected function + +```go +func Halfcontest(h1, m1, h2, m2 int) int { + +} +``` + +### Usage + +Here is a possible program to test your function : + +```go +package main + +import ( + "fmt" +) + +func main() { + fmt.Println(Halfcontest(1, 15, 3, 33)) + fmt.Println(Halfcontest(10, 3, 11, 55)) + fmt.Println(Halfcontest(9, 2, 11, 3)) +} +``` + +And its output : + +```console +student@ubuntu:~/[[ROOT]]/test$ go build +student@ubuntu:~/[[ROOT]]/test$ ./test +224 +1059 +1002 +student@ubuntu:~/[[ROOT]]/test$ +``` From 7c8d84a989d357bafbae7762b4306f7ca58cfe4d Mon Sep 17 00:00:00 2001 From: MSilva95 Date: Thu, 12 Mar 2020 22:52:41 +0000 Subject: [PATCH 2/4] subject for exercise game23 --- subjects/game23.en.md | 47 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 subjects/game23.en.md diff --git a/subjects/game23.en.md b/subjects/game23.en.md new file mode 100644 index 000000000..79f6019b5 --- /dev/null +++ b/subjects/game23.en.md @@ -0,0 +1,47 @@ +## game23 + +### Instructions + +It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). +Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32. + +The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham. + +You are given 2 positive integers 'a' and 'b'. Your task is to perform some operations in 'a' so that it becomes 'b'. You can only multiply 'a' by 2, and multiply 'a' by 3. If you can get to 'b', return minimal number of operations required to get from 'a' to 'b'. If you cannot get to 'b' return -1. + +### Expected function + +```go +func Game23(a, b int) int { + +} +``` + +### Usage + +Here is a possible program to test your function : + +```go +package main + +import ( + "fmt" +) + +func main() { + fmt.Println(Game23(1, 3)) + fmt.Println(Game23(2, 3)) + fmt.Println(Game23(10, 60)) +} +``` + +And its output : + +```console +student@ubuntu:~/[[ROOT]]/test$ go build +student@ubuntu:~/[[ROOT]]/test$ ./test +1 +-1 +2 +student@ubuntu:~/[[ROOT]]/test$ +``` From 8872b4b6bcf59526072c458cbc6f535dd7e23867 Mon Sep 17 00:00:00 2001 From: OGordoo Date: Thu, 12 Mar 2020 22:59:32 +0000 Subject: [PATCH 3/4] reachable_number subject --- subjects/reachable_number.en.md | 42 +++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 subjects/reachable_number.en.md diff --git a/subjects/reachable_number.en.md b/subjects/reachable_number.en.md new file mode 100644 index 000000000..e9d2dd196 --- /dev/null +++ b/subjects/reachable_number.en.md @@ -0,0 +1,42 @@ +## reachable_number + +### Instructions + +Let us define a function f(x) by the following: first we add 1 to x, and then while the last digit of the number equals 0, we shall be deleting 0. Let us call 'y' reachable if we can apply **f** to **x** (zero or more times), and get **y**. 102 is reachable from 10098: f(f(f(10098))) = f(f(10099)) = f(101) = f(102). Any number is reachable from itself. You are given a positive number **n**, count how many integers are reachable from **n**. + +### Expected function + +```go +func Reachable_number(n int) int { + +} +``` + +### Usage + +Here is a possible program to test your function : + +```go +package main + +import ( + "fmt" +) + +func main() { + fmt.Println(Reachable_number(1)) + fmt.Println(Reachable_number(10)) + fmt.Println(Reachable_number(1001)) +} +``` + +And its output : + +```console +student@ubuntu:~/[[ROOT]]/test$ go build +student@ubuntu:~/[[ROOT]]/test$ ./test +9 +19 +36 +student@ubuntu:~/[[ROOT]]/test$ +``` \ No newline at end of file From 04d374b60d46397f4dcab6af162291f5152f58fb Mon Sep 17 00:00:00 2001 From: LEEDASILVA <39002521+LEEDASILVA@users.noreply.github.com> Date: Thu, 12 Mar 2020 23:11:09 +0000 Subject: [PATCH 4/4] Update reachable_number.en.md --- subjects/reachable_number.en.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/subjects/reachable_number.en.md b/subjects/reachable_number.en.md index e9d2dd196..5de6f30c4 100644 --- a/subjects/reachable_number.en.md +++ b/subjects/reachable_number.en.md @@ -7,7 +7,7 @@ Let us define a function f(x) by the following: first we add 1 to x, and then wh ### Expected function ```go -func Reachable_number(n int) int { +func Reachablenumber(n int) int { } ``` @@ -24,9 +24,9 @@ import ( ) func main() { - fmt.Println(Reachable_number(1)) - fmt.Println(Reachable_number(10)) - fmt.Println(Reachable_number(1001)) + fmt.Println(Reachablenumber(1)) + fmt.Println(Reachablenumber(10)) + fmt.Println(Reachablenumber(1001)) } ``` @@ -39,4 +39,4 @@ student@ubuntu:~/[[ROOT]]/test$ ./test 19 36 student@ubuntu:~/[[ROOT]]/test$ -``` \ No newline at end of file +```