rest,outlook,organizer,outlook-restapi,outlook-calendar
This is the correct behavior. You cannot create an event on User A's calendar but set the organizer to User B.
python,variables,fractions,ratio,organizer
You can try something like this: from __future__ import division def spreadout(X, Y): ratio = len(X) / len(Y) result = [] while X or Y: if not Y or len(X)/len(Y) >= ratio: result.append(X.pop()) else: result.append(Y.pop()) return result The idea behind the algorithm is to determine the ratio of the X...