This file contains 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
#include <stdio.h> | |
#define MAX_LENGTH 1048576 | |
int superMultiplication(int a, int *b, int bSize) { | |
int carry = 0; | |
for (int i = 0; i < bSize; i++) { | |
int temp = b[i] * a + carry; | |
b[i] = temp % 10; | |
carry = temp / 10; |
This file contains 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
pgrep -f "/System/Library/Input Methods/SCIM.app/Contents/PlugIn" | xargs kill -HUP |