From 7e18a5b7b098b8448f40e2694a60bfbda53cfd3b Mon Sep 17 00:00:00 2001 From: Paulo Custodio Date: Tue, 6 Jul 2021 21:42:21 +0100 Subject: Remove unnecessary trim(str(n)) --- challenge-102/paulo-custodio/basic/ch-1.bas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'challenge-102') diff --git a/challenge-102/paulo-custodio/basic/ch-1.bas b/challenge-102/paulo-custodio/basic/ch-1.bas index 161682f7a8..3f13b6226d 100644 --- a/challenge-102/paulo-custodio/basic/ch-1.bas +++ b/challenge-102/paulo-custodio/basic/ch-1.bas @@ -42,7 +42,7 @@ sub print_rare_numbers(n as Integer) if is_perfect_square(r+r1) then if r>=r1 then if is_perfect_square(r-r1) then - print trim(str(r)) + print r end if end if end if -- cgit