We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Picking Numbers
- Discussions
Picking Numbers
Picking Numbers
Sort by
recency
|
192 Discussions
|
Please Login in order to post a comment
Python
The question should read: "give the length of the longest chain of numbers that meet the criterion that you can make with the numbers in the array".
C++ Solution: int pickingNumbers(vector a) {
}
Python
Here is my python solution, the question is kind of confusing though.