From 7f7f9261e8bb44523bbed6831410d9a4604b96e3 Mon Sep 17 00:00:00 2001 From: zainabdnaya Date: Wed, 3 Aug 2022 01:02:14 +0100 Subject: [PATCH] Not decimal solutions and test --- subjects/not_decimal/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/not_decimal/README.md b/subjects/not_decimal/README.md index b6bb78898..f36e1f12b 100644 --- a/subjects/not_decimal/README.md +++ b/subjects/not_decimal/README.md @@ -12,7 +12,7 @@ Write a function called `Not_decimal()` that takes a string in forme of a float ### Expected function ```go -func Not_decimal(dec string) int { +func Not_decimal(dec string) string { } ``` ### Usage