- Go to: 'System Preferences' >> 'MySQL' and stop MySQL
OR,
- sudo /usr/local/mysql/support-files/mysql.server start
- sudo /usr/local/mysql/support-files/mysql.server stop
| # Enter your code here. Read input from STDIN. Print output to STDOUT | |
| class Node: | |
| def __init__(self,value,point): | |
| self.value = value | |
| self.point = point | |
| self.parent = None | |
| self.H = 0 | |
| self.G = 0 | |
| def move_cost(self,other): | |
| return 0 if self.value == '.' else 1 |
| // NativeAppLauncher. | |
| // Copied from bartt.me/openapp | |
| var NativeAppLauncher = (function () { | |
| var IOS_VERSION_RE = /OS\s+(\d)_/; | |
| var timers = []; | |
| var userAgent = window.navigator.userAgent; | |
| var isAndroid = function () { | |
| return /Android/.test(userAgent); | |
| }; | |
| var isIOS = function () { |