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
------------------------------------- | |
Translated Report (Full Report Below) | |
------------------------------------- | |
Incident Identifier: 1FBF2F37-DD83-4FAE-83DB-1D5F939BD929 | |
CrashReporter Key: 55C78E54-2CEA-D459-836B-B208E2242DA6 | |
Hardware Model: MacBookPro18,1 | |
Process: iPhone Mirroring [2896] | |
Path: /System/Applications/iPhone Mirroring.app/Contents/MacOS/iPhone Mirroring | |
Identifier: com.apple.ScreenContinuity |
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
#!/bin/bash | |
# Required parameters: | |
# @raycast.schemaVersion 1 | |
# @raycast.title Battery - Limit Charging to 80% | |
# @raycast.mode compact | |
# Optional parameters: | |
# @raycast.icon 🤖 |
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
public static int exDue(int[] a){ | |
int result = 0; | |
if(a!=null&&a.length!=0){ | |
result = exDueRic(a, 0, a.length-1); | |
} else { | |
return 0; | |
} | |
System.out.println(result); | |
return result; | |
} |