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
$changedFiles = git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD; | |
$hasPackageJson = $false; | |
Foreach($file in $changedFiles){ | |
if($file -like '*package.json*') { | |
$hasPackageJson = $true; | |
break; | |
} | |
} | |
if($hasPackageJson) | |
{ |
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
package com.leetcode.ackermann; | |
import java.util.Scanner; | |
public class Ackermann { | |
private int _test; | |
public static long computeAckermann(long m, long n) { | |
} |