IBM (OA)

ibm logo
ibm
July 2, 202522 reads

Summary

I participated in an IBM Online Assessment where I encountered two algorithm problems, 'Maximize Decryption Value' and 'Maximum Distinct Split Sum'. I was unable to solve them efficiently due to time complexity issues.

Full Experience

There are two questions:

1.LeetCode 239 helps with sliding-window strategies
Actual Question: Maximize Decryption Value (LC)

2.LeetCode 410 helps with partitioning logic if adapted for distinct counts
Actual Question: Maximum Distinct Split Sum

These are not exactly the same questions, but they seem similar in concept.

And I just solved 0 of them because I failed due to time complexity in one problem

Interview Questions (2)

Q1
Maximize Decryption Value
Data Structures & Algorithms

The actual question was 'Maximize Decryption Value'. The author noted that LeetCode 239 (Sliding Window Maximum) provides useful strategies for this type of problem, suggesting it involves sliding window techniques.

Q2
Maximum Distinct Split Sum
Data Structures & Algorithms

The actual question was 'Maximum Distinct Split Sum'. The author noted that LeetCode 410 (Split Array Largest Sum) provides useful partitioning logic when adapted for distinct counts, suggesting it involves partitioning and possibly dynamic programming or binary search on the answer.

Discussion (0)

Share your thoughts and ask questions

Join the Discussion

Sign in with Google to share your thoughts and ask questions

No comments yet

Be the first to share your thoughts and start the discussion!