Fügen Sie die folgenden Zahlen in der Reihenfolge in einen vorerst leeren Binärbaum ein:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // On first run only, uncomment line bellow and replace '888...' with the token returned after login | |
| // Keychain.set("ACKEE_KEY", "88888888-8888-8888-8888-888888888888") | |
| // Ackee configuration | |
| const ACKEE_KEY = Keychain.get('ACKEE_KEY') | |
| const ACKEE_API = 'https://ackee.example.com/api' | |
| const TIME_ZONE = 'Europe/Berlin' | |
| const createWidget = async () => { | |
| const viewsToday = await getViewsToday() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func mask(withRect rect: CGRect, inverse: Bool = false) { | |
| let path = UIBezierPath(rect: rect) | |
| let maskLayer = CAShapeLayer() | |
| if inverse { | |
| path.appendPath(UIBezierPath(rect: self.bounds)) | |
| maskLayer.fillRule = kCAFillRuleEvenOdd | |
| } | |
| maskLayer.path = path.CGPath |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // TextMeter.cs | |
| // Created by Alexey Kinev on 11 Feb 2015. | |
| // | |
| // Licensed under The MIT License (MIT) | |
| // http://opensource.org/licenses/MIT | |
| // | |
| // Copyright (c) 2015 Alexey Kinev <alexey.rudy@gmail.com> | |
| // | |
| // Usage example: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // SlideAnimatedTransitioning.h | |
| // SwipeLeft | |
| // | |
| // Created by Visnu on 4/14/14. | |
| // Copyright (c) 2014 Visnu Pitiyanuvath. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> |