From 47f19a815f762884a758c1e89c60af948bf3dd23 Mon Sep 17 00:00:00 2001 From: DeepShikha11 <58968093+DeepShikha11@users.noreply.github.com> Date: Thu, 1 Oct 2020 15:49:50 +0530 Subject: [PATCH] Improved identifier --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ed07a03..0761e9f 100644 --- a/README.md +++ b/README.md @@ -31,12 +31,12 @@ Task 1 : Introduction to C++ ``` n=0; -insert_sort(arr,n,4); +insert_and_sort(arr,n,4); view_data_1(arr,n); // should print [4] -insert_sort(arr,n,2); -insert_sort(arr,n,6); +insert_and_sort(arr,n,2); +insert_and_sort(arr,n,6); view_data_1(arr,n); // should print [2, 4, 6] ```