Given a function past_records() that will report blood sugar level of two twin brothers some random number of days ago. For example, one call to past_records() may give [77 78]. Another call to past_records() may give [60 48]. Your crystal_ball should create a function second(first) that will predict blood sugar of second brother from blood sugar level of first brother, (within +/-1).
Hint: assume a crystal_ball exists here.
Create a cell array out of a struct
189 Solvers
37 Solvers
Remove the two elements next to NaN value
311 Solvers
141 Solvers
214 Solvers
Solution 1556824
Really like your generic approach to solving this problem. In my case, I was misled by the test suite to provide a solution that works only for integral values.