diff --git a/.vs/2023-homework04-Seeratul/FileContentIndex/10b36a5a-747b-499a-b991-47e3157b0713.vsidx b/.vs/2023-homework04-Seeratul/FileContentIndex/10b36a5a-747b-499a-b991-47e3157b0713.vsidx deleted file mode 100644 index 9dca431..0000000 Binary files a/.vs/2023-homework04-Seeratul/FileContentIndex/10b36a5a-747b-499a-b991-47e3157b0713.vsidx and /dev/null differ diff --git a/.vs/2023-homework04-Seeratul/FileContentIndex/261bc8d1-585b-4127-8fdd-e71e9dca8693.vsidx b/.vs/2023-homework04-Seeratul/FileContentIndex/261bc8d1-585b-4127-8fdd-e71e9dca8693.vsidx new file mode 100644 index 0000000..410e555 Binary files /dev/null and b/.vs/2023-homework04-Seeratul/FileContentIndex/261bc8d1-585b-4127-8fdd-e71e9dca8693.vsidx differ diff --git a/.vs/2023-homework04-Seeratul/v17/.wsuo b/.vs/2023-homework04-Seeratul/v17/.wsuo index eb9cd2c..fb7275b 100644 Binary files a/.vs/2023-homework04-Seeratul/v17/.wsuo and b/.vs/2023-homework04-Seeratul/v17/.wsuo differ diff --git a/combination.py b/combination.py index 58a059d..da4a122 100644 --- a/combination.py +++ b/combination.py @@ -5,6 +5,8 @@ def combination(a1,a2,axis = 0): # delete the NotImplementedError when you write your function. try: + a1 = np.squeeze(a1) + a2 = np.squeeze(a2) return np.concatenate(a1,a2,axis) except: