Skip to content

Commit

Permalink
docs(readme):piscine removal
Browse files Browse the repository at this point in the history
  • Loading branch information
MSilva95 committed Jul 4, 2023
1 parent 59023c0 commit bfa8efe
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions subjects/notdecimal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### Instructions

Write a function called `NotDecimal()` that takes as an argument a `string` in forme of a float number with the decimal point and returns a string converted to an `int` without the decimal point (you will have to multiply it by 10^n to remove the `.`).
Write a function called `NotDecimal()` that takes as an argument a `string` in form of a float number with the decimal point and returns a string converted to `int` without the decimal point (you will have to multiply it by 10^n to remove the `.`).

- If the number doesn't have a decimal point or there is only a zero after the `.` return the number followed by a newline `\n`.
- If the argument is empty return a newline `\n`.
Expand All @@ -15,6 +15,7 @@ func NotDecimal(dec string) string {

}
```

### Usage

Here is a possible program to test your function:
Expand All @@ -24,20 +25,20 @@ package main

import (
"fmt"
"piscine"
)

func main() {
fmt.Print(piscine.NotDecimal("0.1"))
fmt.Print(piscine.NotDecimal("174.2"))
fmt.Print(piscine.NotDecimal("0.1255"))
fmt.Print(piscine.NotDecimal("1.20525856"))
fmt.Print(piscine.NotDecimal("-0.0f00d00"))
fmt.Print(piscine.NotDecimal(""))
fmt.Print(piscine.NotDecimal("-19.525856"))
fmt.Print(piscine.NotDecimal("1952"))
fmt.Print(NotDecimal("0.1"))
fmt.Print(NotDecimal("174.2"))
fmt.Print(NotDecimal("0.1255"))
fmt.Print(NotDecimal("1.20525856"))
fmt.Print(NotDecimal("-0.0f00d00"))
fmt.Print(NotDecimal(""))
fmt.Print(NotDecimal("-19.525856"))
fmt.Print(NotDecimal("1952"))
}
```

And its output:

```console
Expand Down

0 comments on commit bfa8efe

Please sign in to comment.