From 2f7f49f4951b8408a75d69d328a218653ab469ac Mon Sep 17 00:00:00 2001 From: Hamza elkhatri <40549481+Hamzaelkhatri@users.noreply.github.com> Date: Tue, 21 Jun 2022 09:32:11 +0100 Subject: [PATCH] Update README.md --- subjects/binaryaddition/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/subjects/binaryaddition/README.md b/subjects/binaryaddition/README.md index 3da71d8b..7cf8516b 100644 --- a/subjects/binaryaddition/README.md +++ b/subjects/binaryaddition/README.md @@ -15,6 +15,8 @@ func BinaryAddition(a int, b int) []int { ### Usage +Here is a possible program to test your function: + ```go package main @@ -41,4 +43,4 @@ $ go run . [0 1 1] [1 0 0] [1 0 1] -``` \ No newline at end of file +```