Skip to content

Modify java file names starting with a,b,c #144

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 12 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ public List<Boolean> checkArithmeticSubarrays(int[] nums, int[] l, int[] r) {

return res;
}
}
}
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ public void inorder(TreeNode root, List<Integer> list){
/* Recurse for right subtree */
inorder(root.right, list);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ public void postorder(TreeNode root){
/* Add the current node's value to the list */
list.add(root.val);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ public void preorder(TreeNode root, List<Integer> ls){
/* Recurse for right subtree */
preorder(root.right, ls);
}
}
}
2 changes: 1 addition & 1 deletion Java/buddy-strings.java → Java/Buddy-Strings.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ else if(count == 1){
}
return false;
}
}
}
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ public int insert(int v) {
public TreeNode get_root() {
return root;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ public TreeNode buildTree(int l, int r, int nums[]){
return node;
}

}
}
2 changes: 1 addition & 1 deletion Java/Happy-Number.java → Java/Happy_Number.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ static int SquareSum(int n)
return square;
}

}
}