Menu
  • HOME
  • TAGS

setting event organizer with Outlook Calendar REST API

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 - “properly” organise (spread out) x and y data

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...