Skip to content

commit-live-students/071-unique-items-ndarray

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Write a Python program to get the unique elements of an array using Numpy.

Sample Output:

Scenario 1:

Original array: [10 10 20 20 30 30]

Unique elements of the above array: [10 20 30]

Scenario 2:

Original array: [[1 1] [2 3]]

Unique elements of the above array: [1 2 3]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages