I hereby claim:
- I am nguyenvanquan7826 on github.
- I am nguyenvanquan782 (https://keybase.io/nguyenvanquan782) on keybase.
- I have a public key ASCywDAxavNDXHZ31zY9jdDb9rCva0Y4wdEEXbCmskHhrwo
To claim this, I am signing this object:
| { | |
| "success": true, | |
| "timetables": { | |
| "ranges": { | |
| "from": "31\/12\/2018", | |
| "to": "06\/01\/2019" | |
| }, | |
| "query": { | |
| "year": "2018-2019", | |
| "term": "HK02", |
| import 'dart:async'; | |
| import 'package:flutter/widgets.dart'; | |
| import 'package:shared_preferences/shared_preferences.dart'; | |
| class SharedPreferencesBuilder<T> extends StatelessWidget { | |
| final String pref; | |
| final AsyncWidgetBuilder<T> builder; | |
I hereby claim:
To claim this, I am signing this object:
| #include <stdio.h> | |
| int check(int n) { | |
| if(n < 2) return 0; // n not is prime | |
| for(int i = 2; i < n; i++) { | |
| if(n % i == 0) return 0; // n not is prime | |
| } | |
| return 1; // n is prime | |
| } |