-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Add unique function #2166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Add unique function #2166
Conversation
|
Hmm. This adds some other stuff that we want to contribute from our fork. Will fix it to leave out only the UNIQUE function. |
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2166 +/- ##
==========================================
- Coverage 99.23% 99.20% -0.04%
==========================================
Files 32 32
Lines 30379 30486 +107
==========================================
+ Hits 30148 30245 +97
- Misses 153 160 +7
- Partials 78 81 +3
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
* Implement UNIQUE function * Reduce memory footprint --------- Co-authored-by: Ivan Hristov <ivan.hristov@abraxa.com>
e2d0a49 to
b156de9
Compare
|
I removed the redundant commits. I also performed a refactoring. |
| func transposeFormulaArgsMatrix(args [][]formulaArg) [][]formulaArg { | ||
| if len(args) == 0 { | ||
| return args | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @IvanHristov98, could you grant a push permission on this PR branch for me, I'll add unit test for these uncovered lines.
PR Details
Implements the UNIQUE function in excel.
Description
Implements the UNIQUE function in excel.
https://support.microsoft.com/en-us/office/unique-function-c5ab87fd-30a3-4ce9-9d1a-40204fb85e1e
Related Issue
#2165
Motivation and Context
So that I can use UNIQUE in excel. It is a very useful function.
How Has This Been Tested
Unit tests were added. The test cases were derived with the help of the official MS docs and I checked them.
Types of changes
Checklist