algo/object-c/33_bm_match/BM.h
2018-12-11 12:24:14 +08:00

20 lines
384 B
Objective-C

//
// BM.h
// BM-Match
//
// Created by Smallfly on 2018/12/9.
// Copyright © 2018 Smallfly. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface BM : NSObject
- (instancetype)initWithA:(NSString *)a andB:(NSString *)b;
- (NSInteger)startMatch;
- (void)startMatchCompeletion:(void (^)(NSInteger))completion;
@end
NS_ASSUME_NONNULL_END